1
0
mirror of https://github.com/bgp/stayrtr.git synced 2024-05-06 15:54:54 +00:00

Switch to stayrtr specific Prometheus port

This commit is contained in:
Job Snijders
2021-10-24 14:22:45 +00:00
parent c00dd46be5
commit 580a914a01
2 changed files with 2 additions and 2 deletions

View File

@ -261,7 +261,7 @@ You can check the content provided over RTR with rtrdump tool
$ ./rtrdump -connect 127.0.0.1:8282 -file debug.json
```
You can also fetch the re-generated JSON from the `-export.path` endpoint (default: `http://localhost:8080/rpki.json`)
You can also fetch the re-generated JSON from the `-export.path` endpoint (default: `http://localhost:9847/rpki.json`)
### Data sources

View File

@ -46,7 +46,7 @@ var (
buildinfos = ""
AppVersion = "StayRTR " + version + " " + buildinfos
MetricsAddr = flag.String("metrics.addr", ":8080", "Metrics address")
MetricsAddr = flag.String("metrics.addr", ":9847", "Metrics address")
MetricsPath = flag.String("metrics.path", "/metrics", "Metrics path")
ExportPath = flag.String("export.path", "/rpki.json", "Export path")