mirror of
https://github.com/cirocosta/monero-exporter.git
synced 2025-01-03 03:50:48 -05:00
24 lines
504 B
Awk
24 lines
504 B
Awk
|
#!/usr/bin/awk -f
|
||
|
|
||
|
# gh-table-printer - prints to `stdout` the metric descriptions
|
||
|
# in GitHub flavored markdown tables[1].
|
||
|
#
|
||
|
# [1] - https://help.github.com/articles/organizing-information-with-tables/
|
||
|
#
|
||
|
# Usage: `curl -s localhost:9100/metrics | grep container_ | ./gh-table-printer`
|
||
|
|
||
|
BEGIN {
|
||
|
print "| name | description |"
|
||
|
print "| ---- | ----------- |"
|
||
|
}
|
||
|
|
||
|
/HELP/ {
|
||
|
line="| " $3 " |"
|
||
|
for (i = 4; i <= NF; i++) {
|
||
|
line = line " "$i
|
||
|
}
|
||
|
|
||
|
line = line " |"
|
||
|
print line
|
||
|
}
|