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 CSI driver also exposes Azure cloud provider metrics from the underlying Azure SDK operations:
59
+
60
+
| Metric | Type | Labels | Description |
61
+
|--------|------|--------|-------------|
62
+
|`cloudprovider_azure_api_request_duration_seconds`| Histogram |`request`, `resource_group`, `subscription_id`, `source`, `result`| Latency of Azure API calls |
63
+
|`cloudprovider_azure_api_request_throttled_count`| Counter |`request`, `resource_group`, `subscription_id`, `source`| Number of throttled Azure API requests |
64
+
|`cloudprovider_azure_api_request_errors`| Counter |`request`, `resource_group`, `subscription_id`, `source`| Number of errors in Azure API requests |
65
+
66
+
These metrics help monitor Azure API performance, throttling, and error rates for file share operations.
67
+
20
68
## Get Prometheus metrics from CSI driver node pod
21
69
22
70
```console
23
-
kubectl get --raw /api/v1/namespaces/kube-system/pods/csi-azurefile-node-hfgrn:29615/proxy/metrics
71
+
kubectl get --raw /api/v1/namespaces/kube-system/pods/csi-azurefile-node-xxxxx:29615/proxy/metrics
24
72
```
73
+
74
+
> **Note:** Replace `csi-azurefile-node-xxxxx` with an actual pod name from `kubectl get pods -n kube-system -l app=csi-azurefile-node`
0 commit comments