You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
We're migrating from coturn to turn-rs for its superior performance, but we're missing the ability to monitor server health and performance metrics. Currently, there's no built-in way to expose metrics to Prometheus, which makes it difficult to:
Monitor server health
Track resource usage
Debug performance issues
Set up alerts for potential problems
Describe the solution you'd like
An integrated Prometheus metrics exporter similar to what coturn provides. Key metrics we'd like to see:
Total/active allocations
Bytes sent/received
Packets sent/received
Protocol-specific metrics (UDP/TCP/TLS)
Session duration
Error counts
Ideally exposed on a /metrics endpoint in standard Prometheus format.
Describe alternatives you've considered
Using system-level metrics only (less accurate/useful)
Additional context
We're using turn-rs in a production environment where monitoring is crucial for maintaining service reliability.
The text was updated successfully, but these errors were encountered:
The existing http api can provide this information you want, so you can expose it to Prometheus yourself.
However, your feature request is not unnecessary, so I will add support for exporting to Prometheus.
Is your feature request related to a problem? Please describe.
We're migrating from
coturn
toturn-rs
for its superior performance, but we're missing the ability to monitor server health and performance metrics. Currently, there's no built-in way to expose metrics to Prometheus, which makes it difficult to:Describe the solution you'd like
An integrated Prometheus metrics exporter similar to what
coturn
provides. Key metrics we'd like to see:Ideally exposed on a
/metrics
endpoint in standard Prometheus format.Describe alternatives you've considered
Additional context
We're using turn-rs in a production environment where monitoring is crucial for maintaining service reliability.
The text was updated successfully, but these errors were encountered: