Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/logzio/otel-collector-traces
Wrapped open telemetry collector image for traces
https://github.com/logzio/otel-collector-traces
integration integrations
Last synced: about 2 months ago
JSON representation
Wrapped open telemetry collector image for traces
- Host: GitHub
- URL: https://github.com/logzio/otel-collector-traces
- Owner: logzio
- License: apache-2.0
- Created: 2021-08-22T13:28:42.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-16T15:32:17.000Z (4 months ago)
- Last Synced: 2024-09-16T18:44:00.954Z (4 months ago)
- Topics: integration, integrations
- Language: Python
- Homepage:
- Size: 28.3 KB
- Stars: 1
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# otel-collector-traces
This docker container runs OpenTelemetry collector with the most common receivers (`jaeger` `opencensus` `otlp` `zipkin`) and exports traces to Logz.io
Current OpenTelmetry exec version: 0.42.0### Pull docker image:
```
docker pull logzio/otel-collector-traces
```### Run the container
When running on a Linux host, use the `--network host` flag to publish the collector ports:
```
docker run \
-e LOGZIO_REGION=<> \
-e LOGZIO_TRACES_TOKEN=<> \
--network host \
logzio/otel-collector-traces
```When running on MacOS or Windows hosts, publish the ports using the `-p` flag:
```
docker run \
-e LOGZIO_REGION=<> \
-e LOGZIO_TRACES_TOKEN=<> \
-p 55678-55680:55678-55680 \
-p 1777:1777 \
-p 9411:9411 \
-p 9943:9943 \
-p 6831:6831 \
-p 6832:6832 \
-p 14250:14250 \
-p 14268:14268 \
-p 4317:4317 \
-p 55681:55681 \
logzio/otel-collector-traces
```### receiver ports
- Jaeger
- thrift_compact -> 6831
- thrift_binary -> 6832
- grpc -> 14250
- thrift_http -> 14268- Opencensus
- 55678
- Otlp
- grpc -> 4317
- http -> 55681- Zipkin
- 9411