2019-04-02 23:06:15 +00:00
|
|
|
# GitHub Input Plugin
|
|
|
|
|
2019-04-02 23:27:45 +00:00
|
|
|
Gather repository information from [GitHub][] hosted repositories.
|
2019-04-02 23:06:15 +00:00
|
|
|
|
2019-04-02 23:27:45 +00:00
|
|
|
**Note:** Telegraf also contains the [webhook][] input which can be used as an
|
|
|
|
alternative method for collecting repository information.
|
|
|
|
|
|
|
|
### Configuration
|
2019-04-02 23:06:15 +00:00
|
|
|
|
|
|
|
```toml
|
|
|
|
[[inputs.github]]
|
|
|
|
## List of repositories to monitor
|
2019-04-02 23:27:45 +00:00
|
|
|
repositories = ["influxdata/telegraf"]
|
2019-04-02 23:06:15 +00:00
|
|
|
|
2019-04-02 23:27:45 +00:00
|
|
|
## Github API access token. Unauthenticated requests are limited to 60 per hour.
|
2019-04-02 23:06:15 +00:00
|
|
|
# access_token = ""
|
|
|
|
|
2019-04-02 23:27:45 +00:00
|
|
|
## Timeout for HTTP requests.
|
2019-04-02 23:06:15 +00:00
|
|
|
# http_timeout = "5s"
|
|
|
|
```
|
|
|
|
|
2019-04-02 23:27:45 +00:00
|
|
|
### Metrics
|
2019-04-02 23:06:15 +00:00
|
|
|
|
|
|
|
- github_repository
|
|
|
|
- tags:
|
2019-04-02 23:27:45 +00:00
|
|
|
- name - The repository name
|
|
|
|
- owner - The owner of the repository
|
|
|
|
- language - The primary language of the repository
|
|
|
|
- license - The license set for the repository
|
2019-04-02 23:06:15 +00:00
|
|
|
- fields:
|
2019-04-02 23:27:45 +00:00
|
|
|
- stars (int)
|
|
|
|
- forks (int)
|
|
|
|
- open_issues (int)
|
|
|
|
- size (int)
|
|
|
|
|
|
|
|
When the [internal][] input is enabled:
|
2019-04-02 23:06:15 +00:00
|
|
|
|
2019-04-02 23:27:45 +00:00
|
|
|
+ internal_github
|
2019-04-02 23:06:15 +00:00
|
|
|
- tags:
|
2019-04-02 23:27:45 +00:00
|
|
|
- access_token - An obfusticated reference to the configured access token or "Unauthenticated"
|
2019-04-02 23:06:15 +00:00
|
|
|
- fields:
|
2019-04-02 23:27:45 +00:00
|
|
|
- limit - How many requests you are limited to (per hour)
|
|
|
|
- remaining - How many requests you have remaining (per hour)
|
|
|
|
- blocks - How many requests have been blocked due to rate limit
|
2019-04-02 23:06:15 +00:00
|
|
|
|
2019-04-02 23:27:45 +00:00
|
|
|
### Example Output
|
2019-04-02 23:06:15 +00:00
|
|
|
|
|
|
|
```
|
|
|
|
github,full_name=influxdata/telegraf,name=telegraf,owner=influxdata,language=Go,license=MIT\ License stars=6401i,forks=2421i,open_issues=722i,size=22611i 1552651811000000000
|
|
|
|
internal_github,access_token=Unauthenticated rate_limit_remaining=59i,rate_limit_limit=60i,rate_limit_blocks=0i 1552653551000000000
|
|
|
|
```
|
2019-04-02 23:27:45 +00:00
|
|
|
|
|
|
|
[GitHub]: https://www.github.com
|
|
|
|
[internal]: /plugins/inputs/internal
|
|
|
|
[webhook]: /plugins/inputs/webhooks/github
|