For clean Markdown content of this page, append .md to this URL. For the complete documentation index, see https://docs.nvidia.com/dynamo/llms.txt. For full content including API reference and SDK examples, see https://docs.nvidia.com/dynamo/llms-full.txt.
Метрики оператора
Обзор
Dynamo Operator публикует метрики Prometheus для мониторинга собственного состояния и производительности. Эти метрики отделены от метрик приложения (frontend/worker) и дают видимость в:
- Reconciliation контроллеров: насколько эффективно контроллеры обрабатывают
DynamoGraphDeployments,DynamoComponentDeploymentsиDynamoModels - Валидацию webhook'ов: производительность и результаты admission webhook-запросов
- Инвентаризацию ресурсов: текущее число управляемых ресурсов по состоянию и namespace
Предварительные требования
Для метрик оператора требуется та же инфраструктура мониторинга, что и для метрик приложения. Подробные инструкции по настройке см. в Kubernetes Metrics Guide.
Краткий чеклист:
- ✅ установлен
kube-prometheus-stack(для поддержкиServiceMonitor) - ✅ запущены Prometheus и Grafana
- ✅
Dynamo Operatorустановлен через Helm
Сбор метрик
ServiceMonitor
Метрики оператора автоматически собираются через ServiceMonitor, который создается chart'ом Helm, когда metricsService.enabled: true (по умолчанию).
В отличие от метрик приложения (которые используют PodMonitor), оператор использует ServiceMonitor и не требует ручной настройки RBAC. Endpoint метрик оператора использует встроенный фильтр controller-runtime WithAuthenticationAndAuthorization для защищенной публикации.
Чтобы проверить, что ServiceMonitor создан:
kubectl get servicemonitor -n dynamo-system
Отключение сбора метрик
Чтобы отключить сбор метрик оператора:
helm upgrade dynamo-platform dynamo-platform-${RELEASE_VERSION}.tgz \
--namespace dynamo-system \
--set dynamo-operator.metricsService.enabled=false
Доступные метрики
All metrics use the dynamo_operator namespace prefix.
Метрики reconciliation
| Metric | Type | Labels | Description |
|---|---|---|---|
dynamo_operator_reconcile_duration_seconds | Histogram | resource_type, namespace, result | Duration of reconciliation loops |
dynamo_operator_reconcile_total | Counter | resource_type, namespace, result | Total number of reconciliations |
dynamo_operator_reconcile_errors_total | Counter | resource_type, namespace, error_type | Total reconciliation errors by type |
Labels:
resource_type:DynamoGraphDeployment,DynamoComponentDeployment,DynamoModel,DynamoGraphDeploymentRequest,DynamoGraphDeploymentScalingAdapternamespace: Target namespace of the resourceresult:success,error,requeueerror_type:not_found,already_exists,conflict,validation,bad_request,unauthorized,forbidden,timeout,server_timeout,unavailable,rate_limited,internal
Метрики webhook'ов
| Metric | Type | Labels | Description |
|---|---|---|---|
dynamo_operator_webhook_duration_seconds | Histogram | resource_type, operation | Duration of webhook validation requests |
dynamo_operator_webhook_requests_total | Counter | resource_type, operation, result | Total webhook admission requests |
dynamo_operator_webhook_denials_total | Counter | resource_type, operation, reason | Total webhook denials with reasons |
Labels:
resource_type: Same as reconciliation metricsoperation:CREATE,UPDATE,DELETEresult:allowed,deniedreason: Validation failure reason (e.g.,immutable_field_changed,invalid_config)
Метрики инвентаризации ресурсов
| Metric | Type | Labels | Description |
|---|---|---|---|
dynamo_operator_resources_total | Gauge | resource_type, namespace, status | Current count of resources by state |
Labels:
resource_type:DynamoGraphDeployment,DynamoComponentDeployment,DynamoModel,DynamoGraphDeploymentRequest,DynamoGraphDeploymentScalingAdapternamespace: Resource namespacestatus: Resource state derived from each CRD's status. Common values:"ready"- Resource is healthy and operational (DCD, DM, DGDSA)"not_ready"- Resource exists but is not operational (DCD, DM, DGDSA)"unknown"- State cannot be determined (default for empty status)- DGD uses:
"pending","successful","failed"from.status.state - DGDR uses:
"Pending","Profiling","Ready","Deploying","Deployed","Failed"from.status.phase
Example Queries
Reconciliation Performance
# P95 reconciliation duration by resource type
histogram_quantile(0.95,
sum by (resource_type, le) (
rate(dynamo_operator_reconcile_duration_seconds_bucket[5m])
)
)
# Reconciliation rate by result
sum by (resource_type, result) (
rate(dynamo_operator_reconcile_total[5m])
)
# Error rate by type
sum by (resource_type, error_type) (
rate(dynamo_operator_reconcile_errors_total[5m])
)
Webhook Performance
# Webhook P95 latency
histogram_quantile(0.95,
sum by (resource_type, le) (
rate(dynamo_operator_webhook_duration_seconds_bucket[5m])
)
)
# Webhook denial rate
sum by (resource_type, operation, reason) (
rate(dynamo_operator_webhook_denials_total[5m])
)
Resource Inventory
# Total resources by type and state
sum by (resource_type, status) (
dynamo_operator_resources_total
)
# DynamoGraphDeployments by state
sum by (status) (
dynamo_operator_resources_total{resource_type="DynamoGraphDeployment"}
)
# All resources by namespace and state
sum by (resource_type, namespace, status) (
dynamo_operator_resources_total
)
Дашборд Grafana
A pre-built Grafana dashboard is available for visualizing operator metrics.
Разделы дашборда
-
Reconciliation Metrics (3 panels)
- Reconciliation rate by resource type and result
- P95 reconciliation duration
- Reconciliation errors by type
-
Webhook Metrics (3 panels)
- Webhook request rate by operation
- P95 webhook duration
- Webhook denials by reason
-
Resource Inventory (2 panels)
- Resource inventory timeline by state and namespace (filterable by resource type)
- Current resource count by state (filterable by resource type)
-
Operational Health (2 panels)
- Reconciliation success rate gauges
- Webhook admission success rate gauges
Deploying the Dashboard
kubectl apply -f deploy/observability/grafana-operator-dashboard-configmap.yaml
The dashboard will automatically appear in Grafana (assuming you have the Grafana dashboard sidecar configured, which is included in kube-prometheus-stack).
Finding the Dashboard
-
Port-forward to Grafana (if needed):
kubectl port-forward svc/prometheus-grafana 3000:80 -n monitoring -
Log in to Grafana at http://localhost:3000
-
Navigate to Dashboards → Search for "Dynamo Operator"
Dashboard Filters
The dashboard includes two filter variables:
- Namespace: View metrics across all namespaces or filter by specific ones (multi-select)
- Resource Type: Filter all panels by resource type or select "All" to see aggregated metrics across all CRDs (single select)
When "All" is selected for Resource Type, all panels will show data for all five managed CRDs with resource_type labels for differentiation.
Прямой доступ к метрикам
For instructions on accessing Prometheus and Grafana, see the Kubernetes Metrics Guide.
Once you have access to Prometheus, you can query operator metrics directly:
# Port-forward to Prometheus
kubectl port-forward svc/prometheus-kube-prometheus-prometheus 9090:9090 -n monitoring
# Visit http://localhost:9090 and try queries like:
# - dynamo_operator_reconcile_total
# - dynamo_operator_webhook_requests_total
# - dynamo_operator_resources_total
Устранение неполадок
Metrics Not Appearing in Prometheus
-
Check ServiceMonitor exists:
kubectl get servicemonitor -n dynamo-system | grep operator -
Check ServiceMonitor is discovered by Prometheus:
- Go to Prometheus UI → Status → Targets
- Look for
serviceMonitor/dynamo-system/dynamo-platform-dynamo-operator-operator - Should show state:
UP
-
Check Prometheus selector configuration:
kubectl get prometheus -o yaml | grep serviceMonitorSelectorEnsure
serviceMonitorSelectorNilUsesHelmValues: falsewas set during kube-prometheus-stack installation.
Dashboard Not Appearing in Grafana
-
Check ConfigMap is created:
kubectl get configmap -n monitoring grafana-operator-dashboard -
Check ConfigMap has the label:
kubectl get configmap -n monitoring grafana-operator-dashboard -o jsonpath='{.metadata.labels.grafana_dashboard}'Should return
"1" -
Check Grafana dashboard sidecar configuration:
kubectl get deployment -n monitoring prometheus-grafana -o yaml | grep -A 5 sidecarThe sidecar should be configured to watch for
grafana_dashboard: "1"label. -
Restart Grafana pod to force dashboard refresh:
kubectl rollout restart deployment/prometheus-grafana -n monitoring
Связанная документация
- Kubernetes Metrics Guide - Application metrics for frontends and workers
- Dynamo Operator Guide - Operator architecture and deployment modes
- Operator Webhooks - Webhook validation details