slurm-dashboard.json 54 KB

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