sampler-fork/config.yml

132 lines
2.7 KiB
YAML
Raw Normal View History

runcharts:
2019-02-21 04:53:59 +00:00
- title: SEARCH ENGINE RESPONSE TIME (sec)
position:
w: 0
h: 0
size:
2019-02-27 04:23:56 +00:00
w: 53
h: 22
2019-02-21 04:53:59 +00:00
scale: 3
items:
- label: GOOGLE
2019-02-26 04:36:23 +00:00
value: curl -o /dev/null -s -w '%{time_total}' https://www.google.com
2019-02-21 04:53:59 +00:00
- label: YAHOO
2019-02-26 04:36:23 +00:00
value: curl -o /dev/null -s -w '%{time_total}' https://search.yahoo.com
2019-02-21 04:53:59 +00:00
- label: BING
2019-02-26 04:36:23 +00:00
value: curl -o /dev/null -s -w '%{time_total}' https://www.bing.com
2019-02-21 04:53:59 +00:00
- title: SEARCH ENGINE RESPONSE TIME 2 (sec)
refresh-rate-ms: 5000
position:
2019-02-27 04:23:56 +00:00
w: 53
2019-02-21 04:53:59 +00:00
h: 0
size:
2019-02-27 04:23:56 +00:00
w: 27
h: 22
2019-02-21 04:53:59 +00:00
legend:
enabled: true
details: false
items:
- label: GOOGLE
2019-02-26 04:36:23 +00:00
value: curl -o /dev/null -s -w '%{time_total}' https://www.google.com
2019-02-21 04:53:59 +00:00
- label: YAHOO
2019-02-26 04:36:23 +00:00
value: curl -o /dev/null -s -w '%{time_total}' https://search.yahoo.com
2019-02-21 04:53:59 +00:00
- label: BING
2019-02-26 04:36:23 +00:00
value: curl -o /dev/null -s -w '%{time_total}' https://www.bing.com
2019-02-21 04:53:59 +00:00
- title: MONGO COLLECTIONS COUNT
position:
2019-02-27 04:23:56 +00:00
w: 26
h: 23
2019-02-21 04:53:59 +00:00
size:
2019-02-27 04:23:56 +00:00
w: 27
h: 17
2019-02-21 04:53:59 +00:00
scale: 0
items:
- label: ACTIVE
2019-02-26 04:36:23 +00:00
value: mongo --quiet --host=localhost blog --eval "db.getCollection('posts').find({status:'ACTIVE'}).itcount()"
2019-02-21 04:53:59 +00:00
- label: INACTIVE
2019-02-26 04:36:23 +00:00
value: mongo --quiet --host=localhost blog --eval "db.getCollection('posts').find({status:'INACTIVE'}).itcount()"
2019-02-19 04:07:32 +00:00
barcharts:
2019-02-23 16:27:22 +00:00
- title: EVENTS BY STATUS
2019-02-21 04:53:59 +00:00
refresh-rate-ms: 1000
position:
w: 0
2019-02-27 04:23:56 +00:00
h: 23
2019-02-21 04:53:59 +00:00
size:
2019-02-27 04:23:56 +00:00
w: 26
h: 17
2019-02-21 04:53:59 +00:00
scale: 0
items:
2019-02-23 16:27:22 +00:00
- label: NEW
2019-02-26 04:36:23 +00:00
value: mongo --quiet --host=localhost blog --eval "db.getCollection('posts').find({status:'ACTIVE'}).itcount()"
2019-02-23 16:27:22 +00:00
- label: TRIGGERED
2019-02-26 04:36:23 +00:00
value: mongo --quiet --host=localhost blog --eval "db.getCollection('posts').find({status:'INACTIVE'}).itcount()"
2019-02-23 16:27:22 +00:00
- label: IN_PROCESS
2019-02-26 04:36:23 +00:00
value: echo 0
2019-02-23 16:27:22 +00:00
- label: FAILED
2019-02-26 04:36:23 +00:00
value: mongo --quiet --host=localhost blog --eval "db.getCollection('posts').find({status:'ACTIVE'}).itcount()"
- label: FINISHED
value: mongo --quiet --host=localhost blog --eval "db.getCollection('posts').find({status:'INACTIVE'}).itcount()"
gauges:
2019-02-28 02:10:21 +00:00
- title: YEAR PROGRESS
2019-02-26 04:36:23 +00:00
position:
2019-02-27 04:23:56 +00:00
w: 0
h: 41
2019-02-26 04:36:23 +00:00
size:
2019-02-27 04:23:56 +00:00
w: 26
2019-02-26 04:36:23 +00:00
h: 3
values:
2019-02-27 04:23:56 +00:00
cur: date +%j
2019-02-26 04:36:23 +00:00
max: echo 365
min: echo 0
2019-02-28 02:10:21 +00:00
- title: DAY PROGRESS
position:
w: 0
h: 41
size:
w: 26
h: 3
values:
cur: date +%H
max: echo 24
min: echo 0
2019-02-27 04:23:56 +00:00
- title: HOUR PROGRESS
position:
w: 0
h: 44
size:
w: 26
h: 3
values:
cur: date +%M
max: echo 60
min: echo 0
- title: MINUTE PROGRESS
position:
w: 0
h: 47
size:
w: 26
h: 3
values:
cur: date +%S
max: echo 60
min: echo 0
2019-02-17 23:00:00 +00:00
asciiboxes:
2019-02-23 16:27:22 +00:00
- title: LOCAL TIME
2019-02-21 04:53:59 +00:00
position:
2019-02-27 04:23:56 +00:00
w: 53
h: 23
2019-02-21 04:53:59 +00:00
size:
2019-02-27 04:23:56 +00:00
w: 27
h: 8
2019-02-26 04:36:23 +00:00
value: date +%r
2019-02-23 16:27:22 +00:00
- title: UTC TIME
2019-02-21 04:53:59 +00:00
position:
2019-02-27 04:23:56 +00:00
w: 53
h: 31
2019-02-21 04:53:59 +00:00
size:
2019-02-27 04:23:56 +00:00
w: 27
h: 9
2019-02-26 04:36:23 +00:00
value: env TZ=UTC date +%r
2019-02-21 04:53:59 +00:00
font: 3d