Files
triggerdotdev--trigger.dev/docker/otel-collector-config.yaml
T
Eric Allam 07f7c65054 v3 queue system (#903)
* Introducing Modular Asynchronous Reliable Queueing System (MarQS). Works in dev

* Convert MarQS to using lua and dealing with concurrency

* Simplified the timeout queue and current concurrency is now a set instead of a flat value (to support idempotency)

* Implement task heartbeating and reconnect the background workers CLI when the websocket connection reconnects

* Start adding internal telemetry support for the server

* Get env vars to work in dev and implement prisma tracing in webapp

* Cleanup telemetry and implement it in the consumer

* Implement dequeuing a message from a parent shared queue

* Implement a custom logger exporter instead of using console log exporter

* Use node instead of shell for generating protocol buffer code

* Propogate trace context into debug logs, and allow turning off logger exporter through env vars

* Switch to using baselime for internal otel data

* Make orgMember optional to fix type issues

* Provide the CLI dev env vars through the CLI, don’t build dotenv into facade

* Removed the logger import

* Address Matt’s comments

* Addressing more of Matt’s comments

* Handle sending an execution after a websocket connection closes

* Remove auth from the env attributes to prevent obfuscation
2024-02-20 12:16:41 +00:00

43 lines
868 B
YAML

receivers:
otlp:
protocols:
grpc:
endpoint: 0.0.0.0:4317
http:
endpoint: 0.0.0.0:4318
otlp/internal:
protocols:
http:
endpoint: 0.0.0.0:4319
processors:
batch:
exporters:
otlphttp/internal:
endpoint: "https://otel.baselime.io/v1/"
headers:
"x-api-key": ${env:BASELIME_API_KEY}
"x-service": ${env:BASELIME_SERVICE}
"x-baselime-dataset": "otel"
logging:
verbosity: normal
otlphttp:
endpoint: "http://host.docker.internal:3030/otel"
compression: none
service:
pipelines:
traces:
receivers: [otlp]
processors: [batch]
exporters: [otlphttp]
logs:
receivers: [otlp]
processors: [batch]
exporters: [otlphttp]
traces/internal:
receivers: [otlp/internal]
processors: [batch]
exporters: [otlphttp/internal]