Replies: 2 comments 2 replies
|
Hi @MacNale Thanks for your question. We do support traces currently and application metrics like latency, error rates, throughput etc. We don't support infrastructure metrics currently (memory usage, etc) - but support for introducing custom metrics is in our roadmap. Once that is done, you should be able to send infrastructure metrics. Do you have any specific use case around infra metrics? Would love to hear that |
|
Yes, SigNoz supports metrics — it uses the OpenTelemetry data model so you get traces, metrics, and logs all in one place with correlation. For metrics specifically you can use:
# collector config to scrape Prometheus endpoints
receivers:
prometheus:
config:
scrape_configs:
- job_name: 'myapp'
static_configs:
- targets: ['localhost:8080']
exporters:
otlp:
endpoint: "your-signoz-otel-collector:4317"One thing worth noting: the metrics + trace correlation in SigNoz is genuinely useful. When a metric spikes, you can click through to the traces from that time window. We use this pattern for monitoring agent performance — tracking per-agent request latency, tool call counts, and error rates, then drilling into specific traces when something looks off. The attribute-based filtering (filtering metrics by |
Uh oh!
There was an error while loading. Please reload this page.
Team,
SaaS vendors like Datadog supports collecting traces. These traces are processed to produce some metrics like latency/error rate/throughput etc. Analytics can be performed on the top of these metrics.
These vendors also collect a lot of infrastructure metrics like memory usage. Does SigNoz also support such metrics?
All reactions