alerting-dashboard.json 59 KB

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