- fix tests
- clean readme
- clean test response
- check for api keys
This Telegraf input plugin gathers repository stats from GitHub. It uses GitHub's REST API to retrieve the stats.
To install the plugin you have to download a suitable release archive and extract it or build it from source by cloning the repository and issueing a simple
make
To build the plugin, Go version 1.16 or higher is required. The resulting plugin binary will be written to ./build/bin. Copy the either extracted or built plugin binary to a location of your choice (e.g. /usr/local/bin/telegraf/).
This is an external plugin which has to be integrated via Telegraf's excecd plugin.
To use it you have to create a plugin specific config file (e.g. /etc/telegraf/github.conf) with following template content:
[[inputs.github]]
## The repositories (<owner>/<repo>) to query
repos = ["influxdata/telegraf"]
## The API base URL to use for API access (empty URL defaults to https://api.github.com/)
# api_base_url = ""
## The Personal Access Token to use for API access
# access_token = ""
## The http timeout to use (in seconds)
# timeout = 5
## Enable debug output
# debug = false
The most important setting is the repos line. It defines the repositories (/) to query. At least one repository has to be defined.
To enable the plugin within your Telegraf instance, add the following section to your telegraf.conf
[[inputs.execd]]
command = ["/usr/local/bin/telegraf/github-telegraf-plugin", "-config", "/etc/telegraf/github.conf", "-poll_interval", "3600s"]
signal = "none"
Make sure to choose a high poll interval, to not waste your rate limit. As the github stats are low-traffic stats, there is furthermore no need to poll in high frequency mode.
This project is subject to the the MIT License. See LICENSE information for details.