Skip to content

Commit

Permalink
0.3.1 (#61)
Browse files Browse the repository at this point in the history
* PR template

* update doc (#53)

* Update README.md (#55)

Added more information about the beta.

* Create Questions and Comments (#56)

* Create Questions and Comments

Co-authored-by: rockb1017 <rockb1017@gmail.com>

* questions and comments (#57)

* Create Questions and Comments

Co-authored-by: Jodee Varney <48965776+jodeev@users.noreply.github.com>

* Fix nil check (#59)

* fix nil check expression, remove default container runtime config

* 0.3.1 (#60)

Co-authored-by: Jodee Varney <48965776+jodeev@users.noreply.github.com>
  • Loading branch information
rockb1017 and jodeev authored Aug 25, 2021
1 parent 6cde261 commit 2fa9d7e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 8 deletions.
14 changes: 10 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## Unreleased

## v0.3.1

### 🧰 Bug fixes 🧰

- Fix expression that checks for nil `log` field from containerd and cri-o (#59)

## v0.3.0

### 🛑 Breaking changes 🛑
Expand All @@ -10,10 +16,10 @@
### 💡 Enhancements 💡

- updated the app version to `0.33.0`. This includes changes from the [opentelemetry-collector v0.33.0](https://github.com/open-telemetry/opentelemetry-collector/releases/tag/v0.33.0) and the [opentelemetry-collector-contrib v0.33.0](https://github.com/open-telemetry/opentelemetry-collector-contrib/releases/tag/v0.33.0) releases.
- automatically detect container runtime. #41
- doc update: multiline example #36, performance summary table #37
- automatically detect container runtime. (#41)
- doc update: multiline example (#36), performance summary table (#37)

### 🧰 Bug fixes 🧰

- duplicate id issue in filelog operator #44
- handle empty log records #51
- duplicate id issue in filelog operator (#44)
- handle empty log records (#51)
2 changes: 1 addition & 1 deletion charts/sck-otel/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: sck-otel
version: 0.3.0
version: 0.3.1
description: Helm chart for Splunk with Open Telemetry Agent
type: application
home: https://github.com/splunk/sck-otel
Expand Down
4 changes: 2 additions & 2 deletions charts/sck-otel/templates/_config.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ receivers:
- type: restructure
id: crio-handle_empty_log
output: filename
if: 'EXPR($$.log) == nil'
if: $$.log == nil
ops:
- add:
field: log
Expand All @@ -147,7 +147,7 @@ receivers:
- type: restructure
id: containerd-handle_empty_log
output: filename
if: 'EXPR($$.log) == nil'
if: $$.log == nil
ops:
- add:
field: log
Expand Down
2 changes: 1 addition & 1 deletion charts/sck-otel/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ checkpointPath: "/var/lib/otel_pos"
containers:
enabled: true
# Container runtime. One of `docker`, `cri-o`, or `containerd`
containerRuntime: docker
containerRuntime: ""
# Path of container log files, default /var/log/pods/*/*/*.log
# The file format is /var/log/pods/<namespace_name>_<pod_name>_<pod_uid>/<container_name>/<run_id>.log
path: /var/log/pods/*/*/*.log
Expand Down

0 comments on commit 2fa9d7e

Please sign in to comment.