1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
#!/usr/bin/env bash
echo '# HELP test_first_test'
echo '# TYPE test_first_test gauge'
echo 'first_test{label1="test_1_label_1"} 1'
echo ''
echo '# HELP test_second_test'
echo '# TYPE test_second_test gauge'
echo 'second_test{label1="test_2_label_1",label2="test_2_label_2"} 2.71828182846'
echo ''
echo '# HELP test_third_test'
echo '# TYPE test_third_test gauge'
echo 'third_test{} 3,14159265359'
echo ''
echo 'Fourth test'
echo 'fourth label1="test_1_label_1 4'
echo ''
echo 'Fifth test'
echo 'fifth 5'
|