Skip to content

Commit

Permalink
chore(main): release 0.10.8
Browse files Browse the repository at this point in the history
  • Loading branch information
cedricziel committed Jul 21, 2024
1 parent a4dcea3 commit dc3f50a
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"loki": "1.0.3",
"mimir": "1.0.8",
"otelcol": "0.10.7",
"otelcol": "0.10.8",
"tempo": "1.0.7"
}
11 changes: 10 additions & 1 deletion otelcol/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [0.10.8](https://github.com/cedricziel/ha-addons/compare/v0.10.7...0.10.8) (2024-07-21)


### Bug Fixes

* remove old folders ([4e654e6](https://github.com/cedricziel/ha-addons/commit/4e654e60c422c544a64d488fbf0a537ba780dfd1))

## What’s changed

## 🚀 Enhancements

- chore: migrate to homeassistant_config @cedricziel (#72)
- chore: migrate to homeassistant_config @cedricziel (#72)
46 changes: 34 additions & 12 deletions otelcol/config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: OpenTelemetry Collector

Check warning on line 1 in otelcol/config.yaml

View workflow job for this annotation

GitHub Actions / workflows / YAMLLint

missing document start "---"

Check warning on line 1 in otelcol/config.yaml

View workflow job for this annotation

GitHub Actions / workflows / YAMLLint

missing document start "---"
version: 0.10.7
version: 0.10.8
slug: otelcol
description: Bring the OpenTelemetry collector into your home
url: https://github.com/cedricziel/ha-addon-otelcol
Expand All @@ -10,21 +10,43 @@ ports_description:
4317/tcp: OTLP/gRPC
4318/tcp: OTLP/HTTP
arch:
- aarch64
- amd64
- aarch64
- amd64
init: false
map:
- homeassistant_config:rw
- share:rw
- homeassistant_config:rw
- share:rw
apparmor: false
options:
config: "receivers:\n otlp:\n protocols:\n grpc:\n http:\nprocessors:\n\
\ batch:\nexporters:\n logging:\n# health-check is activated by default\nextensions:\n\
\ pprof:\n zpages:\nservice:\n extensions: [health_check,pprof,zpages]\n pipelines:\n\
\ traces:\n receivers: [otlp]\n processors: [batch]\n exporters:\
\ [logging]\n metrics:\n receivers: [otlp]\n processors: [batch]\n\
\ exporters: [logging]\n logs:\n receivers: [otlp]\n processors:\
\ [batch]\n exporters: [logging]\n"
config: |
receivers:
otlp:
protocols:
grpc:
http:
processors:
batch:
exporters:
logging:
# health-check is activated by default
extensions:
pprof:
zpages:
service:
extensions: [health_check,pprof,zpages]
pipelines:
traces:
receivers: [otlp]
processors: [batch]
exporters: [logging]
metrics:
receivers: [otlp]
processors: [batch]
exporters: [logging]
logs:
receivers: [otlp]
processors: [batch]
exporters: [logging]
schema:
config: str
image: ghcr.io/cedricziel/ha-addon-otelcol/{arch}

0 comments on commit dc3f50a

Please sign in to comment.