-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🎉 Release of add-on Grafana Tempo 1.0.7
- Loading branch information
1 parent
4e654e6
commit e1e0f64
Showing
7 changed files
with
91 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
## What’s changed | ||
|
||
## 🐛 Bug fixes | ||
|
||
- fix: set correct image arch @cedricziel (#22) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Home Assistant Add-on: Grafana Tempo | ||
|
||
Grafana Tempo is an open source, easy-to-use, and high-scale distributed tracing backend. | ||
|
||
## How to use | ||
|
||
To send data to Tempo, you can use OTLP, Jaeger and Zipkin. | ||
|
||
The hostname is `8047bde0-tempo`. | ||
|
||
To send OpenTelemetry signals to Tempo via OTLP, you could use the following, very simple bit of configuration: | ||
|
||
**OpenTelemetry Collector** | ||
|
||
```yaml | ||
receivers: | ||
otlp: | ||
protocols: | ||
grpc: | ||
exporters: | ||
otlp/tempo: | ||
endpoint: 8047bde0-tempo:4317 | ||
tls: | ||
insecure: true | ||
service: | ||
pipelines: | ||
traces: | ||
exporters: [otlp/tempo] | ||
``` | ||
**Workloads** | ||
```shell | ||
export OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=8047bde0-tempo:4317 | ||
export OTEL_EXPORTER_OTLP_TRACES_INSECURE=true | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Home Assistant Add-on: Grafana Tempo | ||
|
||
Grafana Tempo is an open source, easy-to-use, and high-scale distributed tracing backend. | ||
|
||
![Supports aarch64 Architecture][aarch64-shield] | ||
![Supports amd64 Architecture][amd64-shield] | ||
|
||
[aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg | ||
[amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg | ||
[armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg | ||
[armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg | ||
[i386-shield]: https://img.shields.io/badge/i386-yes-green.svg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Grafana Tempo | ||
version: 1.0.7 | ||
slug: tempo | ||
description: Grafana Tempo is an open source, easy-to-use, and high-scale distributed | ||
tracing backend. | ||
url: https://github.com/cedricziel/ha-addon-grafana-tempo/blob/main/tempo | ||
apparmor: false | ||
ports: | ||
3200/tcp: null | ||
4317/tcp: null | ||
4318/tcp: null | ||
9411/tcp: null | ||
9095/tcp: null | ||
14268/tcp: null | ||
ports_description: | ||
3200/tcp: Tempo | ||
4317/tcp: OTLP/gRPC | ||
4318/tcp: OTLP/HTTP | ||
9411/tcp: Zipkin | ||
9095/tcp: gRPC | ||
14268/tcp: Jaeger/Thrift HTTP | ||
arch: | ||
- aarch64 | ||
- amd64 | ||
init: false | ||
map: | ||
- share:rw | ||
homeassistant_api: true | ||
options: | ||
prometheus_url: http://24212397-mimir:8001/api/v1/push | ||
schema: | ||
prometheus_url: str | ||
image: ghcr.io/cedricziel/ha-addon-grafana-tempo/{arch} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
configuration: | ||
message: | ||
name: Message | ||
description: The message that will be printed to the log when starting this example add-on. | ||