mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-21 13:41:20 +02:00
https://github.com/prometheus-community/json_exporter Prometheus exporter which scrapes remote JSON by JSONPath
7 lines
159 B
Bash
Executable File
7 lines
159 B
Bash
Executable File
#!/bin/sh
|
|
|
|
addgroup -S prometheus 2>/dev/null
|
|
adduser -S -D -h /var/lib/prometheus -s /sbin/nologin -G prometheus -g prometheus prometheus 2>/dev/null
|
|
|
|
exit 0
|