menu cross-platform rendering: remove dot in the middle of arrows
This commit is contained in:
parent
db9e76bec3
commit
ca6a328682
|
@ -182,7 +182,7 @@ func (m *Menu) printAllDirectionsArrowSign(buffer *ui.Buffer, y int) {
|
||||||
|
|
||||||
arrows := []string{
|
arrows := []string{
|
||||||
" ↑ ",
|
" ↑ ",
|
||||||
"←· →",
|
"← →",
|
||||||
" ↓ ",
|
" ↓ ",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
122
config.yml
122
config.yml
|
@ -4,21 +4,21 @@ runcharts:
|
||||||
- title: SEARCH ENGINE RESPONSE TIME (sec)
|
- title: SEARCH ENGINE RESPONSE TIME (sec)
|
||||||
position: [[0, 0], [52, 16]]
|
position: [[0, 0], [52, 16]]
|
||||||
triggers:
|
triggers:
|
||||||
- title: Latency threshold exceeded
|
- title: Latency threshold exceeded
|
||||||
condition: echo "$prev < 0.8 && $cur > 0.8" |bc -l
|
condition: echo "$prev < 0.8 && $cur > 0.8" |bc -l
|
||||||
actions:
|
actions:
|
||||||
terminal-bell: true
|
terminal-bell: true
|
||||||
sound: true
|
sound: true
|
||||||
visual: true
|
visual: true
|
||||||
script: 'say alert: ${label} latency exceeded ${cur} second'
|
script: 'say alert: ${label} latency exceeded ${cur} second'
|
||||||
scale: 3
|
scale: 3
|
||||||
items:
|
items:
|
||||||
- label: GOOGLE
|
- label: GOOGLE
|
||||||
sample: curl -o /dev/null -s -w '%{time_total}' https://www.google.com
|
sample: curl -o /dev/null -s -w '%{time_total}' https://www.google.com
|
||||||
- label: YAHOO
|
- label: YAHOO
|
||||||
sample: curl -o /dev/null -s -w '%{time_total}' https://search.yahoo.com
|
sample: curl -o /dev/null -s -w '%{time_total}' https://search.yahoo.com
|
||||||
- label: BING
|
- label: BING
|
||||||
sample: curl -o /dev/null -s -w '%{time_total}' https://www.bing.com
|
sample: curl -o /dev/null -s -w '%{time_total}' https://www.bing.com
|
||||||
- title: MONGO COLLECTIONS COUNT
|
- title: MONGO COLLECTIONS COUNT
|
||||||
position: [[53, 0], [27, 8]]
|
position: [[53, 0], [27, 8]]
|
||||||
legend:
|
legend:
|
||||||
|
@ -26,32 +26,32 @@ runcharts:
|
||||||
details: false
|
details: false
|
||||||
scale: 0
|
scale: 0
|
||||||
items:
|
items:
|
||||||
- label: ACTIVE
|
- label: ACTIVE
|
||||||
init: $mongoconnection
|
init: $mongoconnection
|
||||||
sample: db.getCollection('posts').find({status:'ACTIVE'}).itcount()
|
sample: db.getCollection('posts').find({status:'ACTIVE'}).itcount()
|
||||||
- label: INACTIVE
|
- label: INACTIVE
|
||||||
init: $mongoconnection
|
init: $mongoconnection
|
||||||
sample: db.getCollection('posts').find({status:'INACTIVE'}).itcount()
|
sample: db.getCollection('posts').find({status:'INACTIVE'}).itcount()
|
||||||
barcharts:
|
barcharts:
|
||||||
- title: EVENTS BY STATUS
|
- title: EVENTS BY STATUS
|
||||||
position: [[0, 17], [28, 12]]
|
position: [[0, 17], [28, 12]]
|
||||||
rate-ms: 300
|
rate-ms: 300
|
||||||
scale: 0
|
scale: 0
|
||||||
items:
|
items:
|
||||||
- label: NEW
|
- label: NEW
|
||||||
init: $mongoconnection
|
init: $mongoconnection
|
||||||
sample: db.getCollection('posts').find({status:'ACTIVE'}).itcount()
|
sample: db.getCollection('posts').find({status:'ACTIVE'}).itcount()
|
||||||
- label: TRIGGERED
|
- label: TRIGGERED
|
||||||
init: $mongoconnection
|
init: $mongoconnection
|
||||||
sample: db.getCollection('posts').find({status:'INACTIVE'}).itcount()
|
sample: db.getCollection('posts').find({status:'INACTIVE'}).itcount()
|
||||||
- label: IN_PROCESS
|
- label: IN_PROCESS
|
||||||
sample: echo 0
|
sample: echo 0
|
||||||
- label: FAILED
|
- label: FAILED
|
||||||
init: $mongoconnection
|
init: $mongoconnection
|
||||||
sample: db.getCollection('posts').find({status:'ACTIVE'}).itcount()
|
sample: db.getCollection('posts').find({status:'ACTIVE'}).itcount()
|
||||||
- label: FINISHED
|
- label: FINISHED
|
||||||
init: $mongoconnection
|
init: $mongoconnection
|
||||||
sample: db.getCollection('posts').find({status:'INACTIVE'}).itcount()
|
sample: db.getCollection('posts').find({status:'INACTIVE'}).itcount()
|
||||||
gauges:
|
gauges:
|
||||||
- title: YEAR PROGRESS
|
- title: YEAR PROGRESS
|
||||||
position: [[53, 8], [27, 2]]
|
position: [[53, 8], [27, 2]]
|
||||||
|
@ -80,11 +80,11 @@ gauges:
|
||||||
- title: MINUTE PROGRESS
|
- title: MINUTE PROGRESS
|
||||||
position: [[53, 14], [27, 2]]
|
position: [[53, 14], [27, 2]]
|
||||||
triggers:
|
triggers:
|
||||||
- title: CLOCK BELL EVERY MINUTE
|
- title: CLOCK BELL EVERY MINUTE
|
||||||
condition: '[ $label == "cur" ] && [ $cur -eq 0 ] && echo 1 || echo 0'
|
condition: '[ $label == "cur" ] && [ $cur -eq 0 ] && echo 1 || echo 0'
|
||||||
actions:
|
actions:
|
||||||
sound: true
|
sound: true
|
||||||
script: say -v samantha `date +%I:%M%p`
|
script: say -v samantha `date +%I:%M%p`
|
||||||
cur:
|
cur:
|
||||||
sample: date +%S
|
sample: date +%S
|
||||||
max:
|
max:
|
||||||
|
@ -92,30 +92,30 @@ gauges:
|
||||||
min:
|
min:
|
||||||
sample: echo 0
|
sample: echo 0
|
||||||
sparklines:
|
sparklines:
|
||||||
- title: CPU usage
|
- title: CPU usage
|
||||||
position: [[28, 22], [24, 7]]
|
position: [[28, 22], [24, 7]]
|
||||||
scale: 0
|
scale: 0
|
||||||
sample: ps -A -o %cpu | awk '{s+=$1} END {print s}'
|
sample: ps -A -o %cpu | awk '{s+=$1} END {print s}'
|
||||||
- title: Memory pages free
|
- title: Memory pages free
|
||||||
position: [[28, 17], [24, 5]]
|
position: [[28, 17], [24, 5]]
|
||||||
scale: 0
|
scale: 0
|
||||||
sample: memory_pressure | grep 'Pages free' | awk '{print $3}'
|
sample: memory_pressure | grep 'Pages free' | awk '{print $3}'
|
||||||
textboxes:
|
textboxes:
|
||||||
- title: Local weather
|
- title: Local weather
|
||||||
position: [[0, 30], [13, 7]]
|
position: [[0, 30], [13, 7]]
|
||||||
rate-ms: 10000
|
rate-ms: 10000
|
||||||
sample: curl wttr.in?0ATQF
|
sample: curl wttr.in?0ATQF
|
||||||
border: false
|
border: false
|
||||||
- title: New York weather
|
- title: New York weather
|
||||||
position: [[8, 30], [13, 7]]
|
position: [[8, 30], [13, 7]]
|
||||||
rate-ms: 10000
|
rate-ms: 10000
|
||||||
sample: curl wttr.in/newyork?0ATQF
|
sample: curl wttr.in/newyork?0ATQF
|
||||||
border: false
|
border: false
|
||||||
- title: San Francisco weather
|
- title: San Francisco weather
|
||||||
position: [[17, 30], [13, 7]]
|
position: [[17, 30], [13, 7]]
|
||||||
rate-ms: 10000
|
rate-ms: 10000
|
||||||
sample: curl wttr.in/sanfrancisco?0ATQF
|
sample: curl wttr.in/sanfrancisco?0ATQF
|
||||||
border: false
|
border: false
|
||||||
asciiboxes:
|
asciiboxes:
|
||||||
- title: LOCAL TIME
|
- title: LOCAL TIME
|
||||||
position: [[53, 17], [27, 5]]
|
position: [[53, 17], [27, 5]]
|
||||||
|
|
Loading…
Reference in New Issue