alerting-dashboard.json 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235
  1. {
  2. "__inputs": [
  3. {
  4. "name": "DS_GRAPHITE",
  5. "label": "graphite",
  6. "description": "",
  7. "type": "datasource",
  8. "pluginId": "graphite",
  9. "pluginName": "Graphite"
  10. }
  11. ],
  12. "__requires": [
  13. {
  14. "type": "panel",
  15. "id": "graph",
  16. "name": "Graph",
  17. "version": ""
  18. },
  19. {
  20. "type": "grafana",
  21. "id": "grafana",
  22. "name": "Grafana",
  23. "version": "3.1.0"
  24. },
  25. {
  26. "type": "datasource",
  27. "id": "graphite",
  28. "name": "Graphite",
  29. "version": "1.0.0"
  30. }
  31. ],
  32. "id": null,
  33. "title": "Dashboard with many alerts",
  34. "tags": [],
  35. "style": "dark",
  36. "timezone": "browser",
  37. "editable": true,
  38. "hideControls": false,
  39. "sharedCrosshair": false,
  40. "rows": [
  41. {
  42. "collapse": false,
  43. "editable": true,
  44. "height": "250px",
  45. "panels": [
  46. {
  47. "alert": {
  48. "conditions": [
  49. {
  50. "evaluator": {
  51. "params": [
  52. 30
  53. ],
  54. "type": "gt"
  55. },
  56. "query": {
  57. "params": [
  58. "A",
  59. "5m",
  60. "now"
  61. ]
  62. },
  63. "reducer": {
  64. "params": [],
  65. "type": "sum"
  66. },
  67. "type": "query"
  68. }
  69. ],
  70. "enabled": true,
  71. "frequency": "60s",
  72. "handler": 1,
  73. "name": "Critical alert panel",
  74. "notifications": [],
  75. "severity": "critical"
  76. },
  77. "alerting": {},
  78. "aliasColors": {},
  79. "bars": false,
  80. "datasource": "${DS_GRAPHITE}",
  81. "editable": true,
  82. "error": false,
  83. "fill": 1,
  84. "grid": {},
  85. "id": 1,
  86. "isNew": true,
  87. "legend": {
  88. "avg": false,
  89. "current": false,
  90. "max": false,
  91. "min": false,
  92. "show": true,
  93. "total": false,
  94. "values": false
  95. },
  96. "lines": true,
  97. "linewidth": 2,
  98. "links": [],
  99. "nullPointMode": "connected",
  100. "percentage": false,
  101. "pointradius": 5,
  102. "points": false,
  103. "renderer": "flot",
  104. "seriesOverrides": [],
  105. "span": 3,
  106. "stack": false,
  107. "steppedLine": false,
  108. "targets": [
  109. {
  110. "refId": "A",
  111. "target": "aliasByNode(statsd.fakesite.counters.session_start.*.count, 4)"
  112. }
  113. ],
  114. "thresholds": [
  115. {
  116. "colorMode": "critical",
  117. "fill": true,
  118. "fillColor": "rgba(234, 112, 112, 0.12)",
  119. "line": true,
  120. "lineColor": "rgba(237, 46, 24, 0.60)",
  121. "op": "gt",
  122. "value": 30
  123. }
  124. ],
  125. "timeFrom": null,
  126. "timeShift": null,
  127. "title": "Critical panel",
  128. "tooltip": {
  129. "msResolution": false,
  130. "shared": true,
  131. "sort": 0,
  132. "value_type": "cumulative"
  133. },
  134. "type": "graph",
  135. "xaxis": {
  136. "show": true
  137. },
  138. "yaxes": [
  139. {
  140. "format": "short",
  141. "label": null,
  142. "logBase": 1,
  143. "max": null,
  144. "min": null,
  145. "show": true
  146. },
  147. {
  148. "format": "short",
  149. "label": null,
  150. "logBase": 1,
  151. "max": null,
  152. "min": null,
  153. "show": true
  154. }
  155. ]
  156. },
  157. {
  158. "alert": {
  159. "conditions": [
  160. {
  161. "evaluator": {
  162. "params": [
  163. 30
  164. ],
  165. "type": "gt"
  166. },
  167. "query": {
  168. "params": [
  169. "A",
  170. "5m",
  171. "now"
  172. ]
  173. },
  174. "reducer": {
  175. "params": [],
  176. "type": "sum"
  177. },
  178. "type": "query"
  179. }
  180. ],
  181. "enabled": true,
  182. "frequency": "60s",
  183. "handler": 1,
  184. "name": "Critical alert panel",
  185. "notifications": [],
  186. "severity": "critical"
  187. },
  188. "alerting": {},
  189. "aliasColors": {},
  190. "bars": false,
  191. "datasource": "${DS_GRAPHITE}",
  192. "editable": true,
  193. "error": false,
  194. "fill": 1,
  195. "grid": {},
  196. "id": 5,
  197. "isNew": true,
  198. "legend": {
  199. "avg": false,
  200. "current": false,
  201. "max": false,
  202. "min": false,
  203. "show": true,
  204. "total": false,
  205. "values": false
  206. },
  207. "lines": true,
  208. "linewidth": 2,
  209. "links": [],
  210. "nullPointMode": "connected",
  211. "percentage": false,
  212. "pointradius": 5,
  213. "points": false,
  214. "renderer": "flot",
  215. "seriesOverrides": [],
  216. "span": 3,
  217. "stack": false,
  218. "steppedLine": false,
  219. "targets": [
  220. {
  221. "refId": "A",
  222. "target": "aliasByNode(statsd.fakesite.counters.session_start.*.count, 4)"
  223. }
  224. ],
  225. "thresholds": [
  226. {
  227. "colorMode": "critical",
  228. "fill": true,
  229. "fillColor": "rgba(234, 112, 112, 0.12)",
  230. "line": true,
  231. "lineColor": "rgba(237, 46, 24, 0.60)",
  232. "op": "gt",
  233. "value": 30
  234. }
  235. ],
  236. "timeFrom": null,
  237. "timeShift": null,
  238. "title": "Critical panel",
  239. "tooltip": {
  240. "msResolution": false,
  241. "shared": true,
  242. "sort": 0,
  243. "value_type": "cumulative"
  244. },
  245. "type": "graph",
  246. "xaxis": {
  247. "show": true
  248. },
  249. "yaxes": [
  250. {
  251. "format": "short",
  252. "label": null,
  253. "logBase": 1,
  254. "max": null,
  255. "min": null,
  256. "show": true
  257. },
  258. {
  259. "format": "short",
  260. "label": null,
  261. "logBase": 1,
  262. "max": null,
  263. "min": null,
  264. "show": true
  265. }
  266. ]
  267. },
  268. {
  269. "alert": {
  270. "conditions": [
  271. {
  272. "evaluator": {
  273. "params": [
  274. 30
  275. ],
  276. "type": "gt"
  277. },
  278. "query": {
  279. "params": [
  280. "A",
  281. "5m",
  282. "now"
  283. ]
  284. },
  285. "reducer": {
  286. "params": [],
  287. "type": "sum"
  288. },
  289. "type": "query"
  290. }
  291. ],
  292. "enabled": true,
  293. "frequency": "60s",
  294. "handler": 1,
  295. "name": "Critical alert panel",
  296. "notifications": [],
  297. "severity": "critical"
  298. },
  299. "alerting": {},
  300. "aliasColors": {},
  301. "bars": false,
  302. "datasource": "${DS_GRAPHITE}",
  303. "editable": true,
  304. "error": false,
  305. "fill": 1,
  306. "grid": {},
  307. "id": 6,
  308. "isNew": true,
  309. "legend": {
  310. "avg": false,
  311. "current": false,
  312. "max": false,
  313. "min": false,
  314. "show": true,
  315. "total": false,
  316. "values": false
  317. },
  318. "lines": true,
  319. "linewidth": 2,
  320. "links": [],
  321. "nullPointMode": "connected",
  322. "percentage": false,
  323. "pointradius": 5,
  324. "points": false,
  325. "renderer": "flot",
  326. "seriesOverrides": [],
  327. "span": 3,
  328. "stack": false,
  329. "steppedLine": false,
  330. "targets": [
  331. {
  332. "refId": "A",
  333. "target": "aliasByNode(statsd.fakesite.counters.session_start.*.count, 4)"
  334. }
  335. ],
  336. "thresholds": [
  337. {
  338. "colorMode": "critical",
  339. "fill": true,
  340. "fillColor": "rgba(234, 112, 112, 0.12)",
  341. "line": true,
  342. "lineColor": "rgba(237, 46, 24, 0.60)",
  343. "op": "gt",
  344. "value": 30
  345. }
  346. ],
  347. "timeFrom": null,
  348. "timeShift": null,
  349. "title": "Critical panel",
  350. "tooltip": {
  351. "msResolution": false,
  352. "shared": true,
  353. "sort": 0,
  354. "value_type": "cumulative"
  355. },
  356. "type": "graph",
  357. "xaxis": {
  358. "show": true
  359. },
  360. "yaxes": [
  361. {
  362. "format": "short",
  363. "label": null,
  364. "logBase": 1,
  365. "max": null,
  366. "min": null,
  367. "show": true
  368. },
  369. {
  370. "format": "short",
  371. "label": null,
  372. "logBase": 1,
  373. "max": null,
  374. "min": null,
  375. "show": true
  376. }
  377. ]
  378. },
  379. {
  380. "alert": {
  381. "conditions": [
  382. {
  383. "evaluator": {
  384. "params": [
  385. 30
  386. ],
  387. "type": "gt"
  388. },
  389. "query": {
  390. "params": [
  391. "A",
  392. "5m",
  393. "now"
  394. ]
  395. },
  396. "reducer": {
  397. "params": [],
  398. "type": "sum"
  399. },
  400. "type": "query"
  401. }
  402. ],
  403. "enabled": true,
  404. "frequency": "60s",
  405. "handler": 1,
  406. "name": "Critical alert panel",
  407. "notifications": [],
  408. "severity": "critical"
  409. },
  410. "alerting": {},
  411. "aliasColors": {},
  412. "bars": false,
  413. "datasource": "${DS_GRAPHITE}",
  414. "editable": true,
  415. "error": false,
  416. "fill": 1,
  417. "grid": {},
  418. "id": 8,
  419. "isNew": true,
  420. "legend": {
  421. "avg": false,
  422. "current": false,
  423. "max": false,
  424. "min": false,
  425. "show": true,
  426. "total": false,
  427. "values": false
  428. },
  429. "lines": true,
  430. "linewidth": 2,
  431. "links": [],
  432. "nullPointMode": "connected",
  433. "percentage": false,
  434. "pointradius": 5,
  435. "points": false,
  436. "renderer": "flot",
  437. "seriesOverrides": [],
  438. "span": 3,
  439. "stack": false,
  440. "steppedLine": false,
  441. "targets": [
  442. {
  443. "refId": "A",
  444. "target": "aliasByNode(statsd.fakesite.counters.session_start.*.count, 4)"
  445. }
  446. ],
  447. "thresholds": [
  448. {
  449. "colorMode": "critical",
  450. "fill": true,
  451. "fillColor": "rgba(234, 112, 112, 0.12)",
  452. "line": true,
  453. "lineColor": "rgba(237, 46, 24, 0.60)",
  454. "op": "gt",
  455. "value": 30
  456. }
  457. ],
  458. "timeFrom": null,
  459. "timeShift": null,
  460. "title": "Critical panel",
  461. "tooltip": {
  462. "msResolution": false,
  463. "shared": true,
  464. "sort": 0,
  465. "value_type": "cumulative"
  466. },
  467. "type": "graph",
  468. "xaxis": {
  469. "show": true
  470. },
  471. "yaxes": [
  472. {
  473. "format": "short",
  474. "label": null,
  475. "logBase": 1,
  476. "max": null,
  477. "min": null,
  478. "show": true
  479. },
  480. {
  481. "format": "short",
  482. "label": null,
  483. "logBase": 1,
  484. "max": null,
  485. "min": null,
  486. "show": true
  487. }
  488. ]
  489. }
  490. ],
  491. "title": "Row"
  492. },
  493. {
  494. "collapse": false,
  495. "editable": true,
  496. "height": "250px",
  497. "panels": [
  498. {
  499. "alert": {
  500. "conditions": [
  501. {
  502. "evaluator": {
  503. "params": [
  504. 20
  505. ],
  506. "type": "gt"
  507. },
  508. "query": {
  509. "params": [
  510. "A",
  511. "5m",
  512. "now"
  513. ]
  514. },
  515. "reducer": {
  516. "params": [],
  517. "type": "avg"
  518. },
  519. "type": "query"
  520. }
  521. ],
  522. "enabled": true,
  523. "frequency": "60s",
  524. "handler": 1,
  525. "name": "Warning panel alert",
  526. "notifications": [],
  527. "severity": "warning"
  528. },
  529. "alerting": {},
  530. "aliasColors": {},
  531. "bars": false,
  532. "datasource": "${DS_GRAPHITE}",
  533. "editable": true,
  534. "error": false,
  535. "fill": 1,
  536. "id": 2,
  537. "isNew": true,
  538. "legend": {
  539. "avg": false,
  540. "current": false,
  541. "max": false,
  542. "min": false,
  543. "show": true,
  544. "total": false,
  545. "values": false
  546. },
  547. "lines": true,
  548. "linewidth": 2,
  549. "links": [],
  550. "nullPointMode": "connected",
  551. "percentage": false,
  552. "pointradius": 5,
  553. "points": false,
  554. "renderer": "flot",
  555. "seriesOverrides": [],
  556. "span": 3,
  557. "stack": false,
  558. "steppedLine": false,
  559. "targets": [
  560. {
  561. "refId": "A",
  562. "target": "aliasByNode(statsd.fakesite.counters.session_start.*.count, 4)"
  563. }
  564. ],
  565. "thresholds": [
  566. {
  567. "colorMode": "warning",
  568. "fill": true,
  569. "fillColor": "rgba(235, 138, 14, 0.12)",
  570. "line": true,
  571. "lineColor": "rgba(247, 149, 32, 0.60)",
  572. "op": "gt",
  573. "value": 20
  574. }
  575. ],
  576. "timeFrom": null,
  577. "timeShift": null,
  578. "title": "Warning panel",
  579. "tooltip": {
  580. "msResolution": false,
  581. "shared": true,
  582. "sort": 0,
  583. "value_type": "cumulative"
  584. },
  585. "type": "graph",
  586. "xaxis": {
  587. "show": true
  588. },
  589. "yaxes": [
  590. {
  591. "format": "short",
  592. "label": null,
  593. "logBase": 1,
  594. "max": null,
  595. "min": null,
  596. "show": true
  597. },
  598. {
  599. "format": "short",
  600. "label": null,
  601. "logBase": 1,
  602. "max": null,
  603. "min": null,
  604. "show": true
  605. }
  606. ]
  607. },
  608. {
  609. "alert": {
  610. "conditions": [
  611. {
  612. "evaluator": {
  613. "params": [
  614. 20
  615. ],
  616. "type": "gt"
  617. },
  618. "query": {
  619. "params": [
  620. "A",
  621. "5m",
  622. "now"
  623. ]
  624. },
  625. "reducer": {
  626. "params": [],
  627. "type": "avg"
  628. },
  629. "type": "query"
  630. }
  631. ],
  632. "enabled": true,
  633. "frequency": "60s",
  634. "handler": 1,
  635. "name": "Warning panel alert",
  636. "notifications": [],
  637. "severity": "warning"
  638. },
  639. "alerting": {},
  640. "aliasColors": {},
  641. "bars": false,
  642. "datasource": "${DS_GRAPHITE}",
  643. "editable": true,
  644. "error": false,
  645. "fill": 1,
  646. "id": 3,
  647. "isNew": true,
  648. "legend": {
  649. "avg": false,
  650. "current": false,
  651. "max": false,
  652. "min": false,
  653. "show": true,
  654. "total": false,
  655. "values": false
  656. },
  657. "lines": true,
  658. "linewidth": 2,
  659. "links": [],
  660. "nullPointMode": "connected",
  661. "percentage": false,
  662. "pointradius": 5,
  663. "points": false,
  664. "renderer": "flot",
  665. "seriesOverrides": [],
  666. "span": 3,
  667. "stack": false,
  668. "steppedLine": false,
  669. "targets": [
  670. {
  671. "refId": "A",
  672. "target": "aliasByNode(statsd.fakesite.counters.session_start.*.count, 4)"
  673. }
  674. ],
  675. "thresholds": [
  676. {
  677. "colorMode": "warning",
  678. "fill": true,
  679. "fillColor": "rgba(235, 138, 14, 0.12)",
  680. "line": true,
  681. "lineColor": "rgba(247, 149, 32, 0.60)",
  682. "op": "gt",
  683. "value": 20
  684. }
  685. ],
  686. "timeFrom": null,
  687. "timeShift": null,
  688. "title": "Warning panel",
  689. "tooltip": {
  690. "msResolution": false,
  691. "shared": true,
  692. "sort": 0,
  693. "value_type": "cumulative"
  694. },
  695. "type": "graph",
  696. "xaxis": {
  697. "show": true
  698. },
  699. "yaxes": [
  700. {
  701. "format": "short",
  702. "label": null,
  703. "logBase": 1,
  704. "max": null,
  705. "min": null,
  706. "show": true
  707. },
  708. {
  709. "format": "short",
  710. "label": null,
  711. "logBase": 1,
  712. "max": null,
  713. "min": null,
  714. "show": true
  715. }
  716. ]
  717. },
  718. {
  719. "alert": {
  720. "conditions": [
  721. {
  722. "evaluator": {
  723. "params": [
  724. 20
  725. ],
  726. "type": "gt"
  727. },
  728. "query": {
  729. "params": [
  730. "A",
  731. "5m",
  732. "now"
  733. ]
  734. },
  735. "reducer": {
  736. "params": [],
  737. "type": "avg"
  738. },
  739. "type": "query"
  740. }
  741. ],
  742. "enabled": true,
  743. "frequency": "60s",
  744. "handler": 1,
  745. "name": "Warning panel alert",
  746. "notifications": [],
  747. "severity": "warning"
  748. },
  749. "alerting": {},
  750. "aliasColors": {},
  751. "bars": false,
  752. "datasource": "${DS_GRAPHITE}",
  753. "editable": true,
  754. "error": false,
  755. "fill": 1,
  756. "id": 4,
  757. "isNew": true,
  758. "legend": {
  759. "avg": false,
  760. "current": false,
  761. "max": false,
  762. "min": false,
  763. "show": true,
  764. "total": false,
  765. "values": false
  766. },
  767. "lines": true,
  768. "linewidth": 2,
  769. "links": [],
  770. "nullPointMode": "connected",
  771. "percentage": false,
  772. "pointradius": 5,
  773. "points": false,
  774. "renderer": "flot",
  775. "seriesOverrides": [],
  776. "span": 3,
  777. "stack": false,
  778. "steppedLine": false,
  779. "targets": [
  780. {
  781. "refId": "A",
  782. "target": "aliasByNode(statsd.fakesite.counters.session_start.*.count, 4)"
  783. }
  784. ],
  785. "thresholds": [
  786. {
  787. "colorMode": "warning",
  788. "fill": true,
  789. "fillColor": "rgba(235, 138, 14, 0.12)",
  790. "line": true,
  791. "lineColor": "rgba(247, 149, 32, 0.60)",
  792. "op": "gt",
  793. "value": 20
  794. }
  795. ],
  796. "timeFrom": null,
  797. "timeShift": null,
  798. "title": "Warning panel",
  799. "tooltip": {
  800. "msResolution": false,
  801. "shared": true,
  802. "sort": 0,
  803. "value_type": "cumulative"
  804. },
  805. "type": "graph",
  806. "xaxis": {
  807. "show": true
  808. },
  809. "yaxes": [
  810. {
  811. "format": "short",
  812. "label": null,
  813. "logBase": 1,
  814. "max": null,
  815. "min": null,
  816. "show": true
  817. },
  818. {
  819. "format": "short",
  820. "label": null,
  821. "logBase": 1,
  822. "max": null,
  823. "min": null,
  824. "show": true
  825. }
  826. ]
  827. },
  828. {
  829. "alert": {
  830. "conditions": [
  831. {
  832. "evaluator": {
  833. "params": [
  834. 20
  835. ],
  836. "type": "gt"
  837. },
  838. "query": {
  839. "params": [
  840. "A",
  841. "5m",
  842. "now"
  843. ]
  844. },
  845. "reducer": {
  846. "params": [],
  847. "type": "avg"
  848. },
  849. "type": "query"
  850. }
  851. ],
  852. "enabled": true,
  853. "frequency": "60s",
  854. "handler": 1,
  855. "name": "Warning panel alert",
  856. "notifications": [],
  857. "severity": "warning"
  858. },
  859. "alerting": {},
  860. "aliasColors": {},
  861. "bars": false,
  862. "datasource": "${DS_GRAPHITE}",
  863. "editable": true,
  864. "error": false,
  865. "fill": 1,
  866. "id": 7,
  867. "isNew": true,
  868. "legend": {
  869. "avg": false,
  870. "current": false,
  871. "max": false,
  872. "min": false,
  873. "show": true,
  874. "total": false,
  875. "values": false
  876. },
  877. "lines": true,
  878. "linewidth": 2,
  879. "links": [],
  880. "nullPointMode": "connected",
  881. "percentage": false,
  882. "pointradius": 5,
  883. "points": false,
  884. "renderer": "flot",
  885. "seriesOverrides": [],
  886. "span": 3,
  887. "stack": false,
  888. "steppedLine": false,
  889. "targets": [
  890. {
  891. "refId": "A",
  892. "target": "aliasByNode(statsd.fakesite.counters.session_start.*.count, 4)"
  893. }
  894. ],
  895. "thresholds": [
  896. {
  897. "colorMode": "warning",
  898. "fill": true,
  899. "fillColor": "rgba(235, 138, 14, 0.12)",
  900. "line": true,
  901. "lineColor": "rgba(247, 149, 32, 0.60)",
  902. "op": "gt",
  903. "value": 20
  904. }
  905. ],
  906. "timeFrom": null,
  907. "timeShift": null,
  908. "title": "Warning panel",
  909. "tooltip": {
  910. "msResolution": false,
  911. "shared": true,
  912. "sort": 0,
  913. "value_type": "cumulative"
  914. },
  915. "type": "graph",
  916. "xaxis": {
  917. "show": true
  918. },
  919. "yaxes": [
  920. {
  921. "format": "short",
  922. "label": null,
  923. "logBase": 1,
  924. "max": null,
  925. "min": null,
  926. "show": true
  927. },
  928. {
  929. "format": "short",
  930. "label": null,
  931. "logBase": 1,
  932. "max": null,
  933. "min": null,
  934. "show": true
  935. }
  936. ]
  937. }
  938. ],
  939. "title": "New row"
  940. },
  941. {
  942. "collapse": false,
  943. "editable": true,
  944. "height": "250px",
  945. "panels": [
  946. {
  947. "alert": {
  948. "conditions": [
  949. {
  950. "evaluator": {
  951. "params": [
  952. 50
  953. ],
  954. "type": "gt"
  955. },
  956. "query": {
  957. "params": [
  958. "A",
  959. "5m",
  960. "now"
  961. ]
  962. },
  963. "reducer": {
  964. "params": [],
  965. "type": "avg"
  966. },
  967. "type": "query"
  968. }
  969. ],
  970. "enabled": true,
  971. "frequency": "10s",
  972. "handler": 1,
  973. "name": "Fast Critical panel alert",
  974. "notifications": [],
  975. "severity": "critical"
  976. },
  977. "alerting": {},
  978. "aliasColors": {},
  979. "bars": false,
  980. "datasource": "${DS_GRAPHITE}",
  981. "editable": true,
  982. "error": false,
  983. "fill": 1,
  984. "id": 9,
  985. "isNew": true,
  986. "legend": {
  987. "avg": false,
  988. "current": false,
  989. "max": false,
  990. "min": false,
  991. "show": true,
  992. "total": false,
  993. "values": false
  994. },
  995. "lines": true,
  996. "linewidth": 2,
  997. "links": [],
  998. "nullPointMode": "connected",
  999. "percentage": false,
  1000. "pointradius": 5,
  1001. "points": false,
  1002. "renderer": "flot",
  1003. "seriesOverrides": [],
  1004. "span": 3,
  1005. "stack": false,
  1006. "steppedLine": false,
  1007. "targets": [
  1008. {
  1009. "refId": "A",
  1010. "target": "aliasByNode(statsd.fakesite.counters.session_start.*.count, 4)"
  1011. }
  1012. ],
  1013. "thresholds": [
  1014. {
  1015. "colorMode": "critical",
  1016. "fill": true,
  1017. "fillColor": "rgba(234, 112, 112, 0.12)",
  1018. "line": true,
  1019. "lineColor": "rgba(237, 46, 24, 0.60)",
  1020. "op": "gt",
  1021. "value": 50
  1022. }
  1023. ],
  1024. "timeFrom": null,
  1025. "timeShift": null,
  1026. "title": "Fast Critical panel",
  1027. "tooltip": {
  1028. "msResolution": false,
  1029. "shared": true,
  1030. "sort": 0,
  1031. "value_type": "cumulative"
  1032. },
  1033. "type": "graph",
  1034. "xaxis": {
  1035. "show": true
  1036. },
  1037. "yaxes": [
  1038. {
  1039. "format": "short",
  1040. "label": null,
  1041. "logBase": 1,
  1042. "max": null,
  1043. "min": null,
  1044. "show": true
  1045. },
  1046. {
  1047. "format": "short",
  1048. "label": null,
  1049. "logBase": 1,
  1050. "max": null,
  1051. "min": null,
  1052. "show": true
  1053. }
  1054. ]
  1055. },
  1056. {
  1057. "alert": {
  1058. "conditions": [
  1059. {
  1060. "evaluator": {
  1061. "params": [
  1062. 50
  1063. ],
  1064. "type": "gt"
  1065. },
  1066. "query": {
  1067. "params": [
  1068. "A",
  1069. "5m",
  1070. "now"
  1071. ]
  1072. },
  1073. "reducer": {
  1074. "params": [],
  1075. "type": "avg"
  1076. },
  1077. "type": "query"
  1078. }
  1079. ],
  1080. "enabled": true,
  1081. "frequency": "10s",
  1082. "handler": 1,
  1083. "name": "Fast Critical panel alert",
  1084. "notifications": [],
  1085. "severity": "critical"
  1086. },
  1087. "alerting": {},
  1088. "aliasColors": {},
  1089. "bars": false,
  1090. "datasource": "${DS_GRAPHITE}",
  1091. "editable": true,
  1092. "error": false,
  1093. "fill": 1,
  1094. "id": 10,
  1095. "isNew": true,
  1096. "legend": {
  1097. "avg": false,
  1098. "current": false,
  1099. "max": false,
  1100. "min": false,
  1101. "show": true,
  1102. "total": false,
  1103. "values": false
  1104. },
  1105. "lines": true,
  1106. "linewidth": 2,
  1107. "links": [],
  1108. "nullPointMode": "connected",
  1109. "percentage": false,
  1110. "pointradius": 5,
  1111. "points": false,
  1112. "renderer": "flot",
  1113. "seriesOverrides": [],
  1114. "span": 3,
  1115. "stack": false,
  1116. "steppedLine": false,
  1117. "targets": [
  1118. {
  1119. "refId": "A",
  1120. "target": "aliasByNode(statsd.fakesite.counters.session_start.*.count, 4)"
  1121. }
  1122. ],
  1123. "thresholds": [
  1124. {
  1125. "colorMode": "critical",
  1126. "fill": true,
  1127. "fillColor": "rgba(234, 112, 112, 0.12)",
  1128. "line": true,
  1129. "lineColor": "rgba(237, 46, 24, 0.60)",
  1130. "op": "gt",
  1131. "value": 50
  1132. }
  1133. ],
  1134. "timeFrom": null,
  1135. "timeShift": null,
  1136. "title": "Fast Critical panel",
  1137. "tooltip": {
  1138. "msResolution": false,
  1139. "shared": true,
  1140. "sort": 0,
  1141. "value_type": "cumulative"
  1142. },
  1143. "type": "graph",
  1144. "xaxis": {
  1145. "show": true
  1146. },
  1147. "yaxes": [
  1148. {
  1149. "format": "short",
  1150. "label": null,
  1151. "logBase": 1,
  1152. "max": null,
  1153. "min": null,
  1154. "show": true
  1155. },
  1156. {
  1157. "format": "short",
  1158. "label": null,
  1159. "logBase": 1,
  1160. "max": null,
  1161. "min": null,
  1162. "show": true
  1163. }
  1164. ]
  1165. },
  1166. {
  1167. "alert": {
  1168. "conditions": [
  1169. {
  1170. "evaluator": {
  1171. "params": [
  1172. 50
  1173. ],
  1174. "type": "gt"
  1175. },
  1176. "query": {
  1177. "params": [
  1178. "A",
  1179. "5m",
  1180. "now"
  1181. ]
  1182. },
  1183. "reducer": {
  1184. "params": [],
  1185. "type": "avg"
  1186. },
  1187. "type": "query"
  1188. }
  1189. ],
  1190. "enabled": true,
  1191. "frequency": "10s",
  1192. "handler": 1,
  1193. "name": "Fast Critical panel alert",
  1194. "notifications": [],
  1195. "severity": "critical"
  1196. },
  1197. "alerting": {},
  1198. "aliasColors": {},
  1199. "bars": false,
  1200. "datasource": "${DS_GRAPHITE}",
  1201. "editable": true,
  1202. "error": false,
  1203. "fill": 1,
  1204. "id": 11,
  1205. "isNew": true,
  1206. "legend": {
  1207. "avg": false,
  1208. "current": false,
  1209. "max": false,
  1210. "min": false,
  1211. "show": true,
  1212. "total": false,
  1213. "values": false
  1214. },
  1215. "lines": true,
  1216. "linewidth": 2,
  1217. "links": [],
  1218. "nullPointMode": "connected",
  1219. "percentage": false,
  1220. "pointradius": 5,
  1221. "points": false,
  1222. "renderer": "flot",
  1223. "seriesOverrides": [],
  1224. "span": 3,
  1225. "stack": false,
  1226. "steppedLine": false,
  1227. "targets": [
  1228. {
  1229. "refId": "A",
  1230. "target": "aliasByNode(statsd.fakesite.counters.session_start.*.count, 4)"
  1231. }
  1232. ],
  1233. "thresholds": [
  1234. {
  1235. "colorMode": "critical",
  1236. "fill": true,
  1237. "fillColor": "rgba(234, 112, 112, 0.12)",
  1238. "line": true,
  1239. "lineColor": "rgba(237, 46, 24, 0.60)",
  1240. "op": "gt",
  1241. "value": 50
  1242. }
  1243. ],
  1244. "timeFrom": null,
  1245. "timeShift": null,
  1246. "title": "Fast Critical panel",
  1247. "tooltip": {
  1248. "msResolution": false,
  1249. "shared": true,
  1250. "sort": 0,
  1251. "value_type": "cumulative"
  1252. },
  1253. "type": "graph",
  1254. "xaxis": {
  1255. "show": true
  1256. },
  1257. "yaxes": [
  1258. {
  1259. "format": "short",
  1260. "label": null,
  1261. "logBase": 1,
  1262. "max": null,
  1263. "min": null,
  1264. "show": true
  1265. },
  1266. {
  1267. "format": "short",
  1268. "label": null,
  1269. "logBase": 1,
  1270. "max": null,
  1271. "min": null,
  1272. "show": true
  1273. }
  1274. ]
  1275. },
  1276. {
  1277. "alert": {
  1278. "conditions": [
  1279. {
  1280. "evaluator": {
  1281. "params": [
  1282. 50
  1283. ],
  1284. "type": "gt"
  1285. },
  1286. "query": {
  1287. "params": [
  1288. "A",
  1289. "5m",
  1290. "now"
  1291. ]
  1292. },
  1293. "reducer": {
  1294. "params": [],
  1295. "type": "avg"
  1296. },
  1297. "type": "query"
  1298. }
  1299. ],
  1300. "enabled": true,
  1301. "frequency": "10s",
  1302. "handler": 1,
  1303. "name": "Fast Critical panel alert",
  1304. "notifications": [],
  1305. "severity": "critical"
  1306. },
  1307. "alerting": {},
  1308. "aliasColors": {},
  1309. "bars": false,
  1310. "datasource": "${DS_GRAPHITE}",
  1311. "editable": true,
  1312. "error": false,
  1313. "fill": 1,
  1314. "id": 12,
  1315. "isNew": true,
  1316. "legend": {
  1317. "avg": false,
  1318. "current": false,
  1319. "max": false,
  1320. "min": false,
  1321. "show": true,
  1322. "total": false,
  1323. "values": false
  1324. },
  1325. "lines": true,
  1326. "linewidth": 2,
  1327. "links": [],
  1328. "nullPointMode": "connected",
  1329. "percentage": false,
  1330. "pointradius": 5,
  1331. "points": false,
  1332. "renderer": "flot",
  1333. "seriesOverrides": [],
  1334. "span": 3,
  1335. "stack": false,
  1336. "steppedLine": false,
  1337. "targets": [
  1338. {
  1339. "refId": "A",
  1340. "target": "aliasByNode(statsd.fakesite.counters.session_start.*.count, 4)"
  1341. }
  1342. ],
  1343. "thresholds": [
  1344. {
  1345. "colorMode": "critical",
  1346. "fill": true,
  1347. "fillColor": "rgba(234, 112, 112, 0.12)",
  1348. "line": true,
  1349. "lineColor": "rgba(237, 46, 24, 0.60)",
  1350. "op": "gt",
  1351. "value": 50
  1352. }
  1353. ],
  1354. "timeFrom": null,
  1355. "timeShift": null,
  1356. "title": "Fast Critical panel",
  1357. "tooltip": {
  1358. "msResolution": false,
  1359. "shared": true,
  1360. "sort": 0,
  1361. "value_type": "cumulative"
  1362. },
  1363. "type": "graph",
  1364. "xaxis": {
  1365. "show": true
  1366. },
  1367. "yaxes": [
  1368. {
  1369. "format": "short",
  1370. "label": null,
  1371. "logBase": 1,
  1372. "max": null,
  1373. "min": null,
  1374. "show": true
  1375. },
  1376. {
  1377. "format": "short",
  1378. "label": null,
  1379. "logBase": 1,
  1380. "max": null,
  1381. "min": null,
  1382. "show": true
  1383. }
  1384. ]
  1385. }
  1386. ],
  1387. "title": "New row"
  1388. },
  1389. {
  1390. "collapse": false,
  1391. "editable": true,
  1392. "height": "250px",
  1393. "panels": [
  1394. {
  1395. "alert": {
  1396. "enabled": true,
  1397. "conditions": [
  1398. {
  1399. "type": "query",
  1400. "query": {
  1401. "params": [
  1402. "A",
  1403. "5m",
  1404. "now"
  1405. ]
  1406. },
  1407. "reducer": {
  1408. "type": "avg",
  1409. "params": []
  1410. },
  1411. "evaluator": {
  1412. "type": "gt",
  1413. "params": [
  1414. 10
  1415. ]
  1416. }
  1417. }
  1418. ],
  1419. "severity": "warning",
  1420. "frequency": "1s",
  1421. "handler": 1,
  1422. "notifications": [],
  1423. "name": "Fast Warning panel alert"
  1424. },
  1425. "alerting": {},
  1426. "aliasColors": {},
  1427. "bars": false,
  1428. "datasource": "${DS_GRAPHITE}",
  1429. "editable": true,
  1430. "error": false,
  1431. "fill": 1,
  1432. "id": 13,
  1433. "isNew": true,
  1434. "legend": {
  1435. "avg": false,
  1436. "current": false,
  1437. "max": false,
  1438. "min": false,
  1439. "show": true,
  1440. "total": false,
  1441. "values": false
  1442. },
  1443. "lines": true,
  1444. "linewidth": 2,
  1445. "links": [],
  1446. "nullPointMode": "connected",
  1447. "percentage": false,
  1448. "pointradius": 5,
  1449. "points": false,
  1450. "renderer": "flot",
  1451. "seriesOverrides": [],
  1452. "span": 3,
  1453. "stack": false,
  1454. "steppedLine": false,
  1455. "targets": [
  1456. {
  1457. "refId": "A",
  1458. "target": "aliasByNode(statsd.fakesite.counters.session_start.*.count, 4)"
  1459. }
  1460. ],
  1461. "thresholds": [
  1462. {
  1463. "value": 10,
  1464. "op": "gt",
  1465. "fill": true,
  1466. "line": true,
  1467. "colorMode": "warning",
  1468. "fillColor": "rgba(235, 138, 14, 0.12)",
  1469. "lineColor": "rgba(247, 149, 32, 0.60)"
  1470. }
  1471. ],
  1472. "timeFrom": null,
  1473. "timeShift": null,
  1474. "title": "Fast Warning panel",
  1475. "tooltip": {
  1476. "msResolution": false,
  1477. "shared": true,
  1478. "sort": 0,
  1479. "value_type": "cumulative"
  1480. },
  1481. "type": "graph",
  1482. "xaxis": {
  1483. "show": true
  1484. },
  1485. "yaxes": [
  1486. {
  1487. "format": "short",
  1488. "label": null,
  1489. "logBase": 1,
  1490. "max": null,
  1491. "min": null,
  1492. "show": true
  1493. },
  1494. {
  1495. "format": "short",
  1496. "label": null,
  1497. "logBase": 1,
  1498. "max": null,
  1499. "min": null,
  1500. "show": true
  1501. }
  1502. ]
  1503. },
  1504. {
  1505. "alert": {
  1506. "enabled": true,
  1507. "conditions": [
  1508. {
  1509. "type": "query",
  1510. "query": {
  1511. "params": [
  1512. "A",
  1513. "5m",
  1514. "now"
  1515. ]
  1516. },
  1517. "reducer": {
  1518. "type": "avg",
  1519. "params": []
  1520. },
  1521. "evaluator": {
  1522. "type": "gt",
  1523. "params": [
  1524. 10
  1525. ]
  1526. }
  1527. }
  1528. ],
  1529. "severity": "warning",
  1530. "frequency": "1s",
  1531. "handler": 1,
  1532. "notifications": [],
  1533. "name": "Fast Warning panel alert"
  1534. },
  1535. "alerting": {},
  1536. "aliasColors": {},
  1537. "bars": false,
  1538. "datasource": "${DS_GRAPHITE}",
  1539. "editable": true,
  1540. "error": false,
  1541. "fill": 1,
  1542. "id": 14,
  1543. "isNew": true,
  1544. "legend": {
  1545. "avg": false,
  1546. "current": false,
  1547. "max": false,
  1548. "min": false,
  1549. "show": true,
  1550. "total": false,
  1551. "values": false
  1552. },
  1553. "lines": true,
  1554. "linewidth": 2,
  1555. "links": [],
  1556. "nullPointMode": "connected",
  1557. "percentage": false,
  1558. "pointradius": 5,
  1559. "points": false,
  1560. "renderer": "flot",
  1561. "seriesOverrides": [],
  1562. "span": 3,
  1563. "stack": false,
  1564. "steppedLine": false,
  1565. "targets": [
  1566. {
  1567. "refId": "A",
  1568. "target": "aliasByNode(statsd.fakesite.counters.session_start.*.count, 4)"
  1569. }
  1570. ],
  1571. "thresholds": [
  1572. {
  1573. "value": 10,
  1574. "op": "gt",
  1575. "fill": true,
  1576. "line": true,
  1577. "colorMode": "warning",
  1578. "fillColor": "rgba(235, 138, 14, 0.12)",
  1579. "lineColor": "rgba(247, 149, 32, 0.60)"
  1580. }
  1581. ],
  1582. "timeFrom": null,
  1583. "timeShift": null,
  1584. "title": "Fast Warning panel",
  1585. "tooltip": {
  1586. "msResolution": false,
  1587. "shared": true,
  1588. "sort": 0,
  1589. "value_type": "cumulative"
  1590. },
  1591. "type": "graph",
  1592. "xaxis": {
  1593. "show": true
  1594. },
  1595. "yaxes": [
  1596. {
  1597. "format": "short",
  1598. "label": null,
  1599. "logBase": 1,
  1600. "max": null,
  1601. "min": null,
  1602. "show": true
  1603. },
  1604. {
  1605. "format": "short",
  1606. "label": null,
  1607. "logBase": 1,
  1608. "max": null,
  1609. "min": null,
  1610. "show": true
  1611. }
  1612. ]
  1613. },
  1614. {
  1615. "alert": {
  1616. "enabled": true,
  1617. "conditions": [
  1618. {
  1619. "type": "query",
  1620. "query": {
  1621. "params": [
  1622. "A",
  1623. "5m",
  1624. "now"
  1625. ]
  1626. },
  1627. "reducer": {
  1628. "type": "avg",
  1629. "params": []
  1630. },
  1631. "evaluator": {
  1632. "type": "gt",
  1633. "params": [
  1634. 10
  1635. ]
  1636. }
  1637. }
  1638. ],
  1639. "severity": "warning",
  1640. "frequency": "1s",
  1641. "handler": 1,
  1642. "notifications": [],
  1643. "name": "Fast Warning panel alert"
  1644. },
  1645. "alerting": {},
  1646. "aliasColors": {},
  1647. "bars": false,
  1648. "datasource": "${DS_GRAPHITE}",
  1649. "editable": true,
  1650. "error": false,
  1651. "fill": 1,
  1652. "id": 15,
  1653. "isNew": true,
  1654. "legend": {
  1655. "avg": false,
  1656. "current": false,
  1657. "max": false,
  1658. "min": false,
  1659. "show": true,
  1660. "total": false,
  1661. "values": false
  1662. },
  1663. "lines": true,
  1664. "linewidth": 2,
  1665. "links": [],
  1666. "nullPointMode": "connected",
  1667. "percentage": false,
  1668. "pointradius": 5,
  1669. "points": false,
  1670. "renderer": "flot",
  1671. "seriesOverrides": [],
  1672. "span": 3,
  1673. "stack": false,
  1674. "steppedLine": false,
  1675. "targets": [
  1676. {
  1677. "refId": "A",
  1678. "target": "aliasByNode(statsd.fakesite.counters.session_start.*.count, 4)"
  1679. }
  1680. ],
  1681. "thresholds": [
  1682. {
  1683. "value": 10,
  1684. "op": "gt",
  1685. "fill": true,
  1686. "line": true,
  1687. "colorMode": "warning",
  1688. "fillColor": "rgba(235, 138, 14, 0.12)",
  1689. "lineColor": "rgba(247, 149, 32, 0.60)"
  1690. }
  1691. ],
  1692. "timeFrom": null,
  1693. "timeShift": null,
  1694. "title": "Fast Warning panel",
  1695. "tooltip": {
  1696. "msResolution": false,
  1697. "shared": true,
  1698. "sort": 0,
  1699. "value_type": "cumulative"
  1700. },
  1701. "type": "graph",
  1702. "xaxis": {
  1703. "show": true
  1704. },
  1705. "yaxes": [
  1706. {
  1707. "format": "short",
  1708. "label": null,
  1709. "logBase": 1,
  1710. "max": null,
  1711. "min": null,
  1712. "show": true
  1713. },
  1714. {
  1715. "format": "short",
  1716. "label": null,
  1717. "logBase": 1,
  1718. "max": null,
  1719. "min": null,
  1720. "show": true
  1721. }
  1722. ]
  1723. },
  1724. {
  1725. "alert": {
  1726. "enabled": true,
  1727. "conditions": [
  1728. {
  1729. "type": "query",
  1730. "query": {
  1731. "params": [
  1732. "A",
  1733. "5m",
  1734. "now"
  1735. ]
  1736. },
  1737. "reducer": {
  1738. "type": "avg",
  1739. "params": []
  1740. },
  1741. "evaluator": {
  1742. "type": "gt",
  1743. "params": [
  1744. 10
  1745. ]
  1746. }
  1747. }
  1748. ],
  1749. "severity": "warning",
  1750. "frequency": "1s",
  1751. "handler": 1,
  1752. "notifications": [],
  1753. "name": "Fast Warning panel alert"
  1754. },
  1755. "alerting": {},
  1756. "aliasColors": {},
  1757. "bars": false,
  1758. "datasource": "${DS_GRAPHITE}",
  1759. "editable": true,
  1760. "error": false,
  1761. "fill": 1,
  1762. "id": 16,
  1763. "isNew": true,
  1764. "legend": {
  1765. "avg": false,
  1766. "current": false,
  1767. "max": false,
  1768. "min": false,
  1769. "show": true,
  1770. "total": false,
  1771. "values": false
  1772. },
  1773. "lines": true,
  1774. "linewidth": 2,
  1775. "links": [],
  1776. "nullPointMode": "connected",
  1777. "percentage": false,
  1778. "pointradius": 5,
  1779. "points": false,
  1780. "renderer": "flot",
  1781. "seriesOverrides": [],
  1782. "span": 3,
  1783. "stack": false,
  1784. "steppedLine": false,
  1785. "targets": [
  1786. {
  1787. "refId": "A",
  1788. "target": "aliasByNode(statsd.fakesite.counters.session_start.*.count, 4)"
  1789. }
  1790. ],
  1791. "thresholds": [
  1792. {
  1793. "value": 10,
  1794. "op": "gt",
  1795. "fill": true,
  1796. "line": true,
  1797. "colorMode": "warning",
  1798. "fillColor": "rgba(235, 138, 14, 0.12)",
  1799. "lineColor": "rgba(247, 149, 32, 0.60)"
  1800. }
  1801. ],
  1802. "timeFrom": null,
  1803. "timeShift": null,
  1804. "title": "Fast Warning panel",
  1805. "tooltip": {
  1806. "msResolution": false,
  1807. "shared": true,
  1808. "sort": 0,
  1809. "value_type": "cumulative"
  1810. },
  1811. "type": "graph",
  1812. "xaxis": {
  1813. "show": true
  1814. },
  1815. "yaxes": [
  1816. {
  1817. "format": "short",
  1818. "label": null,
  1819. "logBase": 1,
  1820. "max": null,
  1821. "min": null,
  1822. "show": true
  1823. },
  1824. {
  1825. "format": "short",
  1826. "label": null,
  1827. "logBase": 1,
  1828. "max": null,
  1829. "min": null,
  1830. "show": true
  1831. }
  1832. ]
  1833. }
  1834. ],
  1835. "title": "New row"
  1836. },
  1837. {
  1838. "title": "New row",
  1839. "height": "250px",
  1840. "editable": true,
  1841. "collapse": false,
  1842. "panels": [
  1843. {
  1844. "title": "Alert below value",
  1845. "error": false,
  1846. "span": 3,
  1847. "editable": true,
  1848. "type": "graph",
  1849. "isNew": true,
  1850. "id": 17,
  1851. "targets": [
  1852. {
  1853. "target": "aliasByNode(statsd.fakesite.counters.session_start.*.count, 4)",
  1854. "refId": "A"
  1855. }
  1856. ],
  1857. "datasource": "${DS_GRAPHITE}",
  1858. "renderer": "flot",
  1859. "yaxes": [
  1860. {
  1861. "label": null,
  1862. "show": true,
  1863. "logBase": 1,
  1864. "min": null,
  1865. "max": null,
  1866. "format": "short"
  1867. },
  1868. {
  1869. "label": null,
  1870. "show": true,
  1871. "logBase": 1,
  1872. "min": null,
  1873. "max": null,
  1874. "format": "short"
  1875. }
  1876. ],
  1877. "xaxis": {
  1878. "show": true
  1879. },
  1880. "alert": {
  1881. "conditions": [
  1882. {
  1883. "type": "query",
  1884. "query": {
  1885. "params": [
  1886. "A",
  1887. "5m",
  1888. "now"
  1889. ]
  1890. },
  1891. "reducer": {
  1892. "type": "avg",
  1893. "params": []
  1894. },
  1895. "evaluator": {
  1896. "type": "lt",
  1897. "params": [
  1898. 20
  1899. ]
  1900. }
  1901. }
  1902. ],
  1903. "severity": "critical",
  1904. "frequency": "60s",
  1905. "handler": 1,
  1906. "notifications": [],
  1907. "name": "Alert below value",
  1908. "enabled": true
  1909. },
  1910. "lines": true,
  1911. "fill": 1,
  1912. "linewidth": 2,
  1913. "points": false,
  1914. "pointradius": 5,
  1915. "bars": false,
  1916. "stack": false,
  1917. "percentage": false,
  1918. "legend": {
  1919. "show": true,
  1920. "values": false,
  1921. "min": false,
  1922. "max": false,
  1923. "current": false,
  1924. "total": false,
  1925. "avg": false
  1926. },
  1927. "nullPointMode": "connected",
  1928. "steppedLine": false,
  1929. "tooltip": {
  1930. "value_type": "cumulative",
  1931. "shared": true,
  1932. "sort": 0,
  1933. "msResolution": false
  1934. },
  1935. "timeFrom": null,
  1936. "timeShift": null,
  1937. "aliasColors": {},
  1938. "seriesOverrides": [],
  1939. "alerting": {},
  1940. "thresholds": [
  1941. {
  1942. "value": 20,
  1943. "op": "lt",
  1944. "fill": true,
  1945. "line": true,
  1946. "colorMode": "critical",
  1947. "fillColor": "rgba(234, 112, 112, 0.12)",
  1948. "lineColor": "rgba(237, 46, 24, 0.60)"
  1949. }
  1950. ],
  1951. "links": []
  1952. },
  1953. {
  1954. "title": "Alert is outside range",
  1955. "error": false,
  1956. "span": 3,
  1957. "editable": true,
  1958. "type": "graph",
  1959. "isNew": true,
  1960. "id": 18,
  1961. "targets": [
  1962. {
  1963. "target": "aliasByNode(statsd.fakesite.counters.session_start.*.count, 4)",
  1964. "refId": "A"
  1965. }
  1966. ],
  1967. "datasource": "${DS_GRAPHITE}",
  1968. "renderer": "flot",
  1969. "yaxes": [
  1970. {
  1971. "label": null,
  1972. "show": true,
  1973. "logBase": 1,
  1974. "min": null,
  1975. "max": null,
  1976. "format": "short"
  1977. },
  1978. {
  1979. "label": null,
  1980. "show": true,
  1981. "logBase": 1,
  1982. "min": null,
  1983. "max": null,
  1984. "format": "short"
  1985. }
  1986. ],
  1987. "xaxis": {
  1988. "show": true
  1989. },
  1990. "alert": {
  1991. "conditions": [
  1992. {
  1993. "type": "query",
  1994. "query": {
  1995. "params": [
  1996. "A",
  1997. "5m",
  1998. "now"
  1999. ]
  2000. },
  2001. "reducer": {
  2002. "type": "avg",
  2003. "params": []
  2004. },
  2005. "evaluator": {
  2006. "type": "outside_range",
  2007. "params": [
  2008. 10,
  2009. 80
  2010. ]
  2011. }
  2012. }
  2013. ],
  2014. "severity": "critical",
  2015. "frequency": "10s",
  2016. "handler": 1,
  2017. "notifications": [],
  2018. "name": "Alert is outside range",
  2019. "enabled": true
  2020. },
  2021. "lines": true,
  2022. "fill": 1,
  2023. "linewidth": 2,
  2024. "points": false,
  2025. "pointradius": 5,
  2026. "bars": false,
  2027. "stack": false,
  2028. "percentage": false,
  2029. "legend": {
  2030. "show": true,
  2031. "values": false,
  2032. "min": false,
  2033. "max": false,
  2034. "current": false,
  2035. "total": false,
  2036. "avg": false
  2037. },
  2038. "nullPointMode": "connected",
  2039. "steppedLine": false,
  2040. "tooltip": {
  2041. "value_type": "cumulative",
  2042. "shared": true,
  2043. "sort": 0,
  2044. "msResolution": false
  2045. },
  2046. "timeFrom": null,
  2047. "timeShift": null,
  2048. "aliasColors": {},
  2049. "seriesOverrides": [],
  2050. "alerting": {},
  2051. "thresholds": [
  2052. {
  2053. "value": 10,
  2054. "op": "lt",
  2055. "fill": true,
  2056. "line": true,
  2057. "colorMode": "critical",
  2058. "fillColor": "rgba(234, 112, 112, 0.12)",
  2059. "lineColor": "rgba(237, 46, 24, 0.60)"
  2060. },
  2061. {
  2062. "value": 80,
  2063. "op": "gt",
  2064. "fill": true,
  2065. "line": true,
  2066. "colorMode": "critical",
  2067. "fillColor": "rgba(234, 112, 112, 0.12)",
  2068. "lineColor": "rgba(237, 46, 24, 0.60)"
  2069. }
  2070. ],
  2071. "links": []
  2072. },
  2073. {
  2074. "title": "Alert is within range",
  2075. "error": false,
  2076. "span": 3,
  2077. "editable": true,
  2078. "type": "graph",
  2079. "isNew": true,
  2080. "id": 19,
  2081. "targets": [
  2082. {
  2083. "target": "aliasByNode(statsd.fakesite.counters.session_start.*.count, 4)",
  2084. "refId": "A"
  2085. }
  2086. ],
  2087. "datasource": "${DS_GRAPHITE}",
  2088. "renderer": "flot",
  2089. "yaxes": [
  2090. {
  2091. "label": null,
  2092. "show": true,
  2093. "logBase": 1,
  2094. "min": null,
  2095. "max": null,
  2096. "format": "short"
  2097. },
  2098. {
  2099. "label": null,
  2100. "show": true,
  2101. "logBase": 1,
  2102. "min": null,
  2103. "max": null,
  2104. "format": "short"
  2105. }
  2106. ],
  2107. "xaxis": {
  2108. "show": true
  2109. },
  2110. "alert": {
  2111. "conditions": [
  2112. {
  2113. "type": "query",
  2114. "query": {
  2115. "params": [
  2116. "A",
  2117. "5m",
  2118. "now"
  2119. ]
  2120. },
  2121. "reducer": {
  2122. "type": "avg",
  2123. "params": []
  2124. },
  2125. "evaluator": {
  2126. "type": "within_range",
  2127. "params": [
  2128. 60,
  2129. 80
  2130. ]
  2131. }
  2132. }
  2133. ],
  2134. "severity": "critical",
  2135. "frequency": "10s",
  2136. "handler": 1,
  2137. "notifications": [],
  2138. "name": "Alert is within range",
  2139. "enabled": true
  2140. },
  2141. "lines": true,
  2142. "fill": 1,
  2143. "linewidth": 2,
  2144. "points": false,
  2145. "pointradius": 5,
  2146. "bars": false,
  2147. "stack": false,
  2148. "percentage": false,
  2149. "legend": {
  2150. "show": true,
  2151. "values": false,
  2152. "min": false,
  2153. "max": false,
  2154. "current": false,
  2155. "total": false,
  2156. "avg": false
  2157. },
  2158. "nullPointMode": "connected",
  2159. "steppedLine": false,
  2160. "tooltip": {
  2161. "value_type": "cumulative",
  2162. "shared": true,
  2163. "sort": 0,
  2164. "msResolution": false
  2165. },
  2166. "timeFrom": null,
  2167. "timeShift": null,
  2168. "aliasColors": {},
  2169. "seriesOverrides": [],
  2170. "alerting": {},
  2171. "thresholds": [
  2172. {
  2173. "value": 60,
  2174. "op": "gt",
  2175. "fill": true,
  2176. "line": true,
  2177. "colorMode": "critical",
  2178. "fillColor": "rgba(234, 112, 112, 0.12)",
  2179. "lineColor": "rgba(237, 46, 24, 0.60)"
  2180. },
  2181. {
  2182. "value": 80,
  2183. "op": "lt",
  2184. "fill": true,
  2185. "line": true,
  2186. "colorMode": "critical",
  2187. "fillColor": "rgba(234, 112, 112, 0.12)",
  2188. "lineColor": "rgba(237, 46, 24, 0.60)"
  2189. }
  2190. ],
  2191. "links": []
  2192. }
  2193. ]
  2194. }
  2195. ],
  2196. "time": {
  2197. "from": "now-6h",
  2198. "to": "now"
  2199. },
  2200. "timepicker": {
  2201. "refresh_intervals": [
  2202. "5s",
  2203. "10s",
  2204. "30s",
  2205. "1m",
  2206. "5m",
  2207. "15m",
  2208. "30m",
  2209. "1h",
  2210. "2h",
  2211. "1d"
  2212. ],
  2213. "time_options": [
  2214. "5m",
  2215. "15m",
  2216. "1h",
  2217. "6h",
  2218. "12h",
  2219. "24h",
  2220. "2d",
  2221. "7d",
  2222. "30d"
  2223. ]
  2224. },
  2225. "templating": {
  2226. "list": []
  2227. },
  2228. "annotations": {
  2229. "list": []
  2230. },
  2231. "schemaVersion": 13,
  2232. "version": 50,
  2233. "links": [],
  2234. "gnetId": null
  2235. }