kiwi-simple-metrics/example/dummy-metric

8 lines
140 B
Text
Raw Normal View History

2023-09-02 15:02:17 +00:00
#!/bin/sh
echo "Dummy" # name
echo "95" # threshold
echo "normal" # inversion
awk "BEGIN{srand(); r=rand(); print r * 100}" # value
exit 0