Available Metrics
TrustGate provides comprehensive monitoring capabilities through a Prometheus metrics endpoint. This guide explains how to access and interpret these metrics to monitor your gateway’s performance and health.
Configuration
Metrics collection can be configured in your TrustGate configuration file:
TrustGate exposes metrics at the /metrics
endpoint in Prometheus format. These metrics provide insights into request processing, latency, connections, and overall system health.
Connection Metrics
This gauge metric tracks the number of active connections to your gateway. It includes the following labels:
gateway_id
: Unique identifier for the gateway instancestate
: Connection state (e.g., “active”)
Request Metrics
This counter tracks the total number of requests processed by the gateway with labels for:
gateway_id
: Gateway instance identifiermethod
: HTTP method (GET, POST, etc.)status
: HTTP status code category (2xx, 4xx, 5xx)
Latency Metrics
TrustGate provides three types of latency histograms:
- Overall Request Latency
- Detailed Route/Service Latency
- Upstream Service Latency
All latency metrics include bucket ranges from 5ms to 30s and provide:
gateway_id
: Gateway instance identifierroute
: Route ID (for detailed and upstream metrics)service
: Service ID (for detailed and upstream metrics)type
: Request path (for overall latency)
Prometheus Handler Metrics
These metrics provide information about the Prometheus metrics endpoint itself.