Skip to content

Commit 4c08040

Browse files
chore: add translations
1 parent 0ab47ba commit 4c08040

File tree

20 files changed

+618
-66
lines changed

20 files changed

+618
-66
lines changed

src/i18n/content/es/docs/apm/agents/nodejs-agent/getting-started/compatibility-requirements-nodejs-agent.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ Luego de la instalación, el agente se instrumenta automáticamente con nuestro
263263
| `@aws-sdk/smithy-client` | 3.47.0 | 3.374.0 | 8.7.1 |
264264
| `@azure/functions` | 4.7.0 | 4.7.3-beta.0 | 12.18.0 |
265265
| `@elastic/elasticsearch` | 7.16.0 | 9.0.2 | 11.9.0 |
266-
| `@google/genai` | 1.1.0 | 1.4.0 | 12.21.0 |
266+
| `@google/genai` | 1.1.0 | 1.5.0 | 12.21.0 |
267267
| `@grpc/grpc-js` | 1.4.0 | 1.13.4 | 8.17.0 |
268268
| `@hapi/hapi` | 20.1.2 | 21.4.0 | 9.0.0 |
269269
| `@koa/router` | 11.0.2 | 13.1.0 | 3.2.0 |
@@ -281,7 +281,7 @@ Luego de la instalación, el agente se instrumenta automáticamente con nuestro
281281
| `cassandra-driver` | 3.4.0 | 4.8.0 | 1.7.1 |
282282
| `connect` | 3.0.0 | 3.7.0 | 2.6.0 |
283283
| `express` | 4.6.0 | 5.1.0 | 2.6.0 |
284-
| `fastify` | 2.0.0 | 5.3.3 | 8.5.0 |
284+
| `fastify` | 2.0.0 | 5.4.0 | 8.5.0 |
285285
| `generic-pool` | 3.0.0 | 3.9.0 | 0.9.0 |
286286
| `ioredis` | 4.0.0 | 5.6.1 | 1.26.2 |
287287
| `kafkajs` | 2.0.0 | 2.2.4 | 11.19.0 |

src/i18n/content/es/docs/nrql/nrql-syntax-clauses-functions.mdx

Lines changed: 170 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2244,7 +2244,7 @@ SELECT histogram(duration, 10, 20) FROM PageView SINCE 1 week ago
22442244

22452245
### Funciones no agregadoras [#non-aggregator-functions]
22462246

2247-
Utilice funciones no agregadoras para datos no numéricos en la consulta NRQL .
2247+
Use non-aggregator functions to return values for each data point within NRQL queries.
22482248

22492249
<CollapserGroup>
22502250
<Collapser
@@ -2931,6 +2931,8 @@ Utilice funciones no agregadoras para datos no numéricos en la consulta NRQL .
29312931
* `attribute` - Una matriz o un tipo de datos compuesto.
29322932
* `field` - El índice del elemento de la matriz o el nombre del campo del tipo de datos compuesto.
29332933

2934+
You can also use square brackets `[ ]` as a shorthand for `getField()`.
2935+
29342936
<CollapserGroup>
29352937
<Collapser title="Extraer un elemento de una matriz">
29362938
<Callout variant="important">
@@ -2944,7 +2946,7 @@ Utilice funciones no agregadoras para datos no numéricos en la consulta NRQL .
29442946
SELECT getField(durations, 2) FROM Foo
29452947
```
29462948

2947-
Puedes emplear corchetes `[ ]` como abreviatura de `getField()`. La siguiente consulta también devolverá `90`:
2949+
The following query using the `getField()` shorthand notation will also return `90`:
29482950

29492951
```sql
29502952
SELECT durations[2] FROM Foo
@@ -3039,6 +3041,12 @@ Utilice funciones no agregadoras para datos no numéricos en la consulta NRQL .
30393041
```sql
30403042
SELECT sum(mySummary) FROM Metric where getField(mySummary, count) > 10
30413043
```
3044+
3045+
Query using the shorthand notation for `getField()`:
3046+
3047+
```sql
3048+
SELECT max(mySummary[count]) FROM Metric
3049+
```
30423050
</Collapser>
30433051
</CollapserGroup>
30443052
</Collapser>
@@ -3815,6 +3823,166 @@ Utilice funciones no agregadoras para datos no numéricos en la consulta NRQL .
38153823
Utilice la función `stddev()` para devolver una [desviación estándar](https://en.wikipedia.org/wiki/Standard_deviation) para un atributo numérico durante el rango de tiempo especificado. Se necesita un solo argumento. Si el atributo no es numérico, devolverá un valor de cero.
38163824
</Collapser>
38173825

3826+
<Collapser
3827+
className="freq-link"
3828+
id="abs"
3829+
title={<InlineCode>abs(attribute)</InlineCode>
3830+
}
3831+
>
3832+
Use the `abs()` function to return the [absolute value](https://en.wikipedia.org/wiki/Absolute_value) of `attribute`.
3833+
</Collapser>
3834+
3835+
<Collapser
3836+
className="freq-link"
3837+
id="floor"
3838+
title={<InlineCode>floor(attribute)</InlineCode>
3839+
}
3840+
>
3841+
Use the `floor()` function to return the integer closest to `attribute` by rounding down.
3842+
</Collapser>
3843+
3844+
<Collapser
3845+
className="freq-link"
3846+
id="ceil"
3847+
title={<InlineCode>ceil(attribute)</InlineCode>
3848+
}
3849+
>
3850+
Use the `ceil()` function to return the integer closest to `attribute` by rounding up.
3851+
</Collapser>
3852+
3853+
<Collapser
3854+
className="freq-link"
3855+
id="clamp_max"
3856+
title={<InlineCode>clamp_max(attribute, limit)</InlineCode>
3857+
}
3858+
>
3859+
Use the `clamp_max()` function to impose an upper limit on the value of `attribute`.
3860+
3861+
`clamp_max()` toma los siguientes argumentos:
3862+
3863+
* `attribute` - A numeric attribute.
3864+
* `limit` - The upper limit for the `attribute` value.
3865+
3866+
**Example**\
3867+
You can use `clamp_max()` to ensure outliers don&apos;t skew the scale of a timeseries graph:
3868+
3869+
```sql
3870+
SELECT clamp_max(average(duration), 10) FROM Transaction TIMESERIES
3871+
```
3872+
3873+
The above query returns the `duration` unless it exceeds 10, in which case it will return 10.
3874+
</Collapser>
3875+
3876+
<Collapser
3877+
className="freq-link"
3878+
id="clamp_min"
3879+
title={<InlineCode>clamp_min(attribute, limit)</InlineCode>
3880+
}
3881+
>
3882+
Use the `clamp_min()` function to impose an lower limit on the value of `attribute`.
3883+
3884+
`clamp_min()` toma los siguientes argumentos:
3885+
3886+
* `attribute` - A numeric attribute.
3887+
* `limit` - The lower limit for the `attribute` value.
3888+
3889+
**Example**\
3890+
You can use `clamp_min()` to ensure outliers don&apos;t skew the scale of a timeseries graph:
3891+
3892+
```sql
3893+
SELECT clamp_min(average(duration), 1) FROM Transaction TIMESERIES
3894+
```
3895+
3896+
The above query returns the `duration` unless it&apos;s below 1, in which case it will return 1.
3897+
</Collapser>
3898+
3899+
<Collapser
3900+
className="freq-link"
3901+
id="pow"
3902+
title={<InlineCode>pow(attribute, exponent)</InlineCode>
3903+
}
3904+
>
3905+
Use the `pow()` function to raise `attribute` to the power of `exponent`.
3906+
3907+
`pow()` toma los siguientes argumentos:
3908+
3909+
* `attribute` - A numeric attribute.
3910+
* `exponent` - A numeric attribute to raise `attribute` to the power of.
3911+
3912+
**Example**\
3913+
The below query will return `duration` raised to the power of 4:
3914+
3915+
```sql
3916+
SELECT pow(duration, 4) FROM Transaction
3917+
```
3918+
</Collapser>
3919+
3920+
<Collapser
3921+
className="freq-link"
3922+
id="sqrt"
3923+
title={<InlineCode>sqrt(attribute)</InlineCode>
3924+
}
3925+
>
3926+
Use the `sqrt()` function to return the [square root](https://en.wikipedia.org/wiki/Square_root) of `attribute`.
3927+
</Collapser>
3928+
3929+
<Collapser
3930+
className="freq-link"
3931+
id="exp"
3932+
title={<InlineCode>exp(attribute)</InlineCode>
3933+
}
3934+
>
3935+
Use the `exp()` function to return the [natural exponential function](https://en.wikipedia.org/wiki/Exponential_function) of `attribute`.
3936+
</Collapser>
3937+
3938+
<Collapser
3939+
className="freq-link"
3940+
id="ln"
3941+
title={<InlineCode>ln(attribute)</InlineCode>
3942+
}
3943+
>
3944+
Use the `ln()` function to return the [natural logarithm](https://en.wikipedia.org/wiki/Natural_logarithm) of `attribute`.
3945+
</Collapser>
3946+
3947+
<Collapser
3948+
className="freq-link"
3949+
id="log2"
3950+
title={<InlineCode>log2(attribute)</InlineCode>
3951+
}
3952+
>
3953+
Use the `log2()` function to return the [logarithm base 2](https://en.wikipedia.org/wiki/Binary_logarithm) of `attribute`.
3954+
</Collapser>
3955+
3956+
<Collapser
3957+
className="freq-link"
3958+
id="log10"
3959+
title={<InlineCode>log10(attribute)</InlineCode>
3960+
}
3961+
>
3962+
Use the `log10()` function to return the [logarithm base 10](https://en.wikipedia.org/wiki/Common_logarithm) of `attribute`.
3963+
</Collapser>
3964+
3965+
<Collapser
3966+
className="freq-link"
3967+
id="log"
3968+
title={<InlineCode>log(attribute, base)</InlineCode>
3969+
}
3970+
>
3971+
Use the `log()` function to compute the logarithm of `attribute` with a base of `base`.
3972+
3973+
`log()` toma los siguientes argumentos:
3974+
3975+
* `attribute` - A numeric attribute.
3976+
* `base` - A numeric attribute to use as the base when computing the logarithm of `attribute`.
3977+
3978+
**Example**\
3979+
The below query will compute the logarithm of `duration` with a base of 4:
3980+
3981+
```sql
3982+
SELECT log(duration, 4) FROM Transaction
3983+
```
3984+
</Collapser>
3985+
38183986
<Collapser
38193987
className="freq-link"
38203988
id="func-string"

src/i18n/content/es/docs/release-notes/mobile-apps-release-notes/new-relic-ios-release-notes/new-relic-ios-6097.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ translationType: machine
88

99
### característica, mejoras y correcciones
1010

11-
* Correcciones de NRAI: Se potenció la capacidad de Ask AI resolviendo molestos problemas de conexión de sockets. ¡Tu viaje con la aplicación NR ahora es más fluido!
11+
* NRAI Fixes: Turbocharged the Ask AI capability by resolving pesky socket connection issues. Your journey with NR App just got smoother!
1212

13-
* Configuración de la hoja de encuesta: Desbloqueó la magia de la configuración remota para el parámetro Survey Sheet. ¡Ahora las hojas de encuesta de tu aplicación están más en sintonía con tus necesidades!
13+
* Survey Sheet Config: Unlocked the magic of remote config for Survey Sheet parameters. Now, your app&apos;s survey sheets are more in tune with your needs!
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,42 @@
11
---
22
subject: Browser agent
3-
releaseDate: '2025-05-21'
4-
version: 1.290.1
3+
releaseDate: '2025-05-02'
4+
version: 1.290.0
55
downloadLink: 'https://www.npmjs.com/package/@newrelic/browser-agent'
6-
features: []
7-
bugs:
8-
- Silence setting getter only harvestCount message
6+
features:
7+
- bundler tools exports
8+
- Set UserAction currentUrl before aggregation end
9+
- Improve lazy-loading optimization
10+
- API Code Splitting
11+
bugs: []
912
security: []
1013
translationType: machine
1114
---
1215

13-
## versión 1.290.1
16+
## versión 1.290.0
1417

15-
### Corrección de errores
18+
### Característica
1619

17-
#### Silenciar la configuración del captador solo con el mensaje harvestCount
20+
#### Exportaciones de herramientas de Bundler
1821

19-
La advertencia que resulta del intento del agente de sobreescribir el tiempo de ejecución `harvestCount` se silenciará correctamente.
22+
Ahora está disponible un comparador de caché SplitChunks de Webpack opcional para los usuarios que crean el agente a través de NPM. Este comparador permite la desduplicación y la fusión del JavaScript cargado de forma diferida del agente en un único fragmento. Este único fragmento carga la representación posterior a la página, en consonancia con el comportamiento de nuestro agente prediseñado para APM y las implementaciones de copiar y pegar.
23+
24+
#### Establecer la URL actual de UserAction antes del final de la agregación
25+
26+
Establezca currentUrl en el primer evento de una acción del usuario en lugar de al final de la agregación.
27+
28+
#### Mejorar la optimización de la carga diferida
29+
30+
Optimice nuestro patrón para garantizar que los agrupadores de códigos como webpack puedan alterar de manera más efectiva la salida para incluir solo los archivos relevantes necesarios para ejecutar el agente. Esto ayuda específicamente a reducir el tamaño del paquete, reduce la cantidad de archivos diferidos generados y agiliza las compilaciones de agentes &quot;personalizados&quot; empleadas con NPM.
31+
32+
#### División de código API
33+
34+
Divida las definiciones de métodos de API por característica en lugar de un solo archivo compartido entre todos los tipos de cargadores. Esto permite que cada cargador solo cree instancias de las API necesarias para la característica incluida y reduce el tamaño general del paquete para la compilación &quot;Lite&quot;, así como para el agente creado a medida con NPM. Todavía existirá un shell para las API no inicializadas para evitar que se produzcan errores en las API empleadas sin la característica necesaria.
2035

2136
## Declaración de apoyo
2237

2338
New Relic recomienda que actualices el agente periódicamente para garantizar que obtengas las últimas características y beneficios de rendimiento. Las versiones anteriores ya no recibirán soporte cuando lleguen [al final de su vida útil](https://docs.newrelic.com/docs/browser/browser-monitoring/getting-started/browser-agent-eol-policy/). Las fechas de lanzamiento reflejan la fecha de publicación original de la versión del agente.
2439

2540
Las nuevas versiones del agente del browser se lanzan a los clientes en pequeñas etapas a lo largo de un periodo de tiempo. Debido a esto, la fecha en que el lanzamiento esté disponible en su cuenta puede no coincidir con la fecha de publicación original. Consulte este [dashboard de estado](https://newrelic.github.io/newrelic-browser-agent-release/) para obtener más información.
2641

27-
De acuerdo con nuestra [política de compatibilidad de navegadores](https://docs.newrelic.com/docs/browser/new-relic-browser/getting-started/compatibility-requirements-browser-monitoring/#browser-types), la versión 1.290.1 del agente del navegador se creó y probó con estos navegadores y rangos de versiones: Chrome 126-136, Edge 126-136, Safari 17-17 y Firefox 128-138. Para dispositivos móviles, la versión v1.290.1 fue creada y probada para Android OS 16 e iOS Safari 17-18.1.
42+
De acuerdo con nuestra [política de compatibilidad de navegadores](https://docs.newrelic.com/docs/browser/new-relic-browser/getting-started/compatibility-requirements-browser-monitoring/#browser-types), la versión 1.290.0 del agente de Browser se creó y probó con estos navegadores y rangos de versiones: Chrome 125-135, Edge 125-135, Safari 17-17 y Firefox 127-137. Para dispositivos móviles, la versión v1.290.0 fue creada y probada para Android OS 16 e iOS Safari 17-18.1.

src/i18n/content/es/docs/release-notes/synthetics-release-notes/ping-runtime-release-notes/ping-runtime-1.51.mdx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,8 @@ translationType: machine
99

1010
* Corrige las vulnerabilidades de logback-core para el tiempo de ejecución de ping.
1111
* Corrige las vulnerabilidades del jetty-server para el tiempo de ejecución de ping.
12-
* Corrige las vulnerabilidades de Ubuntu para el tiempo de ejecución de ping.
12+
* Corrige las vulnerabilidades de Ubuntu para el tiempo de ejecución de ping.
13+
14+
### Suggestions
15+
16+
* If you&apos;re currently using the newest Ping Runtime version 1.51.0, we recommend that you upgrade Synthetics Kevin to version release-443 or higher or latest to ensure the security and stability of your environment.

src/i18n/content/fr/docs/apm/agents/nodejs-agent/getting-started/compatibility-requirements-nodejs-agent.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ Après installation, l&apos; agent s&apos;instrumente automatiquement avec notre
263263
| `@aws-sdk/smithy-client` | 3.47.0 | 3.374.0 | 8.7.1 |
264264
| `@azure/functions` | 4.7.0 | 4.7.3-beta.0 | 12.18.0 |
265265
| `@elastic/elasticsearch` | 7.16.0 | 9.0.2 | 11.9.0 |
266-
| `@google/genai` | 1.1.0 | 1.4.0 | 12.21.0 |
266+
| `@google/genai` | 1.1.0 | 1.5.0 | 12.21.0 |
267267
| `@grpc/grpc-js` | 1.4.0 | 1.13.4 | 8.17.0 |
268268
| `@hapi/hapi` | 20.1.2 | 21.4.0 | 9.0.0 |
269269
| `@koa/router` | 11.0.2 | 13.1.0 | 3.2.0 |
@@ -281,7 +281,7 @@ Après installation, l&apos; agent s&apos;instrumente automatiquement avec notre
281281
| `cassandra-driver` | 3.4.0 | 4.8.0 | 1.7.1 |
282282
| `connect` | 3.0.0 | 3.7.0 | 2.6.0 |
283283
| `express` | 4.6.0 | 5.1.0 | 2.6.0 |
284-
| `fastify` | 2.0.0 | 5.3.3 | 8.5.0 |
284+
| `fastify` | 2.0.0 | 5.4.0 | 8.5.0 |
285285
| `generic-pool` | 3.0.0 | 3.9.0 | 0.9.0 |
286286
| `ioredis` | 4.0.0 | 5.6.1 | 1.26.2 |
287287
| `kafkajs` | 2.0.0 | 2.2.4 | 11.19.0 |

0 commit comments

Comments
 (0)