Go to file
Ben Kochie 1a5679d9bf
Merge pull request #37 from davdr/fix/boolean
Fix bool support
2020-06-14 15:55:45 +02:00
.circleci More community cleanup 2020-04-17 08:45:38 +02:00
example demo bool support in the example 2020-06-13 23:36:57 +02:00
harness Fix lint issues. 2020-04-17 08:59:32 +02:00
jsonexporter jsonexporter/scraper: fix bool support 2020-06-13 23:36:57 +02:00
.gitignore Initial import 2016-02-08 22:55:40 +09:00
.promu.yml Use default promu crossbuild list. 2020-04-17 11:46:51 +02:00
Dockerfile Fix dockerfile 2020-06-12 00:01:42 +02:00
LICENSE Initial commit 2016-02-08 22:25:55 +09:00
Makefile Add Docker 2020-04-17 10:06:54 +02:00
Makefile.common Update for prometheus-community 2020-04-17 08:24:27 +02:00
README.md demo bool support in the example 2020-06-13 23:36:57 +02:00
VERSION Update for prometheus-community 2020-04-17 08:24:27 +02:00
go.mod Add Docker 2020-04-17 10:06:54 +02:00
go.sum More community cleanup 2020-04-17 08:45:38 +02:00
json_exporter.go Add license headers. 2020-04-17 08:45:38 +02:00

README.md

json_exporter

CircleCI

A prometheus exporter which scrapes remote JSON by JSONPath.

Build

make build

Example Usage

$ cat example/data.json
{
    "counter": 1234,
    "values": [
        {
            "id": "id-A",
            "count": 1,
            "some_boolean": true,
            "state": "ACTIVE"
        },
        {
            "id": "id-B",
            "count": 2,
            "some_boolean": true,
            "state": "INACTIVE"
        },
        {
            "id": "id-C",
            "count": 3,
            "some_boolean": false,
            "state": "ACTIVE"
        },
    ]
}

$ cat example/config.yml
- name: example_global_value
  path: $.counter
  labels:
    environment: beta # static label

- name: example_value
  type: object
  path: $.values[*]?(@.state == "ACTIVE")
  labels:
    environment: beta # static label
    id: $.id          # dynamic label
  values:
    active: 1      # static value
    count: $.count # dynamic value
    boolean: $.some_boolean

$ python -m SimpleHTTPServer 8000 &
Serving HTTP on 0.0.0.0 port 8000 ...

$ ./json_exporter http://localhost:8000/example/data.json example/config.yml &
INFO[2016-02-08T22:44:38+09:00] metric registered;name:<example_global_value>
INFO[2016-02-08T22:44:38+09:00] metric registered;name:<example_value_boolean>
INFO[2016-02-08T22:44:38+09:00] metric registered;name:<example_value_active>
INFO[2016-02-08T22:44:38+09:00] metric registered;name:<example_value_count>
127.0.0.1 - - [08/Feb/2016 22:44:38] "GET /example/data.json HTTP/1.1" 200 -


$ curl http://localhost:7979/metrics | grep ^example
example_global_value{environment="beta"} 1234
example_value_active{environment="beta",id="id-A"} 1
example_value_active{environment="beta",id="id-C"} 1
example_value_boolean{environment="beta",id="id-A"} 1
example_value_boolean{environment="beta",id="id-C"} 0
example_value_count{environment="beta",id="id-A"} 1
example_value_count{environment="beta",id="id-C"} 3

Docker

docker run \
  -v config.yml:/config.yml
  json_exporter \
    http://example.com/target.json \
    /config.yml

See Also