mirror of
https://github.com/yavook/kiwi-simple-metrics.git
synced 2024-11-22 07:33:00 +00:00
8 lines
No EOL
140 B
Bash
Executable file
8 lines
No EOL
140 B
Bash
Executable file
#!/bin/sh
|
|
|
|
echo "Dummy" # name
|
|
echo "95" # threshold
|
|
echo "normal" # inversion
|
|
awk "BEGIN{srand(); r=rand(); print r * 100}" # value
|
|
|
|
exit 0 |