cbdc8f35a5
Gitea Branch PR & Ansible Deployment / Check and Create PR (push) Successful in 8m53s
Gitea Branch PR & Ansible Deployment / Docker Compose & Ansible Lints (push) Failing after 12m35s
Gitea Branch PR & Ansible Deployment / PR Merge (push) Successful in 31s
Gitea Branch PR & Ansible Deployment / Ansible Config Deployment (push) Failing after 19m9s
54 lines
2.1 KiB
Django/Jinja
54 lines
2.1 KiB
Django/Jinja
{% set vault_addr = 'https://vault.trez.wtf' %}
|
|
{% set secrets_path = 'rinoa-docker/env' %}
|
|
|
|
|
|
server:
|
|
http_listen_port: 3200
|
|
|
|
distributor:
|
|
receivers: # this configuration will listen on all ports and protocols that tempo is capable of.
|
|
jaeger: # the receives all come from the OpenTelemetry collector. more configuration information can
|
|
protocols: # be found there: https://github.com/open-telemetry/opentelemetry-collector/tree/main/receiver
|
|
thrift_http: #
|
|
grpc: # for a production deployment you should only enable the receivers you need!
|
|
thrift_binary:
|
|
thrift_compact:
|
|
zipkin:
|
|
otlp:
|
|
protocols:
|
|
http:
|
|
grpc:
|
|
opencensus:
|
|
|
|
ingester:
|
|
max_block_duration: 5m # cut the headblock when this much time passes. this is being set for demo purposes and should probably be left alone normally
|
|
|
|
compactor:
|
|
compaction:
|
|
block_retention: 1h # overall Tempo trace retention. set for demo purposes
|
|
|
|
# metrics_generator:
|
|
# registry:
|
|
# external_labels:
|
|
# source: tempo
|
|
# cluster: docker-compose
|
|
# storage:
|
|
# path: /tmp/tempo/generator/wal
|
|
# remote_write:
|
|
# - url: http://grafana-alloy:12345/api/v1/write
|
|
# send_exemplars: true
|
|
|
|
storage:
|
|
trace:
|
|
backend: s3 # backend configuration to use
|
|
wal:
|
|
path: /tmp/tempo/wal # where to store the the wal locally
|
|
s3:
|
|
bucket: tempo # how to store data in s3
|
|
endpoint: minio:9000
|
|
access_key: {{ lookup('community.hashi_vault.vault_kv2_get', 'env', engine_mount_point='rinoa-docker', url=vault_addr, token=vault_token_cleaned)['secret']['MINIO_TEMPO_STORAGE_ACCESS_KEY'] }}
|
|
secret_key: {{ lookup('community.hashi_vault.vault_kv2_get', 'env', engine_mount_point='rinoa-docker', url=vault_addr, token=vault_token_cleaned)['secret']['MINIO_TEMPO_STORAGE_SECRET_KEY'] }}
|
|
insecure: true
|
|
|
|
usage_report:
|
|
reporting_enabled: false |