Files
configpolicy/group_vars
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
..
2021-10-31 14:28:27 -05:00
2023-05-01 12:36:33 -05:00
2019-08-23 08:48:22 -05:00
2018-08-19 14:17:48 -05:00
2020-01-25 13:57:04 -06:00
2023-04-12 14:07:51 -05:00
2022-08-03 20:52:01 -05:00
2018-08-12 10:27:20 -05:00
2018-07-15 09:19:39 -05:00
2023-05-10 08:28:49 -05:00
2019-09-19 19:51:45 -05:00
2022-12-18 19:55:48 -06:00
2018-04-14 15:47:49 -05:00