일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- phonegap
- JSON
- node.js
- PHP
- Google Map
- Android
- MySQL
- 전자정부프레임워크
- 가우스
- Spring
- Struts
- 선택적조인
- Eclipse
- jQuery
- iBATIS
- JDOM
- PLSQL
- tomcat
- dock
- Ajax
- ibsheet
- jsr 296
- WebLogic
- sencha touch
- GPS
- swingx
- oracle
- rowspan
- appspresso
- MFC
Archives
- Today
- Total
Where The Streets Have No Name
chart에서 임계치 이상 부분에서 다른 color적용 본문
<query>
index=main collection="CPU Load" | stats last(Value) AS CPU by _time| sort - _time
| eval 임계치=30
| eval Threshold_Color=case(CPU>=20,"Warning",true(), "Normal")
| xyseries _time Threshold_Color CPU
</query>
...
<option name="charting.fieldColors">{"Warning":0xFF0000,"Normal":0x53A051"}</option>