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
The server exposes Prometheus metrics at the `/metrics` endpoint on a dedicated port (default `:9090`).
16
+
-**HTTP Mode**: Metrics server runs on port `9090` (configurable via `-metrics-port`).
17
+
-**gRPC Mode**: Metrics server runs on port `9090` (configurable via `-metrics-port`).
18
+
19
+
Key metrics include:
20
+
-`http_request_duration_seconds`: Histogram of response latency.
21
+
-`http_requests_total`: Counter of HTTP requests by status, method, and path.
22
+
- Standard Go and Process metrics.
23
+
24
+
A `/health` endpoint is available on the main application port (default `:8080`) for readiness probes.
25
+
14
26
15
27
## OTEL based observability
16
28
The OS level env variable `ENABLE_OTEL_TRACING=="true"/"false"` (string type) is used to enable/disable this service (with Tracing only).
29
+
You can also configure the service name using `OTEL_SERVICE_NAME` env variable (defaults to "FeastGoFeatureServer").
17
30
18
31
The default exporter URL is "http://localhost:4318". The default schema of sending data to collector is **HTTP**. Please refer the following two docs about the configuration of the OTEL exporter:
0 commit comments