Skip to content

daily release morning/31 03 24 #20342

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
Mar 31, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,10 @@ query {

### Limits [#limits]

* A maximum of 10 secrets can be stored per ACTOR.
* A secret value is limited to 5000 characters.
* A key value is limited to 64 characters.
* A key value must only include alphanumeric, '_' or '-' characters


### Permissions for working with `NerdStorageVault` [#permissions]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,8 @@ The Markdown editor contains a <DNT>**Markdown**</DNT> pane, where you enter you
You can also edit existing content by clicking the ellipses <Icon name="fe-more-horizontal"/>
icon on any Markdown widget and selecting <DNT>**Edit**</DNT>.

The Markdown widget supports Mermaid diagrams. For more information, refer to [Mermaid syntax reference](https://mermaid.js.org/intro/syntax-reference.html#diagram-syntax).

Learn more about what you can do with the Markdown widget in the short video below (approx. 3:11 minutes):

<Video
Expand Down Expand Up @@ -437,4 +439,4 @@ Dashboards offer intuitive visualization features and tools for advanced data ex
>
You can also make custom visualizations for your dashboards. These enable you to include information from any data source. To learn more about working with custom visualizations, see [Build a custom visualization for dashboards](https://developer.newrelic.com/build-apps/build-visualization) and [Add custom visualizations to your dashboards](/docs/query-your-data/explore-query-data/dashboards/add-custom-visualizations-your-dashboards).
</Collapser>
</CollapserGroup>
</CollapserGroup>
Original file line number Diff line number Diff line change
Expand Up @@ -4458,6 +4458,106 @@ Estas configuraciones específicas del paquete de instrumentación están dispon
</Collapser>
</CollapserGroup>

<CollapserGroup>
<Collapser id="instrumentation-kombu-consumer-enabled" title="instrumentation.kombu.consumer.enabled">
<table>
<tbody>
<tr>
<th>
Tipo
</th>

<td>
Booleano
</td>
</tr>

<tr>
<th>
Por defecto
</th>

<td>
false
</td>
</tr>

<tr>
<th>
[Establecer en](#options)
</th>

<td>
Archivo de configuración
</td>
</tr>

<tr>
<th>
[Variable ambiental](#environment-variables)
</th>

<td>
`NEW_RELIC_INSTRUMENTATION_KOMBU_CONSUMER_ENABLED`
</td>
</tr>
</tbody>
</table>

When enabled, the agent will consumer MessageTransactions in Kombu.
</Collapser>
</CollapserGroup>

<CollapserGroup>
<Collapser id="instrumentation-kombu-ignored-exchanges" title="instrumentation.kombu.ignored_exchanges">
<table>
<tbody>
<tr>
<th>
Tipo
</th>

<td>
Lista de cadenas
</td>
</tr>

<tr>
<th>
Por defecto
</th>

<td>
celeryev
</td>
</tr>

<tr>
<th>
[Establecer en](#options)
</th>

<td>
Archivo de configuración
</td>
</tr>

<tr>
<th>
[Variable ambiental](#environment-variables)
</th>

<td>
`NEW_RELIC_INSTRUMENTATION_KOMBU_IGNORED_EXCHANGES`
</td>
</tr>
</tbody>
</table>

A space separated list of exchanges to ignore when capturing MessageTransactions in Kombu.
</Collapser>
</CollapserGroup>

## Configuración de aprendizaje automático [#ml-settings]

<Callout variant="important">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1674,7 +1674,7 @@ SELECT histogram(duration, 10, 20) FROM PageView SINCE 1 week ago

Se necesita un solo argumento.

Si se usa junto con un `FACET` , devolverá el valor más reciente de un atributo para cada una de las facetas resultantes.
If used in conjunction with a `FACET` it will return the earliest value for an attribute for each of the resulting facets.

<CollapserGroup>
<Collapser title="Obtenga el primer país por agente de usuario de PageView">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ Cerciorar de que sus funciones Azure cumplan con nuestros [requisitos y compatib
}
```

### NewRelic.Agent Nuget package (Isolated mode functions):
### Paquete NewRelic.Agent Nuget (funciones de modo aislado):

```
{
Expand Down Expand Up @@ -218,7 +218,7 @@ Cerciorar de que sus funciones Azure cumplan con nuestros [requisitos y compatib
}
```

### NewRelic.Agent Nuget package (In-process mode functions):
### Paquete NewRelic.Agent Nuget (funciones de modo en proceso):

```
{
Expand Down
Loading