sampler-fork/config.yml

126 lines
2.6 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
2019-03-01 03:44:01 +00:00
h: 16
2019-02-21 04:53:59 +00:00
scale: 3
2019-03-03 03:51:08 +00:00
alerts:
- name: PROCESSING STARTED // ${prev} ${cur} ${lavel} // echo $(( 3 < 4 && 1 > 2 ))
trigger: ((${prev} == 0 && ${cur} > 0))
repeat: false
action:
terminal-bell: true
sound: false
visual: true
script: say ${lavel} initiated with value ${cur}
2019-02-21 04:53:59 +00:00
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-03-01 03:44:01 +00:00
- title: MONGO COLLECTIONS COUNT
2019-02-21 04:53:59 +00:00
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
2019-03-01 03:44:01 +00:00
h: 8
2019-02-21 04:53:59 +00:00
legend:
enabled: true
details: false
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: 17
2019-03-01 03:44:01 +00:00
size:
w: 53
h: 12
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-03-01 03:44:01 +00:00
w: 53
h: 8
2019-02-26 04:36:23 +00:00
size:
2019-03-01 03:44:01 +00:00
w: 27
h: 2
2019-02-26 04:36:23 +00:00
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:
2019-03-01 03:44:01 +00:00
w: 53
h: 10
2019-02-28 02:10:21 +00:00
size:
2019-03-01 03:44:01 +00:00
w: 27
h: 2
2019-02-28 02:10:21 +00:00
values:
cur: date +%H
max: echo 24
min: echo 0
2019-02-27 04:23:56 +00:00
- title: HOUR PROGRESS
position:
2019-03-01 03:44:01 +00:00
w: 53
h: 12
2019-02-27 04:23:56 +00:00
size:
2019-03-01 03:44:01 +00:00
w: 27
h: 2
2019-02-27 04:23:56 +00:00
values:
cur: date +%M
max: echo 60
min: echo 0
- title: MINUTE PROGRESS
position:
2019-03-01 03:44:01 +00:00
w: 53
h: 14
2019-02-27 04:23:56 +00:00
size:
2019-03-01 03:44:01 +00:00
w: 27
h: 2
2019-02-27 04:23:56 +00:00
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
2019-03-01 03:44:01 +00:00
h: 17
2019-02-21 04:53:59 +00:00
size:
2019-02-27 04:23:56 +00:00
w: 27
2019-03-01 03:44:01 +00:00
h: 5
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
2019-03-01 03:44:01 +00:00
h: 22
2019-02-21 04:53:59 +00:00
size:
2019-02-27 04:23:56 +00:00
w: 27
2019-03-01 03:44:01 +00:00
h: 7
2019-02-26 04:36:23 +00:00
value: env TZ=UTC date +%r
2019-02-21 04:53:59 +00:00
font: 3d