Files
configpolicy/roles
Dustin C. Hatch 347cda74fd metrics: Scrape metrics from Kubernetes API server
Kubernetes exports a *lot* of metrics in Prometheus format.  I am not
sure what all is there, yet, but apparently several thousand time series
were added.

To allow anonymous access to the metrics, I added this RoleBinding:

```yaml
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
  name: prometheus
rules:
- apiGroups:
  - ""
  resources:
  - nodes/metrics
  verbs:
  - get
- nonResourceURLs:
  - /metrics
  verbs:
  - get
```
2023-05-22 21:21:08 -05:00
..
2018-08-08 21:38:56 -05:00
2020-03-09 20:29:52 -05:00
2018-07-23 17:35:10 -05:00
2018-04-08 10:11:43 -05:00
2021-10-31 14:25:59 -05:00
2022-08-15 17:12:35 -05:00
2018-06-06 21:44:28 -05:00
2022-08-15 17:06:20 -05:00
2022-08-20 21:15:31 -05:00
2021-11-06 18:12:29 -05:00