chore: remove bothersome otlp config
This commit is contained in:
parent
5ebc4ec09d
commit
2d90059418
4 changed files with 0 additions and 101 deletions
|
@ -85,55 +85,9 @@ services:
|
|||
networks:
|
||||
- continuity
|
||||
|
||||
prometheus:
|
||||
container_name: continuity-prometheus
|
||||
image: prom/prometheus:latest
|
||||
restart: always
|
||||
depends_on:
|
||||
- server
|
||||
ports:
|
||||
- 9090:9090
|
||||
volumes:
|
||||
- prom-data:/prometheus
|
||||
- ./otlp/prometheus.yml:/etc/prometheus/prometheus.yml
|
||||
networks:
|
||||
- continuity
|
||||
|
||||
otel-collector:
|
||||
container_name: continuity-otel-collector
|
||||
image: otel/opentelemetry-collector-contrib:0.89.0
|
||||
restart: always
|
||||
depends_on:
|
||||
- prometheus
|
||||
ports:
|
||||
- 14278:14278
|
||||
- 4317:4317
|
||||
- 9091:9091
|
||||
volumes:
|
||||
- ./otlp/otel-config.yaml:/etc/otel-config.yaml
|
||||
command: [ "--config=/etc/otel-config.yaml" ]
|
||||
networks:
|
||||
- continuity
|
||||
|
||||
grafana:
|
||||
networks:
|
||||
- continuity
|
||||
image: grafana/grafana:latest
|
||||
depends_on:
|
||||
- prometheus
|
||||
volumes:
|
||||
- ./otlp/datasource.yml:/etc/grafana/provisioning/datasources/datasource.yaml
|
||||
environment:
|
||||
- GF_AUTH_ANONYMOUS_ENABLED=true
|
||||
- GF_AUTH_ANONYMOUS_ORG_ROLE=Admin
|
||||
- GF_AUTH_DISABLE_LOGIN_FORM=true
|
||||
ports:
|
||||
- 3000:3000
|
||||
|
||||
networks:
|
||||
continuity:
|
||||
|
||||
volumes:
|
||||
db-data:
|
||||
prom-data:
|
||||
server-logs:
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
apiVersion: 1
|
||||
datasources:
|
||||
- name: Prometheus
|
||||
type: prometheus
|
||||
url: http://prometheus:9090
|
||||
isDefault: true
|
||||
access: proxy
|
||||
editable: true
|
|
@ -1,39 +0,0 @@
|
|||
receivers:
|
||||
otlp:
|
||||
protocols:
|
||||
grpc:
|
||||
http:
|
||||
jaeger:
|
||||
protocols:
|
||||
thrift_http:
|
||||
endpoint: otel-collector:14278
|
||||
|
||||
|
||||
exporters:
|
||||
prometheus:
|
||||
endpoint: otel-collector:9091
|
||||
zipkin:
|
||||
endpoint: "http://zipkin:9411/api/v2/spans"
|
||||
format: proto
|
||||
otlp:
|
||||
endpoint: jaeger:4317
|
||||
tls:
|
||||
insecure: true
|
||||
|
||||
processors:
|
||||
batch:
|
||||
|
||||
extensions:
|
||||
health_check:
|
||||
|
||||
service:
|
||||
extensions: [ health_check ]
|
||||
pipelines:
|
||||
traces:
|
||||
receivers: [ otlp, jaeger ]
|
||||
processors: [ batch ]
|
||||
exporters: [ otlp, zipkin ]
|
||||
metrics:
|
||||
receivers: [ otlp ]
|
||||
processors: [ batch ]
|
||||
exporters: [ prometheus ]
|
|
@ -1,8 +0,0 @@
|
|||
global:
|
||||
scrape_interval: 15s
|
||||
evaluation_interval: 15s
|
||||
|
||||
scrape_configs:
|
||||
- job_name: 'otel-collector'
|
||||
static_configs:
|
||||
- targets: [ 'otel-collector:9091' ]
|
Loading…
Reference in a new issue