chore(deps): update dependency grafana/alloy to v1.5.0 #33

Merged
GregoryDosh merged 1 commit from renovate/grafana-alloy-1.x into main 2024-11-18 03:14:25 +00:00

This PR contains the following updates:

Package Update Change
grafana/alloy minor 1.4.3 -> 1.5.0

⚠️ Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

grafana/alloy (grafana/alloy)

v1.5.0

Compare Source

Breaking changes
Features
  • Add support bundle generation via the API endpoint /-/support (@​dehaansa)

  • Add the function path_join to the stdlib. (@​wildum)

  • Add pyroscope.receive_http component to receive and forward Pyroscope profiles (@​marcsanmi)

  • Add support to loki.source.syslog for the RFC3164 format ("BSD syslog"). (@​sushain97)

  • Add support to loki.source.api to be able to extract the tenant from the HTTP X-Scope-OrgID header (@​QuentinBisson)

  • (Experimental) Add a loki.secretfilter component to redact secrets from collected logs.

  • (Experimental) Add a prometheus.write.queue component to add an alternative to prometheus.remote_write
    which allowing the writing of metrics to a prometheus endpoint. (@​mattdurham)

  • (Experimental) Add the array.combine_maps function to the stdlib. (@​ptodev, @​wildum)

Enhancements
  • The mimir.rules.kubernetes component now supports adding extra label matchers
    to all queries discovered via PrometheusRule CRDs. (@​thampiotr)

  • The cluster.use-discovery-v1 flag is now deprecated since there were no issues found with the v2 cluster discovery mechanism. (@​thampiotr)

  • SNMP exporter now supports labels in both target and targets parameters. (@​mattdurham)

  • Add support for relative paths to import.file. This new functionality allows users to use import.file blocks in modules
    imported via import.git and other import.file. (@​wildum)

  • prometheus.exporter.cloudwatch: The discovery block now has a recently_active_only configuration attribute
    to return only metrics which have been active in the last 3 hours.

  • Add Prometheus bearer authentication to a prometheus.write.queue component (@​freak12techno)

  • Support logs that have a timestamp field instead of a time field for the loki.source.azure_event_hubs component. (@​andriikushch)

  • Add proxy_url to otelcol.exporter.otlphttp. (@​wildum)

Bugfixes
  • Fixed a bug in import.git which caused a "non-fast-forward update" error message. (@​ptodev)

  • Do not log error on clean shutdown of loki.source.journal. (@​thampiotr)

  • prometheus.operator.* components: Fixed a bug which would sometimes cause a
    "failed to create service discovery refresh metrics" error after a config reload. (@​ptodev)

Other changes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Update | Change | |---|---|---| | [grafana/alloy](https://github.com/grafana/alloy) | minor | `1.4.3` -> `1.5.0` | --- > ⚠️ **Warning** > > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>grafana/alloy (grafana/alloy)</summary> ### [`v1.5.0`](https://github.com/grafana/alloy/blob/HEAD/CHANGELOG.md#v150) [Compare Source](https://github.com/grafana/alloy/compare/v1.4.3...v1.5.0) ##### Breaking changes - `import.git`: The default value for `revision` has changed from `HEAD` to `main`. ([@&#8203;ptodev](https://github.com/ptodev)) It is no longer allowed to set `revision` to `"HEAD"`, `"FETCH_HEAD"`, `"ORIG_HEAD"`, `"MERGE_HEAD"`, or `"CHERRY_PICK_HEAD"`. - The Otel update to v0.112.0 has a few breaking changes: - \[`otelcol.processor.deltatocumulative`] Change `max_streams` default value to `9223372036854775807` (max int). https://github.com/open-telemetry/opentelemetry-collector-contrib/pull/35048 - \[`otelcol.connector.spanmetrics`] Change `namespace` default value to `traces.span.metrics`. https://github.com/open-telemetry/opentelemetry-collector-contrib/pull/34485 - \[`otelcol.exporter.logging`] Removed in favor of the `otelcol.exporter.debug`. https://github.com/open-telemetry/opentelemetry-collector/issues/11337 ##### Features - Add support bundle generation via the API endpoint /-/support ([@&#8203;dehaansa](https://github.com/dehaansa)) - Add the function `path_join` to the stdlib. ([@&#8203;wildum](https://github.com/wildum)) - Add `pyroscope.receive_http` component to receive and forward Pyroscope profiles ([@&#8203;marcsanmi](https://github.com/marcsanmi)) - Add support to `loki.source.syslog` for the RFC3164 format ("BSD syslog"). ([@&#8203;sushain97](https://github.com/sushain97)) - Add support to `loki.source.api` to be able to extract the tenant from the HTTP `X-Scope-OrgID` header ([@&#8203;QuentinBisson](https://github.com/QuentinBisson)) - (*Experimental*) Add a `loki.secretfilter` component to redact secrets from collected logs. - (*Experimental*) Add a `prometheus.write.queue` component to add an alternative to `prometheus.remote_write` which allowing the writing of metrics to a prometheus endpoint. ([@&#8203;mattdurham](https://github.com/mattdurham)) - (*Experimental*) Add the `array.combine_maps` function to the stdlib. ([@&#8203;ptodev](https://github.com/ptodev), [@&#8203;wildum](https://github.com/wildum)) ##### Enhancements - The `mimir.rules.kubernetes` component now supports adding extra label matchers to all queries discovered via `PrometheusRule` CRDs. ([@&#8203;thampiotr](https://github.com/thampiotr)) - The `cluster.use-discovery-v1` flag is now deprecated since there were no issues found with the v2 cluster discovery mechanism. ([@&#8203;thampiotr](https://github.com/thampiotr)) - SNMP exporter now supports labels in both `target` and `targets` parameters. ([@&#8203;mattdurham](https://github.com/mattdurham)) - Add support for relative paths to `import.file`. This new functionality allows users to use `import.file` blocks in modules imported via `import.git` and other `import.file`. ([@&#8203;wildum](https://github.com/wildum)) - `prometheus.exporter.cloudwatch`: The `discovery` block now has a `recently_active_only` configuration attribute to return only metrics which have been active in the last 3 hours. - Add Prometheus bearer authentication to a `prometheus.write.queue` component ([@&#8203;freak12techno](https://github.com/freak12techno)) - Support logs that have a `timestamp` field instead of a `time` field for the `loki.source.azure_event_hubs` component. ([@&#8203;andriikushch](https://github.com/andriikushch)) - Add `proxy_url` to `otelcol.exporter.otlphttp`. ([@&#8203;wildum](https://github.com/wildum)) ##### Bugfixes - Fixed a bug in `import.git` which caused a `"non-fast-forward update"` error message. ([@&#8203;ptodev](https://github.com/ptodev)) - Do not log error on clean shutdown of `loki.source.journal`. ([@&#8203;thampiotr](https://github.com/thampiotr)) - `prometheus.operator.*` components: Fixed a bug which would sometimes cause a "failed to create service discovery refresh metrics" error after a config reload. ([@&#8203;ptodev](https://github.com/ptodev)) ##### Other changes - Small fix in UI stylesheet to fit more content into visible table area. ([@&#8203;defanator](https://github.com/defanator)) - Changed OTEL alerts in Alloy mixin to use success rate for tracing. ([@&#8203;thampiotr](https://github.com/thampiotr)) - Support TLS client settings for clustering ([@&#8203;tiagorossig](https://github.com/tiagorossig)) - Add support for `not_modified` response in `remotecfg`. ([@&#8203;spartan0x117](https://github.com/spartan0x117)) - Fix dead link for RelabelConfig in the PodLog documentation page ([@&#8203;TheoBrigitte](https://github.com/TheoBrigitte)) - Most notable changes coming with the OTel update from v0.108.0 vo v0.112.0 besides the breaking changes: ([@&#8203;wildum](https://github.com/wildum)) - \[`http config`] Add support for lz4 compression. https://github.com/open-telemetry/opentelemetry-collector/issues/9128 - \[`otelcol.processor.interval`] Add support for gauges and summaries. https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/34803 - \[`otelcol.receiver.kafka`] Add possibility to tune the fetch sizes. https://github.com/open-telemetry/opentelemetry-collector-contrib/pull/34431 - \[`otelcol.processor.tailsampling`] Add `invert_match` to boolean attribute. https://github.com/open-telemetry/opentelemetry-collector-contrib/pull/34730 - \[`otelcol.receiver.kafka`] Add support to decode to `otlp_json`. https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/33627 - \[`otelcol.processor.transform`] Add functions `convert_exponential_histogram_to_histogram` and `aggregate_on_attribute_value`. https://github.com/open-telemetry/opentelemetry-collector-contrib/pull/33824 https://github.com/open-telemetry/opentelemetry-collector-contrib/pull/33423 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC45My42IiwidXBkYXRlZEluVmVyIjoiMzguOTMuNiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
GregoryDosh deleted branch renovate/grafana-alloy-1.x 2024-11-18 03:14:25 +00:00
Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
homelab/ansible-collection!33
No description provided.