prysm-pulse/metrics/influxdb
Fynn eb70fc73cd Merge branch 'master' of https://github.com/ethereum/go-ethereum into geth-sharding
Former-commit-id: 25dc367490dd16ef4fa1d462118aa438df1b319a [formerly 6fab78aeb8b9f54fddbad1406f97392b753a830a]
Former-commit-id: 0de0bb3ef9af1735ac8ecd1aefe2d57c0f76c62d
2018-03-23 19:10:53 +01:00
..
influxdb.go Merge branch 'master' of https://github.com/ethereum/go-ethereum into geth-sharding 2018-03-23 19:10:53 +01:00
LICENSE Merge branch 'master' of https://github.com/ethereum/go-ethereum into geth-sharding 2018-03-23 19:10:53 +01:00
README.md Merge branch 'master' of https://github.com/ethereum/go-ethereum into geth-sharding 2018-03-23 19:10:53 +01:00

go-metrics-influxdb

This is a reporter for the go-metrics library which will post the metrics to InfluxDB.

Note

This is only compatible with InfluxDB 0.9+.

Usage

import "github.com/vrischmann/go-metrics-influxdb"

go influxdb.InfluxDB(
    metrics.DefaultRegistry, // metrics registry
    time.Second * 10,        // interval
    "http://localhost:8086", // the InfluxDB url
    "mydb",                  // your InfluxDB database
    "myuser",                // your InfluxDB user
    "mypassword",            // your InfluxDB password
)

License

go-metrics-influxdb is licensed under the MIT license. See the LICENSE file for details.