System_Overview.json 96 KB

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