From 20a4ffbe043da921a9ef997cc463b394f61dacde Mon Sep 17 00:00:00 2001 From: Thomas Labarussias Date: Tue, 4 Feb 2025 11:19:47 +0100 Subject: [PATCH] prepare v2.31.1 Signed-off-by: Thomas Labarussias --- CHANGELOG.md | 6 +++++- docs/outputs/loki.md | 1 + docs/outputs/nats.md | 1 + docs/outputs/stan.md | 1 + 4 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6189cfbb4..39d411a2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog -## 2.31.0 - 2025-02-04 +## 2.31.1 - 2025-02-04 +#### Fix +- Fix error while closing the writer for `GCPStorage` ([PR#1116](https://github.com/falcosecurity/falcosidekick/pull/1116) thanks to [@chanukya-yekollu-exa](https://github.com/chanukya-yekollu-exa)) + +## 2.31.0 - 2025-02-03 #### New - New output: **OTLP Logs** ([PR#1109](https://github.com/falcosecurity/falcosidekick/pull/1109)) diff --git a/docs/outputs/loki.md b/docs/outputs/loki.md index b00a30c15..f314d6083 100644 --- a/docs/outputs/loki.md +++ b/docs/outputs/loki.md @@ -42,6 +42,7 @@ loki: # minimumpriority: "" # minimum priority of event for using this output, order is emergency|alert|critical|error|warning|notice|informational|debug or "" (default) # checkcert: true # check if ssl certificate of the output is valid (default: true) # tenant: "" # Add the tenant header if needed. Enabled if not empty + # format: "text" # Format for the log entry value: json, text (default) # endpoint: "/loki/api/v1/push" # The endpoint URL path, default is "/loki/api/v1/push" more info : https://grafana.com/docs/loki/latest/api/#post-apiprompush # extralabels: "" # comma separated list of fields to use as labels additionally to rule, source, priority, tags and custom_fields # customHeaders: # Custom headers to add in POST, useful for Authentication diff --git a/docs/outputs/nats.md b/docs/outputs/nats.md index f06f94f9f..de1a0a4e2 100644 --- a/docs/outputs/nats.md +++ b/docs/outputs/nats.md @@ -35,6 +35,7 @@ The Env var values override the settings from yaml file. nats: hostport: "" # nats://{domain or ip}:{port}, if not empty, NATS output is enabled # minimumpriority: "" # minimum priority of event for using this output, order is emergency|alert|critical|error|warning|notice|informational|debug or "" (default) + # subjecttemplate: "falco.." # template for the subject, tokens and will be automatically replaced (default: falco..) # mutualtls: false # if true, checkcert flag will be ignored (server cert will always be checked) # checkcert: true # check if ssl certificate of the output is valid (default: true) ``` diff --git a/docs/outputs/stan.md b/docs/outputs/stan.md index fb220b281..7c6099cba 100644 --- a/docs/outputs/stan.md +++ b/docs/outputs/stan.md @@ -33,6 +33,7 @@ stan: hostport: "" # stan://{domain or ip}:{port}, if not empty, STAN output is enabled clusterid: "" # Cluster name (mandatory) clientid: "" # Client ID (mandatory) + # subjecttemplate: "falco.." # template for the subject, tokens and will be automatically replaced (default: falco..) # minimumpriority: "" # minimum priority of event for using this output, order is emergency|alert|critical|error|warning|notice|informational|debug or "" (default) # mutualtls: false # if true, checkcert flag will be ignored (server cert will always be checked) # checkcert: true # check if ssl certificate of the output is valid (default: true)