v1.11.0
This is release v1.11.0 of Grafana Alloy.
Upgrading
Read the release notes for specific instructions on upgrading from older versions:
Notable changes:
Breaking changes
-
Prometheus dependency had a major version upgrade from v2.55.1 to v3.4.2. (@thampiotr)
-
The
.pattern in regular expressions in PromQL matches newline characters now. With this change a regular expressions like.*matches strings that include\n. This applies to matchers in queries and relabel configs in Prometheus and Loki components. -
The
enable_http2inprometheus.remote_writecomponent's endpoints has been changed tofalseby default. Previously, in Prometheus v2 the remote write http client would default to use http2. In order to parallelize multiple remote write queues across multiple sockets its preferable to not default to http2. If you prefer to use http2 for remote write you must now setenable_http2totruein yourprometheus.remote_writeendpoints configuration section. -
The experimental CLI flag
--feature.prometheus.metric-validation-schemehas been deprecated and has no effect. You can configure the metric validation scheme individually for eachprometheus.scrapecomponent. -
Log message format has changed for some of the
prometheus.*components as part of the upgrade to Prometheus v3. -
The values of the
lelabel of classic histograms and thequantilelabel of summaries are now normalized upon ingestion. In previous Alloy versions, that used Prometheus v2, the value of these labels depended on the scrape protocol (protobuf vs text format) in some situations. This led to label values changing based on the scrape protocol. E.g. a metric exposed asmy_classic_hist{le="1"}would be ingested asmy_classic_hist{le="1"}via the text format, but asmy_classic_hist{le="1.0"}via protobuf. This changed the identity of the metric and caused problems when querying the metric. In current Alloy release, which uses Prometheus v3, these label values will always be normalized to a float like representation. I.e. the above example will always result inmy_classic_hist{le="1.0"}being ingested into Prometheus, no matter via which protocol. The effect of this change is that alerts, recording rules and dashboards that directly reference label values as whole numbers such asle="1"will stop working.The recommended way to deal with this change is to fix references to integer
leandquantilelabel values, but otherwise do nothing and accept that some queries that span the transition time will produce inaccurate or unexpected results.
See the upstream Prometheus v3 migration guide for more details.
-
-
prometheus.exporter.windowsdependency has been updated to v0.31.1. (@dehaansa)- There are various renamed metrics and two removed collectors (
cs,logon).
- There are various renamed metrics and two removed collectors (
-
scrape_native_histogramsattribute forprometheus.scrapeis now set tofalse, whereas in previous versions of Alloy it would default totrue. This means that it is no longer enough to just configurescrape_protocolsto start withPrometheusPrototo scrape native histograms -scrape_native_histogramshas to be enabled. Ifscrape_native_histogramsis enabled,scrape_protocolswill automatically be configured correctly for you to includePrometheusProto. If you configure it explicitly, Alloy will validate thatPrometheusProtois in thescrape_protocolslist. -
Add
otel_attrs_to_hec_metadataconfiguration block tootelcol.exporter.splunkhecto matchotelcol.receiver.splunkhec. (@cgetzen) -
[
otelcol.processor.batch] Two arguments have different default values. (@ptodev)send_batch_sizeis now set to 2000 by default. It used to be 8192.send_batch_max_sizeis now set to 3000 by default. It used to be 0.- This helps prevent issues with ingestion of batches that are too large.
-
OpenTelemetry Collector dependencies upgraded from v0.128.0 to v0.134.0. (@ptodev)
- The
otelcol.receiver.opencensuscomponent has been deprecated and will be removed in a future release, useotelcol.receiver.otelpinstead. - [
otelcol.exporter.*] The deprecatedblockingargument in thesending_queueblock has been removed.
Useblock_on_overflowinstead. - [
otelcol.receiver.kafka,otelcol.exporter.kafka]: Removed thebroker_addrargument from theaws_mskblock.
Also removed theSASL/AWS_MSK_IAMauthentication mechanism. - [
otelcol.exporter.splunkhec] Thebatcherblock is deprecated and will be removed in a future release. Use thequeueblock instead. - [
otelcol.exporter.loadbalancing] Use a linear probe to decrease variance caused by hash collisions, which was causing a non-uniform distribution of loadbalancing. - [
otelcol.connector.servicegraph] Thedatabase_name_attributeargument has been removed. - [
otelcol.connector.spanmetrics] Adds a default maximum number of exemplars within the metric export interval. - [
otelcol.processor.tail_sampling] Add a newblock_on_overflowconfig attribute.
- The
Features
-
Add the
otelcol.receiver.fluentforwardreceiver to receive logs via Fluent Forward Protocol. (@rucciva) -
Add the
prometheus.enrichcomponent to enrich metrics using labels fromdiscovery.*components. (@ArkovKonstantin) -
Add
node_filterconfiguration block toloki.source.podlogscomponent to enable node-based filtering for pod discovery. When enabled, only pods running on the specified node will be discovered and monitored, significantly reducing API server load and network traffic in DaemonSet deployments. (@QuentinBisson) -
(Experimental) Additions to experimental
database_observability.mysqlcomponent:query_samplecollector now supports auto-enabling the necessarysetup_consumerssettings (@cristiangreco)query_samplecollector is now compatible with mysql less than 8.0.28 (@cristiangreco)- include
server_idlabel on log entries (@matthewnolf) - support receiving targets argument and relabel those to include
server_id(@matthewnolf) - updated the config blocks and documentation (@cristiangreco)
-
(Experimental) Additions to experimental
database_observability.postgrescomponent:- add
query_tablescollector for postgres (@matthewnolf) - add
cloud_provider.awsconfiguration that enables optionally supplying the ARN of the database under observation. The ARN is appended to metric samples as labels for easier filtering and grouping of resources. - add
query_samplecollector for postgres (@gaantunes) - add
schema_tablecollector for postgres (@fridgepoet) - include
server_idlabel on logs and metrics (@matthewnolf)
- add
-
Add
otelcol.receiver.googlecloudpubsubcommunity component to receive metrics, traces, and logs from Google Cloud Pub/Sub subscription. (@eraac) -
(Experimental) Add a
honor_metadataconfiguration argument to theprometheus.scrapecomponent.
When set totrue, it will propagate metric metadata to downstream components. -
Add a flag to pyroscope.ebpf alloy configuration to set the off-cpu profiling threshold. (@luweglarz)
-
Add
encoding.url_encodeandencoding.url_decodestd lib functions. (@kalleep)
For a full list of changes, please refer to the CHANGELOG!
Installation
Refer to our installation guide for how to install Grafana Alloy.