Skip to content

Commit

Permalink
Describe where metrics come from
Browse files Browse the repository at this point in the history
  • Loading branch information
ehashman committed Mar 22, 2019
1 parent 173939e commit 1f44ce7
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion README.md
Expand Up @@ -92,7 +92,18 @@ http://127.0.0.1:8080/graph and try out some queries. Perhaps you could check if
## Query Prometheus

Here are a number of PromQL queries you can try out against your Prometheus
instance.
instance. You can browse all available timeseries in the Prometheus graph UI by
clicking on the dropdown list.

The timeseries names tell us the source of the various metrics:

- `apiserver_*` metrics are provided by the API servers
- `kube_*` metrics are provided by `kube-state-metrics`
- `kubelet_*` metrics are provided by the kubelets
- `container_*` metrics are provided by cadvisor

There are also some built-in metrics that are generated at Prometheus scrape
time, such as `up` (whether a scrape target is up or not).

### General pod info

Expand Down

0 comments on commit 1f44ce7

Please sign in to comment.