mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-29 16:14:42 +00:00
* WIP promql support * forked prometheus and promhouse integrated * removing __debug_bin from git * feat: prometheus config file to load * feat: read prometheus config from args * fix: WIP fixing errors in docker build * feat: added clickhousemetricswrite exporter in metrics * feat: changing otelcol image tag * fix: read prometheus.yml from config flag in docker-compose * fix: WIP clickhouse connection error * fix: used signoz/prometheus tag v1.9.4 * chore: response format as in prometheus * chore: query_range works with clickhouse reader and throws not implemented error for druid * chore: moved ApiError struct to model * feat: enabled instant query api for metrics * chore: parser for instant query api params
52 lines
1.1 KiB
YAML
52 lines
1.1 KiB
YAML
receivers:
|
|
otlp:
|
|
protocols:
|
|
grpc:
|
|
http:
|
|
jaeger:
|
|
protocols:
|
|
grpc:
|
|
thrift_http:
|
|
hostmetrics:
|
|
collection_interval: 10s
|
|
scrapers:
|
|
load:
|
|
memory:
|
|
processors:
|
|
batch:
|
|
send_batch_size: 1000
|
|
timeout: 10s
|
|
memory_limiter:
|
|
# Same as --mem-ballast-size-mib CLI argument
|
|
ballast_size_mib: 683
|
|
# 80% of maximum memory up to 2G
|
|
limit_mib: 1500
|
|
# 25% of limit up to 2G
|
|
spike_limit_mib: 512
|
|
check_interval: 5s
|
|
# queued_retry:
|
|
# num_workers: 4
|
|
# queue_size: 100
|
|
# retry_on_failure: true
|
|
extensions:
|
|
health_check: {}
|
|
zpages: {}
|
|
exporters:
|
|
clickhouse:
|
|
datasource: tcp://clickhouse:9000
|
|
clickhousemetricswrite:
|
|
endpoint: tcp://clickhouse:9000/?database=signoz_metrics
|
|
resource_to_telemetry_conversion:
|
|
enabled: true
|
|
|
|
service:
|
|
extensions: [health_check, zpages]
|
|
pipelines:
|
|
traces:
|
|
receivers: [jaeger, otlp]
|
|
processors: [batch]
|
|
exporters: [clickhouse]
|
|
metrics:
|
|
receivers: [otlp, hostmetrics]
|
|
processors: [batch]
|
|
exporters: [clickhousemetricswrite] |