Skip to content

Commit 8f6beee

Browse files
authored
Release logzio-logs-collector v1.0.7 (#527)
* Upgrade `logzio-logs-collector` to v1.0.7 - Upgrade `otel/opentelemetry-collector-contrib` image to v0.107.0 - In case `json_parser` fails, send the log anyway and print the error only in debug mode. * Adjust health check endpoint - `opentelemetry-collector-contrib` v0.104.0+ mandate an endpoint, otherwise defaults to localhost. * Update README.md
1 parent f54d16e commit 8f6beee

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
apiVersion: v2
22
name: logzio-logs-collector
3-
version: 1.0.6
3+
version: 1.0.7
44
description: kubernetes logs collection agent for logz.io based on opentelemetry collector
55
type: application
66
home: https://logz.io/
77
maintainers:
88
- name: yotam loewenbach
99
10-
appVersion: 0.103.0
10+
appVersion: 0.107.0

charts/logzio-logs-collector/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,10 @@ Multi line logs configuration
142142
The collector supports by default various log formats (including multiline logs) such as `CRI-O` `CRI-Containerd` `Docker` formats. You can configure the chart to parse custom multiline logs pattern according to your needs, please read [Customizing Multiline Log Handling](./examples/multiline.md) guide for more details.
143143

144144
## Change log
145+
* 1.0.7
146+
- Upgrade `otel/opentelemetry-collector-contrib` image to v0.107.0
147+
- Adjusted health check extension endpoint
148+
- In case `json_parser` fails, send the log anyway and print the error only in debug mode.
145149
* 1.0.6
146150
- Added `varlogcontainers` volume and volume mounts
147151
- Added new `container` operator instead of complex operator sequence

charts/logzio-logs-collector/values.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ config:
5454
headers:
5555
user-agent: "{{ .Chart.Name }}-{{ .Chart.Version }}-helm"
5656
extensions:
57-
health_check: {}
57+
health_check:
58+
endpoint: ${env:MY_POD_IP}:13133
5859
file_storage:
5960
directory: /var/lib/otelcol
6061
processors:
@@ -146,6 +147,7 @@ config:
146147
# conditional json parser
147148
- type: json_parser
148149
id: json
150+
on_error: send_quiet
149151
parse_from: body
150152
if: 'body matches "^{.*}$"'
151153
# multiline parsers. add more `type: recombine` operators for custom multiline formats

0 commit comments

Comments
 (0)