https://github.com/peak/github-enterprise-replication-exporter
Prometheus exporter for Github Enterprise Replication status
https://github.com/peak/github-enterprise-replication-exporter
Last synced: 4 months ago
JSON representation
Prometheus exporter for Github Enterprise Replication status
- Host: GitHub
- URL: https://github.com/peak/github-enterprise-replication-exporter
- Owner: peak
- Created: 2019-04-04T14:42:11.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-03-06T08:09:04.000Z (over 2 years ago)
- Last Synced: 2025-08-12T06:56:47.534Z (10 months ago)
- Language: Go
- Size: 2.08 MB
- Stars: 3
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Github Enterprise Replication Exporter
This application is designed to parse ghe-repl-status and export it as Prometheus metrics
## Build
- Binary build:
```shell
go build -ldflags="-X 'main.version=`git describe --tags --abbrev=0`'" .
```
- Docker build:
```shell
docker build -t peakcom/github-enterprise-replication-exporter .
```
## Usage
```
Usage of /github-enterprise-replication-exporter:
-ghe-repl-status-path string
Path where ghe-repl-status can be found (default "/usr/local/bin/ghe-repl-status")
-listen-address string
Address to listen on for web interface and telemetry (default ":9169")
-log-level string
Log level (debug/info/warning/error) (default "info")
-metrics-path string
Path under which to expose metrics (default "/metrics")
-version
Prints version
```