From 036e63a6aad8dac93bc92e6a9b63c9a1c6f236ae Mon Sep 17 00:00:00 2001 From: Robert Fratto Date: Fri, 3 Nov 2023 12:48:13 -0400 Subject: [PATCH] changelog: rearrange sections as recommended --- CHANGELOG.md | 67 ++++++++++++++++++++++++++-------------------------- 1 file changed, 34 insertions(+), 33 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d8b289c5fe7..9fbef786b1b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -63,6 +63,40 @@ Main (unreleased) - `otelcol.processor.filter` - filters OTLP telemetry data using OpenTelemetry Transformation Language (OTTL). (@hainenber) +### Enhancements + +- The `loki.write` WAL now has snappy compression enabled by default. (@thepalbi) + +- Allow converting labels to structured metadata with Loki's structured_metadata stage. (@gonzalesraul) + +- Improved performance of `pyroscope.scrape` component when working with a large number of targets. (@cyriltovena) + +- Added support for comma-separated list of fields in `source` option and a + new `separator` option in `drop` stage of `loki.process`. (@thampiotr) + +- The `loki.source.docker` component now allows connecting to Docker daemons + over HTTP(S) and setting up TLS credentials. (@tpaschalis) + +- Added an `add_metric_suffixes` option to `otelcol.exporter.prometheus` in flow mode, + which configures whether to add type and unit suffixes to metrics names. (@mar4uk) + +- Added an `exclude_event_message` option to `loki.source.windowsevent` in flow mode, + which excludes the human-friendly event message from Windows event logs. (@ptodev) + +- Improve detection of rolled log files in `loki.source.kubernetes` and + `loki.source.podlogs` (@slim-bean). + +- Support clustering in `loki.source.kubernetes` (@slim-bean). + +- Support clustering in `loki.source.podlogs` (@rfratto). + +- Make component list sortable in web UI. (@hainenber) + +- Adds new metrics (`mssql_server_total_memory_bytes`, `mssql_server_target_memory_bytes`, + and `mssql_available_commit_memory_bytes`) for `mssql` integration. + +- Grafana Agent Operator: `config-reloader` container no longer runs as root. + (@rootmout) ### Bugfixes @@ -101,40 +135,7 @@ Main (unreleased) - Fix a bug where reloading the configuration of a `loki.write` component lead to a panic. (@tpaschalis) -### Enhancements - -- The `loki.write` WAL now has snappy compression enabled by default. (@thepalbi) - -- Allow converting labels to structured metadata with Loki's structured_metadata stage. (@gonzalesraul) -- Improved performance of `pyroscope.scrape` component when working with a large number of targets. (@cyriltovena) - -- Added support for comma-separated list of fields in `source` option and a - new `separator` option in `drop` stage of `loki.process`. (@thampiotr) - -- The `loki.source.docker` component now allows connecting to Docker daemons - over HTTP(S) and setting up TLS credentials. (@tpaschalis) - -- Added an `add_metric_suffixes` option to `otelcol.exporter.prometheus` in flow mode, - which configures whether to add type and unit suffixes to metrics names. (@mar4uk) - -- Added an `exclude_event_message` option to `loki.source.windowsevent` in flow mode, - which excludes the human-friendly event message from Windows event logs. (@ptodev) - -- Improve detection of rolled log files in `loki.source.kubernetes` and - `loki.source.podlogs` (@slim-bean). - -- Support clustering in `loki.source.kubernetes` (@slim-bean). - -- Support clustering in `loki.source.podlogs` (@rfratto). - -- Make component list sortable in web UI. (@hainenber) - -- Adds new metrics (`mssql_server_total_memory_bytes`, `mssql_server_target_memory_bytes`, - and `mssql_available_commit_memory_bytes`) for `mssql` integration. - -- Grafana Agent Operator: `config-reloader` container no longer runs as root. - (@rootmout) v0.37.3 (2023-10-26) -----------------