2020-04-17 06:39:48 +00:00
json_exporter
2016-02-08 13:48:30 +00:00
========================
2020-04-17 08:06:54 +00:00
[![CircleCI ](https://circleci.com/gh/prometheus-community/json_exporter.svg?style=svg )](https://circleci.com/gh/prometheus-community/json_exporter)
2016-02-08 13:48:30 +00:00
A [prometheus ](https://prometheus.io/ ) exporter which scrapes remote JSON by JSONPath.
2021-01-24 03:51:34 +00:00
For checking the JSONPath configuration supported by this exporter please head over [here ](https://kubernetes.io/docs/reference/kubectl/jsonpath/ ).
Checkout the [examples ](/examples ) directory for sample exporter configuration, prometheus configuration and expected data format.
2016-02-08 13:48:30 +00:00
2021-01-24 03:51:34 +00:00
#### :warning: The configuration syntax has changed in version `0.3.x`. If you are migrating from `0.2.x`, then please use the above mentioned JSONPath guide for correct configuration syntax.
2020-04-17 08:06:54 +00:00
2021-01-24 03:51:34 +00:00
## Example Usage
2016-02-08 13:48:30 +00:00
2021-01-24 03:51:34 +00:00
```console
$ cat examples/data.json
2016-02-08 13:59:48 +00:00
{
"counter": 1234,
"values": [
{
"id": "id-A",
"count": 1,
2020-06-13 20:56:54 +00:00
"some_boolean": true,
2016-02-08 13:59:48 +00:00
"state": "ACTIVE"
},
{
"id": "id-B",
"count": 2,
2020-06-13 20:56:54 +00:00
"some_boolean": true,
2016-02-08 13:59:48 +00:00
"state": "INACTIVE"
},
{
"id": "id-C",
"count": 3,
2020-06-13 20:56:54 +00:00
"some_boolean": false,
2016-02-08 13:59:48 +00:00
"state": "ACTIVE"
2020-08-05 22:28:29 +00:00
}
],
"location": "mars"
2016-02-08 13:59:48 +00:00
}
2020-08-05 22:28:29 +00:00
$ cat examples/config.yml
---
metrics:
2016-02-08 13:59:48 +00:00
- name: example_global_value
2021-01-24 03:51:34 +00:00
path: "{ .counter }"
2020-08-05 22:28:29 +00:00
help: Example of a top-level global value scrape in the json
2016-02-08 13:59:48 +00:00
labels:
environment: beta # static label
2021-01-24 03:51:34 +00:00
location: "planet-{.location}" # dynamic label
2016-02-08 13:59:48 +00:00
- name: example_value
type: object
2020-08-05 22:28:29 +00:00
help: Example of sub-level value scrapes from a json
2021-01-24 03:51:34 +00:00
path: '{.values[?(@.state == "ACTIVE")]}'
2016-02-08 13:59:48 +00:00
labels:
environment: beta # static label
2021-01-24 03:51:34 +00:00
id: '{.id}' # dynamic label
2016-02-08 13:59:48 +00:00
values:
active: 1 # static value
2021-01-24 03:51:34 +00:00
count: '{.count}' # dynamic value
boolean: '{.some_boolean}'
2016-02-08 13:59:48 +00:00
2020-08-05 22:28:29 +00:00
headers:
X-Dummy: my-test-header
2016-02-08 13:48:30 +00:00
$ python -m SimpleHTTPServer 8000 &
Serving HTTP on 0.0.0.0 port 8000 ...
2016-02-08 13:59:48 +00:00
2020-08-05 22:28:29 +00:00
$ ./json_exporter --config.file examples/config.yml &
2016-02-08 13:59:48 +00:00
2020-08-04 05:50:52 +00:00
$ curl "http://localhost:7979/probe?target=http://localhost:8000/examples/data.json" | grep ^example
2021-01-24 03:51:34 +00:00
example_global_value{environment="beta",location="planet-mars"} 1234
2016-02-08 13:48:30 +00:00
example_value_active{environment="beta",id="id-A"} 1
example_value_active{environment="beta",id="id-C"} 1
2020-06-13 20:56:54 +00:00
example_value_boolean{environment="beta",id="id-A"} 1
example_value_boolean{environment="beta",id="id-C"} 0
2016-02-08 13:48:30 +00:00
example_value_count{environment="beta",id="id-A"} 1
example_value_count{environment="beta",id="id-C"} 3
2020-08-04 06:37:28 +00:00
# To test through prometheus:
$ docker run --rm -it -p 9090:9090 -v $PWD/examples/prometheus.yml:/etc/prometheus/prometheus.yml --network host prom/prometheus
2016-02-08 13:48:30 +00:00
```
2020-08-04 06:37:28 +00:00
Then head over to http://localhost:9090/graph?g0.range_input=1h& g0.expr=example_value_active& g0.tab=1 or http://localhost:9090/targets to check the scraped metrics or the targets.
2016-02-08 13:48:30 +00:00
2021-01-24 03:51:34 +00:00
## Exposing metrics through HTTPS
2020-12-10 17:04:16 +00:00
2021-01-24 03:51:34 +00:00
TLS configuration supported by this exporter can be found at [exporter-toolkit/web ](https://github.com/prometheus/exporter-toolkit/blob/v0.5.1/docs/web-configuration.md )
2020-12-10 17:04:16 +00:00
2021-01-24 03:51:34 +00:00
## Build
```sh
make build
2020-12-10 17:04:16 +00:00
```
2021-01-24 03:51:34 +00:00
## Docker
2020-04-17 08:06:54 +00:00
```console
docker run \
2021-01-24 03:51:34 +00:00
-v $PWD/examples/config.yml:/config.yml \
2020-07-31 13:51:21 +00:00
quay.io/prometheuscommunity/json-exporter \
2021-01-24 03:51:34 +00:00
--config.file=/config.yml
2020-04-17 08:06:54 +00:00
```