dashboard-example.json 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366
  1. {
  2. "__inputs": [
  3. {
  4. "name": "DS_PC_OHMGRAPHITE",
  5. "label": "PC_OhmGraphite",
  6. "description": "",
  7. "type": "datasource",
  8. "pluginId": "influxdb",
  9. "pluginName": "InfluxDB"
  10. }
  11. ],
  12. "__requires": [
  13. {
  14. "type": "grafana",
  15. "id": "grafana",
  16. "name": "Grafana",
  17. "version": "5.4.2"
  18. },
  19. {
  20. "type": "panel",
  21. "id": "graph",
  22. "name": "Graph",
  23. "version": "5.0.0"
  24. },
  25. {
  26. "type": "datasource",
  27. "id": "influxdb",
  28. "name": "InfluxDB",
  29. "version": "5.0.0"
  30. },
  31. {
  32. "type": "panel",
  33. "id": "singlestat",
  34. "name": "Singlestat",
  35. "version": "5.0.0"
  36. }
  37. ],
  38. "annotations": {
  39. "list": [
  40. {
  41. "builtIn": 1,
  42. "datasource": "-- Grafana --",
  43. "enable": true,
  44. "hide": true,
  45. "iconColor": "rgba(0, 211, 255, 1)",
  46. "name": "Annotations & Alerts",
  47. "type": "dashboard"
  48. }
  49. ]
  50. },
  51. "editable": true,
  52. "gnetId": null,
  53. "graphTooltip": 0,
  54. "id": null,
  55. "links": [],
  56. "panels": [
  57. {
  58. "cacheTimeout": null,
  59. "colorBackground": false,
  60. "colorPostfix": false,
  61. "colorValue": false,
  62. "colors": [
  63. "#299c46",
  64. "rgba(237, 129, 40, 0.89)",
  65. "#d44a3a"
  66. ],
  67. "datasource": "${DS_PC_OHMGRAPHITE}",
  68. "decimals": 1,
  69. "format": "percent",
  70. "gauge": {
  71. "maxValue": 100,
  72. "minValue": 0,
  73. "show": true,
  74. "thresholdLabels": false,
  75. "thresholdMarkers": true
  76. },
  77. "gridPos": {
  78. "h": 6,
  79. "w": 4,
  80. "x": 0,
  81. "y": 0
  82. },
  83. "id": 21,
  84. "interval": null,
  85. "links": [],
  86. "mappingType": 1,
  87. "mappingTypes": [
  88. {
  89. "name": "value to text",
  90. "value": 1
  91. },
  92. {
  93. "name": "range to text",
  94. "value": 2
  95. }
  96. ],
  97. "maxDataPoints": 100,
  98. "nullPointMode": "connected",
  99. "nullText": null,
  100. "postfix": "",
  101. "postfixFontSize": "50%",
  102. "prefix": "",
  103. "prefixFontSize": "50%",
  104. "rangeMaps": [
  105. {
  106. "from": "null",
  107. "text": "N/A",
  108. "to": "null"
  109. }
  110. ],
  111. "sparkline": {
  112. "fillColor": "rgba(31, 118, 189, 0.18)",
  113. "full": false,
  114. "lineColor": "rgb(31, 120, 193)",
  115. "show": true
  116. },
  117. "tableColumn": "",
  118. "targets": [
  119. {
  120. "groupBy": [
  121. {
  122. "params": [
  123. "$__interval"
  124. ],
  125. "type": "time"
  126. },
  127. {
  128. "params": [
  129. "null"
  130. ],
  131. "type": "fill"
  132. }
  133. ],
  134. "measurement": "Load",
  135. "orderByTime": "ASC",
  136. "policy": "default",
  137. "refId": "A",
  138. "resultFormat": "time_series",
  139. "select": [
  140. [
  141. {
  142. "params": [
  143. "value"
  144. ],
  145. "type": "field"
  146. },
  147. {
  148. "params": [],
  149. "type": "mean"
  150. }
  151. ]
  152. ],
  153. "tags": [
  154. {
  155. "key": "sensor",
  156. "operator": "=",
  157. "value": "CPU Total"
  158. }
  159. ]
  160. }
  161. ],
  162. "thresholds": "70,90",
  163. "title": "Cpu Utiliziation",
  164. "type": "singlestat",
  165. "valueFontSize": "80%",
  166. "valueMaps": [
  167. {
  168. "op": "=",
  169. "text": "N/A",
  170. "value": "null"
  171. }
  172. ],
  173. "valueName": "current"
  174. },
  175. {
  176. "cacheTimeout": null,
  177. "colorBackground": false,
  178. "colorValue": false,
  179. "colors": [
  180. "#299c46",
  181. "rgba(237, 129, 40, 0.89)",
  182. "#d44a3a"
  183. ],
  184. "datasource": "${DS_PC_OHMGRAPHITE}",
  185. "decimals": 1,
  186. "format": "percent",
  187. "gauge": {
  188. "maxValue": 100,
  189. "minValue": 0,
  190. "show": true,
  191. "thresholdLabels": false,
  192. "thresholdMarkers": true
  193. },
  194. "gridPos": {
  195. "h": 6,
  196. "w": 4,
  197. "x": 4,
  198. "y": 0
  199. },
  200. "id": 23,
  201. "interval": null,
  202. "links": [],
  203. "mappingType": 1,
  204. "mappingTypes": [
  205. {
  206. "name": "value to text",
  207. "value": 1
  208. },
  209. {
  210. "name": "range to text",
  211. "value": 2
  212. }
  213. ],
  214. "maxDataPoints": 100,
  215. "nullPointMode": "connected",
  216. "nullText": null,
  217. "postfix": "",
  218. "postfixFontSize": "50%",
  219. "prefix": "",
  220. "prefixFontSize": "50%",
  221. "rangeMaps": [
  222. {
  223. "from": "null",
  224. "text": "N/A",
  225. "to": "null"
  226. }
  227. ],
  228. "sparkline": {
  229. "fillColor": "rgba(31, 118, 189, 0.18)",
  230. "full": false,
  231. "lineColor": "rgb(31, 120, 193)",
  232. "show": true
  233. },
  234. "tableColumn": "",
  235. "targets": [
  236. {
  237. "groupBy": [
  238. {
  239. "params": [
  240. "$__interval"
  241. ],
  242. "type": "time"
  243. },
  244. {
  245. "params": [
  246. "null"
  247. ],
  248. "type": "fill"
  249. }
  250. ],
  251. "measurement": "Load",
  252. "orderByTime": "ASC",
  253. "policy": "default",
  254. "refId": "A",
  255. "resultFormat": "time_series",
  256. "select": [
  257. [
  258. {
  259. "params": [
  260. "value"
  261. ],
  262. "type": "field"
  263. },
  264. {
  265. "params": [],
  266. "type": "mean"
  267. }
  268. ]
  269. ],
  270. "tags": [
  271. {
  272. "key": "sensor",
  273. "operator": "=",
  274. "value": "GPU Core"
  275. }
  276. ]
  277. }
  278. ],
  279. "thresholds": "70,90",
  280. "title": "GPU Utilisation",
  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": false,
  296. "colors": [
  297. "#299c46",
  298. "rgba(237, 129, 40, 0.89)",
  299. "#d44a3a"
  300. ],
  301. "datasource": "${DS_PC_OHMGRAPHITE}",
  302. "decimals": 2,
  303. "format": "decgbytes",
  304. "gauge": {
  305. "maxValue": 32,
  306. "minValue": 0,
  307. "show": true,
  308. "thresholdLabels": false,
  309. "thresholdMarkers": true
  310. },
  311. "gridPos": {
  312. "h": 6,
  313. "w": 4,
  314. "x": 8,
  315. "y": 0
  316. },
  317. "id": 25,
  318. "interval": null,
  319. "links": [],
  320. "mappingType": 1,
  321. "mappingTypes": [
  322. {
  323. "name": "value to text",
  324. "value": 1
  325. },
  326. {
  327. "name": "range to text",
  328. "value": 2
  329. }
  330. ],
  331. "maxDataPoints": 100,
  332. "nullPointMode": "connected",
  333. "nullText": null,
  334. "postfix": "",
  335. "postfixFontSize": "50%",
  336. "prefix": "",
  337. "prefixFontSize": "50%",
  338. "rangeMaps": [
  339. {
  340. "from": "null",
  341. "text": "N/A",
  342. "to": "null"
  343. }
  344. ],
  345. "sparkline": {
  346. "fillColor": "rgba(31, 118, 189, 0.18)",
  347. "full": false,
  348. "lineColor": "rgb(31, 120, 193)",
  349. "show": true
  350. },
  351. "tableColumn": "",
  352. "targets": [
  353. {
  354. "alias": "Ram Used",
  355. "groupBy": [
  356. {
  357. "params": [
  358. "$__interval"
  359. ],
  360. "type": "time"
  361. },
  362. {
  363. "params": [
  364. "null"
  365. ],
  366. "type": "fill"
  367. }
  368. ],
  369. "measurement": "Data",
  370. "orderByTime": "ASC",
  371. "policy": "default",
  372. "refId": "A",
  373. "resultFormat": "time_series",
  374. "select": [
  375. [
  376. {
  377. "params": [
  378. "value"
  379. ],
  380. "type": "field"
  381. },
  382. {
  383. "params": [],
  384. "type": "mean"
  385. }
  386. ]
  387. ],
  388. "tags": [
  389. {
  390. "key": "sensor",
  391. "operator": "=",
  392. "value": "Used Memory"
  393. }
  394. ]
  395. }
  396. ],
  397. "thresholds": "25,30",
  398. "title": "RAM Used",
  399. "type": "singlestat",
  400. "valueFontSize": "80%",
  401. "valueMaps": [
  402. {
  403. "op": "=",
  404. "text": "N/A",
  405. "value": "null"
  406. }
  407. ],
  408. "valueName": "current"
  409. },
  410. {
  411. "cacheTimeout": null,
  412. "colorBackground": false,
  413. "colorValue": false,
  414. "colors": [
  415. "#299c46",
  416. "rgba(237, 129, 40, 0.89)",
  417. "#d44a3a"
  418. ],
  419. "datasource": "${DS_PC_OHMGRAPHITE}",
  420. "decimals": 1,
  421. "format": "percent",
  422. "gauge": {
  423. "maxValue": 100,
  424. "minValue": 0,
  425. "show": true,
  426. "thresholdLabels": false,
  427. "thresholdMarkers": true
  428. },
  429. "gridPos": {
  430. "h": 6,
  431. "w": 4,
  432. "x": 12,
  433. "y": 0
  434. },
  435. "id": 27,
  436. "interval": null,
  437. "links": [],
  438. "mappingType": 1,
  439. "mappingTypes": [
  440. {
  441. "name": "value to text",
  442. "value": 1
  443. },
  444. {
  445. "name": "range to text",
  446. "value": 2
  447. }
  448. ],
  449. "maxDataPoints": 100,
  450. "nullPointMode": "connected",
  451. "nullText": null,
  452. "postfix": "",
  453. "postfixFontSize": "50%",
  454. "prefix": "",
  455. "prefixFontSize": "50%",
  456. "rangeMaps": [
  457. {
  458. "from": "null",
  459. "text": "N/A",
  460. "to": "null"
  461. }
  462. ],
  463. "sparkline": {
  464. "fillColor": "rgba(31, 118, 189, 0.18)",
  465. "full": false,
  466. "lineColor": "rgb(31, 120, 193)",
  467. "show": true
  468. },
  469. "tableColumn": "mean",
  470. "targets": [
  471. {
  472. "groupBy": [
  473. {
  474. "params": [
  475. "$__interval"
  476. ],
  477. "type": "time"
  478. },
  479. {
  480. "params": [
  481. "previous"
  482. ],
  483. "type": "fill"
  484. }
  485. ],
  486. "measurement": "Load",
  487. "orderByTime": "ASC",
  488. "policy": "default",
  489. "refId": "A",
  490. "resultFormat": "time_series",
  491. "select": [
  492. [
  493. {
  494. "params": [
  495. "value"
  496. ],
  497. "type": "field"
  498. },
  499. {
  500. "params": [],
  501. "type": "mean"
  502. }
  503. ]
  504. ],
  505. "tags": [
  506. {
  507. "key": "sensor",
  508. "operator": "=",
  509. "value": "Used Space"
  510. },
  511. {
  512. "condition": "AND",
  513. "key": "hardware",
  514. "operator": "=",
  515. "value": "Generic Hard Disk"
  516. }
  517. ]
  518. }
  519. ],
  520. "thresholds": "70,90",
  521. "title": "C:",
  522. "type": "singlestat",
  523. "valueFontSize": "80%",
  524. "valueMaps": [
  525. {
  526. "op": "=",
  527. "text": "N/A",
  528. "value": "null"
  529. }
  530. ],
  531. "valueName": "current"
  532. },
  533. {
  534. "cacheTimeout": null,
  535. "colorBackground": false,
  536. "colorValue": false,
  537. "colors": [
  538. "#299c46",
  539. "rgba(237, 129, 40, 0.89)",
  540. "#d44a3a"
  541. ],
  542. "datasource": "${DS_PC_OHMGRAPHITE}",
  543. "decimals": 1,
  544. "format": "percent",
  545. "gauge": {
  546. "maxValue": 100,
  547. "minValue": 0,
  548. "show": true,
  549. "thresholdLabels": false,
  550. "thresholdMarkers": true
  551. },
  552. "gridPos": {
  553. "h": 6,
  554. "w": 4,
  555. "x": 16,
  556. "y": 0
  557. },
  558. "id": 29,
  559. "interval": null,
  560. "links": [],
  561. "mappingType": 1,
  562. "mappingTypes": [
  563. {
  564. "name": "value to text",
  565. "value": 1
  566. },
  567. {
  568. "name": "range to text",
  569. "value": 2
  570. }
  571. ],
  572. "maxDataPoints": 100,
  573. "nullPointMode": "connected",
  574. "nullText": null,
  575. "postfix": "",
  576. "postfixFontSize": "50%",
  577. "prefix": "",
  578. "prefixFontSize": "50%",
  579. "rangeMaps": [
  580. {
  581. "from": "null",
  582. "text": "N/A",
  583. "to": "null"
  584. }
  585. ],
  586. "sparkline": {
  587. "fillColor": "rgba(31, 118, 189, 0.18)",
  588. "full": false,
  589. "lineColor": "rgb(31, 120, 193)",
  590. "show": true
  591. },
  592. "tableColumn": "",
  593. "targets": [
  594. {
  595. "groupBy": [
  596. {
  597. "params": [
  598. "$__interval"
  599. ],
  600. "type": "time"
  601. },
  602. {
  603. "params": [
  604. "previous"
  605. ],
  606. "type": "fill"
  607. }
  608. ],
  609. "measurement": "Load",
  610. "orderByTime": "ASC",
  611. "policy": "default",
  612. "refId": "A",
  613. "resultFormat": "time_series",
  614. "select": [
  615. [
  616. {
  617. "params": [
  618. "value"
  619. ],
  620. "type": "field"
  621. },
  622. {
  623. "params": [],
  624. "type": "mean"
  625. }
  626. ]
  627. ],
  628. "tags": [
  629. {
  630. "key": "sensor",
  631. "operator": "=",
  632. "value": "Used Space"
  633. },
  634. {
  635. "condition": "AND",
  636. "key": "hardware",
  637. "operator": "=",
  638. "value": "Samsung SSD 840 EVO 250GB"
  639. }
  640. ]
  641. }
  642. ],
  643. "thresholds": "70,90",
  644. "title": "D:",
  645. "type": "singlestat",
  646. "valueFontSize": "80%",
  647. "valueMaps": [
  648. {
  649. "op": "=",
  650. "text": "N/A",
  651. "value": "null"
  652. }
  653. ],
  654. "valueName": "current"
  655. },
  656. {
  657. "cacheTimeout": null,
  658. "colorBackground": false,
  659. "colorValue": false,
  660. "colors": [
  661. "#299c46",
  662. "rgba(237, 129, 40, 0.89)",
  663. "#d44a3a"
  664. ],
  665. "datasource": "${DS_PC_OHMGRAPHITE}",
  666. "format": "percent",
  667. "gauge": {
  668. "maxValue": 100,
  669. "minValue": 0,
  670. "show": true,
  671. "thresholdLabels": false,
  672. "thresholdMarkers": true
  673. },
  674. "gridPos": {
  675. "h": 6,
  676. "w": 4,
  677. "x": 20,
  678. "y": 0
  679. },
  680. "id": 31,
  681. "interval": null,
  682. "links": [],
  683. "mappingType": 1,
  684. "mappingTypes": [
  685. {
  686. "name": "value to text",
  687. "value": 1
  688. },
  689. {
  690. "name": "range to text",
  691. "value": 2
  692. }
  693. ],
  694. "maxDataPoints": 100,
  695. "nullPointMode": "connected",
  696. "nullText": null,
  697. "postfix": "",
  698. "postfixFontSize": "50%",
  699. "prefix": "",
  700. "prefixFontSize": "50%",
  701. "rangeMaps": [
  702. {
  703. "from": "null",
  704. "text": "N/A",
  705. "to": "null"
  706. }
  707. ],
  708. "sparkline": {
  709. "fillColor": "rgba(31, 118, 189, 0.18)",
  710. "full": false,
  711. "lineColor": "rgb(31, 120, 193)",
  712. "show": true
  713. },
  714. "tableColumn": "",
  715. "targets": [
  716. {
  717. "groupBy": [
  718. {
  719. "params": [
  720. "$__interval"
  721. ],
  722. "type": "time"
  723. },
  724. {
  725. "params": [
  726. "null"
  727. ],
  728. "type": "fill"
  729. }
  730. ],
  731. "measurement": "Control",
  732. "orderByTime": "ASC",
  733. "policy": "default",
  734. "refId": "A",
  735. "resultFormat": "time_series",
  736. "select": [
  737. [
  738. {
  739. "params": [
  740. "value"
  741. ],
  742. "type": "field"
  743. },
  744. {
  745. "params": [],
  746. "type": "mean"
  747. }
  748. ]
  749. ],
  750. "tags": [
  751. {
  752. "key": "sensor",
  753. "operator": "=",
  754. "value": "Fan Control #1"
  755. }
  756. ]
  757. }
  758. ],
  759. "thresholds": "50,80",
  760. "title": "FAN 1",
  761. "type": "singlestat",
  762. "valueFontSize": "80%",
  763. "valueMaps": [
  764. {
  765. "op": "=",
  766. "text": "N/A",
  767. "value": "null"
  768. }
  769. ],
  770. "valueName": "current"
  771. },
  772. {
  773. "aliasColors": {},
  774. "bars": false,
  775. "dashLength": 10,
  776. "dashes": false,
  777. "datasource": "${DS_PC_OHMGRAPHITE}",
  778. "fill": 0,
  779. "gridPos": {
  780. "h": 6,
  781. "w": 12,
  782. "x": 0,
  783. "y": 6
  784. },
  785. "id": 13,
  786. "legend": {
  787. "alignAsTable": true,
  788. "avg": true,
  789. "current": true,
  790. "max": true,
  791. "min": true,
  792. "show": true,
  793. "total": false,
  794. "values": true
  795. },
  796. "lines": true,
  797. "linewidth": 1,
  798. "links": [],
  799. "nullPointMode": "null",
  800. "percentage": false,
  801. "pointradius": 5,
  802. "points": false,
  803. "renderer": "flot",
  804. "seriesOverrides": [
  805. {
  806. "alias": "Core",
  807. "color": "#70dbed",
  808. "linewidth": 2,
  809. "zindex": 3
  810. }
  811. ],
  812. "spaceLength": 10,
  813. "stack": false,
  814. "steppedLine": false,
  815. "targets": [
  816. {
  817. "alias": "Video Engine",
  818. "groupBy": [
  819. {
  820. "params": [
  821. "1m"
  822. ],
  823. "type": "time"
  824. },
  825. {
  826. "params": [
  827. "previous"
  828. ],
  829. "type": "fill"
  830. }
  831. ],
  832. "measurement": "Load",
  833. "orderByTime": "ASC",
  834. "policy": "default",
  835. "refId": "A",
  836. "resultFormat": "time_series",
  837. "select": [
  838. [
  839. {
  840. "params": [
  841. "value"
  842. ],
  843. "type": "field"
  844. },
  845. {
  846. "params": [],
  847. "type": "mean"
  848. }
  849. ]
  850. ],
  851. "tags": [
  852. {
  853. "key": "sensor",
  854. "operator": "=",
  855. "value": "GPU Video Engine"
  856. }
  857. ]
  858. },
  859. {
  860. "alias": "Core",
  861. "groupBy": [
  862. {
  863. "params": [
  864. "1m"
  865. ],
  866. "type": "time"
  867. },
  868. {
  869. "params": [
  870. "previous"
  871. ],
  872. "type": "fill"
  873. }
  874. ],
  875. "measurement": "Load",
  876. "orderByTime": "ASC",
  877. "policy": "default",
  878. "refId": "B",
  879. "resultFormat": "time_series",
  880. "select": [
  881. [
  882. {
  883. "params": [
  884. "value"
  885. ],
  886. "type": "field"
  887. },
  888. {
  889. "params": [],
  890. "type": "mean"
  891. }
  892. ]
  893. ],
  894. "tags": [
  895. {
  896. "key": "sensor",
  897. "operator": "=",
  898. "value": "GPU Core"
  899. }
  900. ]
  901. },
  902. {
  903. "alias": "Memory",
  904. "groupBy": [
  905. {
  906. "params": [
  907. "1m"
  908. ],
  909. "type": "time"
  910. },
  911. {
  912. "params": [
  913. "previous"
  914. ],
  915. "type": "fill"
  916. }
  917. ],
  918. "measurement": "Load",
  919. "orderByTime": "ASC",
  920. "policy": "default",
  921. "refId": "C",
  922. "resultFormat": "time_series",
  923. "select": [
  924. [
  925. {
  926. "params": [
  927. "value"
  928. ],
  929. "type": "field"
  930. },
  931. {
  932. "params": [],
  933. "type": "mean"
  934. }
  935. ]
  936. ],
  937. "tags": [
  938. {
  939. "key": "sensor",
  940. "operator": "=",
  941. "value": "GPU Memory"
  942. }
  943. ]
  944. },
  945. {
  946. "alias": "Memory Controller",
  947. "groupBy": [
  948. {
  949. "params": [
  950. "1m"
  951. ],
  952. "type": "time"
  953. },
  954. {
  955. "params": [
  956. "previous"
  957. ],
  958. "type": "fill"
  959. }
  960. ],
  961. "measurement": "Load",
  962. "orderByTime": "ASC",
  963. "policy": "default",
  964. "refId": "D",
  965. "resultFormat": "time_series",
  966. "select": [
  967. [
  968. {
  969. "params": [
  970. "value"
  971. ],
  972. "type": "field"
  973. },
  974. {
  975. "params": [],
  976. "type": "mean"
  977. }
  978. ]
  979. ],
  980. "tags": [
  981. {
  982. "key": "sensor",
  983. "operator": "=",
  984. "value": "GPU Memory Controller"
  985. }
  986. ]
  987. }
  988. ],
  989. "thresholds": [],
  990. "timeFrom": null,
  991. "timeRegions": [],
  992. "timeShift": null,
  993. "title": "GPU Utilisation",
  994. "tooltip": {
  995. "shared": true,
  996. "sort": 0,
  997. "value_type": "individual"
  998. },
  999. "type": "graph",
  1000. "xaxis": {
  1001. "buckets": null,
  1002. "mode": "time",
  1003. "name": null,
  1004. "show": true,
  1005. "values": []
  1006. },
  1007. "yaxes": [
  1008. {
  1009. "format": "percent",
  1010. "label": null,
  1011. "logBase": 1,
  1012. "max": "100",
  1013. "min": "0",
  1014. "show": true
  1015. },
  1016. {
  1017. "format": "short",
  1018. "label": null,
  1019. "logBase": 1,
  1020. "max": null,
  1021. "min": null,
  1022. "show": true
  1023. }
  1024. ],
  1025. "yaxis": {
  1026. "align": false,
  1027. "alignLevel": null
  1028. }
  1029. },
  1030. {
  1031. "aliasColors": {},
  1032. "bars": false,
  1033. "dashLength": 10,
  1034. "dashes": false,
  1035. "datasource": "${DS_PC_OHMGRAPHITE}",
  1036. "fill": 0,
  1037. "gridPos": {
  1038. "h": 7,
  1039. "w": 12,
  1040. "x": 12,
  1041. "y": 6
  1042. },
  1043. "id": 17,
  1044. "legend": {
  1045. "alignAsTable": true,
  1046. "avg": true,
  1047. "current": true,
  1048. "max": true,
  1049. "min": true,
  1050. "show": true,
  1051. "total": false,
  1052. "values": true
  1053. },
  1054. "lines": true,
  1055. "linewidth": 1,
  1056. "links": [],
  1057. "nullPointMode": "null",
  1058. "percentage": false,
  1059. "pointradius": 5,
  1060. "points": false,
  1061. "renderer": "flot",
  1062. "seriesOverrides": [],
  1063. "spaceLength": 10,
  1064. "stack": false,
  1065. "steppedLine": false,
  1066. "targets": [
  1067. {
  1068. "alias": "CPU",
  1069. "groupBy": [
  1070. {
  1071. "params": [
  1072. "1m"
  1073. ],
  1074. "type": "time"
  1075. },
  1076. {
  1077. "params": [
  1078. "previous"
  1079. ],
  1080. "type": "fill"
  1081. }
  1082. ],
  1083. "measurement": "Clock",
  1084. "orderByTime": "ASC",
  1085. "policy": "default",
  1086. "refId": "A",
  1087. "resultFormat": "time_series",
  1088. "select": [
  1089. [
  1090. {
  1091. "params": [
  1092. "value"
  1093. ],
  1094. "type": "field"
  1095. },
  1096. {
  1097. "params": [],
  1098. "type": "mean"
  1099. }
  1100. ]
  1101. ],
  1102. "tags": [
  1103. {
  1104. "key": "sensor",
  1105. "operator": "=",
  1106. "value": "CPU Core #1"
  1107. }
  1108. ]
  1109. },
  1110. {
  1111. "alias": "GPU",
  1112. "groupBy": [
  1113. {
  1114. "params": [
  1115. "$__interval"
  1116. ],
  1117. "type": "time"
  1118. },
  1119. {
  1120. "params": [
  1121. "previous"
  1122. ],
  1123. "type": "fill"
  1124. }
  1125. ],
  1126. "measurement": "Clock",
  1127. "orderByTime": "ASC",
  1128. "policy": "default",
  1129. "refId": "B",
  1130. "resultFormat": "time_series",
  1131. "select": [
  1132. [
  1133. {
  1134. "params": [
  1135. "value"
  1136. ],
  1137. "type": "field"
  1138. },
  1139. {
  1140. "params": [],
  1141. "type": "mean"
  1142. }
  1143. ]
  1144. ],
  1145. "tags": [
  1146. {
  1147. "key": "sensor",
  1148. "operator": "=",
  1149. "value": "GPU Core"
  1150. }
  1151. ]
  1152. },
  1153. {
  1154. "alias": "Shader",
  1155. "groupBy": [
  1156. {
  1157. "params": [
  1158. "1m"
  1159. ],
  1160. "type": "time"
  1161. },
  1162. {
  1163. "params": [
  1164. "previous"
  1165. ],
  1166. "type": "fill"
  1167. }
  1168. ],
  1169. "measurement": "Clock",
  1170. "orderByTime": "ASC",
  1171. "policy": "default",
  1172. "refId": "C",
  1173. "resultFormat": "time_series",
  1174. "select": [
  1175. [
  1176. {
  1177. "params": [
  1178. "value"
  1179. ],
  1180. "type": "field"
  1181. },
  1182. {
  1183. "params": [],
  1184. "type": "mean"
  1185. }
  1186. ]
  1187. ],
  1188. "tags": [
  1189. {
  1190. "key": "sensor",
  1191. "operator": "=",
  1192. "value": "GPU Shader"
  1193. }
  1194. ]
  1195. }
  1196. ],
  1197. "thresholds": [],
  1198. "timeFrom": null,
  1199. "timeRegions": [],
  1200. "timeShift": null,
  1201. "title": "Clock Speed GPU/CPU",
  1202. "tooltip": {
  1203. "shared": true,
  1204. "sort": 0,
  1205. "value_type": "individual"
  1206. },
  1207. "type": "graph",
  1208. "xaxis": {
  1209. "buckets": null,
  1210. "mode": "time",
  1211. "name": null,
  1212. "show": true,
  1213. "values": []
  1214. },
  1215. "yaxes": [
  1216. {
  1217. "format": "none",
  1218. "label": "mhz",
  1219. "logBase": 1,
  1220. "max": null,
  1221. "min": "0",
  1222. "show": true
  1223. },
  1224. {
  1225. "format": "short",
  1226. "label": null,
  1227. "logBase": 1,
  1228. "max": null,
  1229. "min": null,
  1230. "show": false
  1231. }
  1232. ],
  1233. "yaxis": {
  1234. "align": false,
  1235. "alignLevel": null
  1236. }
  1237. },
  1238. {
  1239. "aliasColors": {},
  1240. "bars": false,
  1241. "dashLength": 10,
  1242. "dashes": false,
  1243. "datasource": "${DS_PC_OHMGRAPHITE}",
  1244. "fill": 0,
  1245. "gridPos": {
  1246. "h": 6,
  1247. "w": 12,
  1248. "x": 0,
  1249. "y": 12
  1250. },
  1251. "id": 11,
  1252. "legend": {
  1253. "alignAsTable": true,
  1254. "avg": true,
  1255. "current": true,
  1256. "max": true,
  1257. "min": true,
  1258. "rightSide": true,
  1259. "show": true,
  1260. "total": false,
  1261. "values": true
  1262. },
  1263. "lines": true,
  1264. "linewidth": 1,
  1265. "links": [],
  1266. "nullPointMode": "null",
  1267. "percentage": false,
  1268. "pointradius": 5,
  1269. "points": false,
  1270. "renderer": "flot",
  1271. "seriesOverrides": [
  1272. {
  1273. "alias": "CPU Package",
  1274. "color": "#bf1b00",
  1275. "linewidth": 2,
  1276. "zindex": 3
  1277. },
  1278. {
  1279. "alias": "CPU Core 1",
  1280. "color": "rgba(0, 0, 0, 0.23)"
  1281. },
  1282. {
  1283. "alias": "CPU Core 2",
  1284. "color": "rgba(8, 5, 92, 0.23)"
  1285. },
  1286. {
  1287. "alias": "CPU Core 3",
  1288. "color": "rgba(8, 5, 92, 0.23)"
  1289. },
  1290. {
  1291. "alias": "CPU Core 4",
  1292. "color": "rgba(77, 5, 92, 0.23)"
  1293. },
  1294. {
  1295. "alias": "CPU Core 5",
  1296. "color": "rgba(5, 76, 92, 0.23)"
  1297. },
  1298. {
  1299. "alias": "CPU Core 6",
  1300. "color": "rgba(5, 92, 59, 0.23)"
  1301. }
  1302. ],
  1303. "spaceLength": 10,
  1304. "stack": false,
  1305. "steppedLine": false,
  1306. "targets": [
  1307. {
  1308. "alias": "CPU Package",
  1309. "groupBy": [
  1310. {
  1311. "params": [
  1312. "1m"
  1313. ],
  1314. "type": "time"
  1315. },
  1316. {
  1317. "params": [
  1318. "previous"
  1319. ],
  1320. "type": "fill"
  1321. }
  1322. ],
  1323. "measurement": "Load",
  1324. "orderByTime": "ASC",
  1325. "policy": "default",
  1326. "refId": "H",
  1327. "resultFormat": "time_series",
  1328. "select": [
  1329. [
  1330. {
  1331. "params": [
  1332. "value"
  1333. ],
  1334. "type": "field"
  1335. },
  1336. {
  1337. "params": [],
  1338. "type": "mean"
  1339. }
  1340. ]
  1341. ],
  1342. "tags": [
  1343. {
  1344. "key": "sensor",
  1345. "operator": "=",
  1346. "value": "CPU Total"
  1347. }
  1348. ]
  1349. },
  1350. {
  1351. "alias": "CPU Core 1",
  1352. "groupBy": [
  1353. {
  1354. "params": [
  1355. "1m"
  1356. ],
  1357. "type": "time"
  1358. },
  1359. {
  1360. "params": [
  1361. "previous"
  1362. ],
  1363. "type": "fill"
  1364. }
  1365. ],
  1366. "hide": false,
  1367. "measurement": "Load",
  1368. "orderByTime": "ASC",
  1369. "policy": "default",
  1370. "refId": "B",
  1371. "resultFormat": "time_series",
  1372. "select": [
  1373. [
  1374. {
  1375. "params": [
  1376. "value"
  1377. ],
  1378. "type": "field"
  1379. },
  1380. {
  1381. "params": [],
  1382. "type": "mean"
  1383. }
  1384. ]
  1385. ],
  1386. "tags": [
  1387. {
  1388. "key": "sensor",
  1389. "operator": "=",
  1390. "value": "CPU Core #1"
  1391. }
  1392. ]
  1393. },
  1394. {
  1395. "alias": "CPU Core 2",
  1396. "groupBy": [
  1397. {
  1398. "params": [
  1399. "1m"
  1400. ],
  1401. "type": "time"
  1402. },
  1403. {
  1404. "params": [
  1405. "previous"
  1406. ],
  1407. "type": "fill"
  1408. }
  1409. ],
  1410. "hide": false,
  1411. "measurement": "Load",
  1412. "orderByTime": "ASC",
  1413. "policy": "default",
  1414. "refId": "C",
  1415. "resultFormat": "time_series",
  1416. "select": [
  1417. [
  1418. {
  1419. "params": [
  1420. "value"
  1421. ],
  1422. "type": "field"
  1423. },
  1424. {
  1425. "params": [],
  1426. "type": "mean"
  1427. }
  1428. ]
  1429. ],
  1430. "tags": [
  1431. {
  1432. "key": "sensor",
  1433. "operator": "=",
  1434. "value": "CPU Core #2"
  1435. }
  1436. ]
  1437. },
  1438. {
  1439. "alias": "CPU Core 3",
  1440. "groupBy": [
  1441. {
  1442. "params": [
  1443. "1m"
  1444. ],
  1445. "type": "time"
  1446. },
  1447. {
  1448. "params": [
  1449. "previous"
  1450. ],
  1451. "type": "fill"
  1452. }
  1453. ],
  1454. "hide": false,
  1455. "measurement": "Load",
  1456. "orderByTime": "ASC",
  1457. "policy": "default",
  1458. "refId": "D",
  1459. "resultFormat": "time_series",
  1460. "select": [
  1461. [
  1462. {
  1463. "params": [
  1464. "value"
  1465. ],
  1466. "type": "field"
  1467. },
  1468. {
  1469. "params": [],
  1470. "type": "mean"
  1471. }
  1472. ]
  1473. ],
  1474. "tags": [
  1475. {
  1476. "key": "sensor",
  1477. "operator": "=",
  1478. "value": "CPU Core #3"
  1479. }
  1480. ]
  1481. },
  1482. {
  1483. "alias": "CPU Core 4",
  1484. "groupBy": [
  1485. {
  1486. "params": [
  1487. "1m"
  1488. ],
  1489. "type": "time"
  1490. },
  1491. {
  1492. "params": [
  1493. "previous"
  1494. ],
  1495. "type": "fill"
  1496. }
  1497. ],
  1498. "hide": false,
  1499. "measurement": "Load",
  1500. "orderByTime": "ASC",
  1501. "policy": "default",
  1502. "refId": "E",
  1503. "resultFormat": "time_series",
  1504. "select": [
  1505. [
  1506. {
  1507. "params": [
  1508. "value"
  1509. ],
  1510. "type": "field"
  1511. },
  1512. {
  1513. "params": [],
  1514. "type": "mean"
  1515. }
  1516. ]
  1517. ],
  1518. "tags": [
  1519. {
  1520. "key": "sensor",
  1521. "operator": "=",
  1522. "value": "CPU Core #4"
  1523. }
  1524. ]
  1525. },
  1526. {
  1527. "alias": "CPU Core 5",
  1528. "groupBy": [
  1529. {
  1530. "params": [
  1531. "1m"
  1532. ],
  1533. "type": "time"
  1534. },
  1535. {
  1536. "params": [
  1537. "previous"
  1538. ],
  1539. "type": "fill"
  1540. }
  1541. ],
  1542. "hide": false,
  1543. "measurement": "Load",
  1544. "orderByTime": "ASC",
  1545. "policy": "default",
  1546. "refId": "F",
  1547. "resultFormat": "time_series",
  1548. "select": [
  1549. [
  1550. {
  1551. "params": [
  1552. "value"
  1553. ],
  1554. "type": "field"
  1555. },
  1556. {
  1557. "params": [],
  1558. "type": "mean"
  1559. }
  1560. ]
  1561. ],
  1562. "tags": [
  1563. {
  1564. "key": "sensor",
  1565. "operator": "=",
  1566. "value": "CPU Core #5"
  1567. }
  1568. ]
  1569. },
  1570. {
  1571. "alias": "CPU Core 6",
  1572. "groupBy": [
  1573. {
  1574. "params": [
  1575. "1m"
  1576. ],
  1577. "type": "time"
  1578. },
  1579. {
  1580. "params": [
  1581. "previous"
  1582. ],
  1583. "type": "fill"
  1584. }
  1585. ],
  1586. "hide": false,
  1587. "measurement": "Load",
  1588. "orderByTime": "ASC",
  1589. "policy": "default",
  1590. "refId": "G",
  1591. "resultFormat": "time_series",
  1592. "select": [
  1593. [
  1594. {
  1595. "params": [
  1596. "value"
  1597. ],
  1598. "type": "field"
  1599. },
  1600. {
  1601. "params": [],
  1602. "type": "mean"
  1603. }
  1604. ]
  1605. ],
  1606. "tags": [
  1607. {
  1608. "key": "sensor",
  1609. "operator": "=",
  1610. "value": "CPU Core #6"
  1611. }
  1612. ]
  1613. },
  1614. {
  1615. "alias": "CPU Core 6",
  1616. "groupBy": [
  1617. {
  1618. "params": [
  1619. "1m"
  1620. ],
  1621. "type": "time"
  1622. },
  1623. {
  1624. "params": [
  1625. "previous"
  1626. ],
  1627. "type": "fill"
  1628. }
  1629. ],
  1630. "hide": false,
  1631. "measurement": "Load",
  1632. "orderByTime": "ASC",
  1633. "policy": "default",
  1634. "refId": "I",
  1635. "resultFormat": "time_series",
  1636. "select": [
  1637. [
  1638. {
  1639. "params": [
  1640. "value"
  1641. ],
  1642. "type": "field"
  1643. },
  1644. {
  1645. "params": [],
  1646. "type": "mean"
  1647. }
  1648. ]
  1649. ],
  1650. "tags": [
  1651. {
  1652. "key": "sensor",
  1653. "operator": "=",
  1654. "value": "Memory"
  1655. }
  1656. ]
  1657. }
  1658. ],
  1659. "thresholds": [],
  1660. "timeFrom": null,
  1661. "timeRegions": [],
  1662. "timeShift": null,
  1663. "title": "CPU Utilization",
  1664. "tooltip": {
  1665. "shared": true,
  1666. "sort": 0,
  1667. "value_type": "individual"
  1668. },
  1669. "transparent": false,
  1670. "type": "graph",
  1671. "xaxis": {
  1672. "buckets": null,
  1673. "mode": "time",
  1674. "name": null,
  1675. "show": true,
  1676. "values": []
  1677. },
  1678. "yaxes": [
  1679. {
  1680. "format": "percent",
  1681. "label": null,
  1682. "logBase": 1,
  1683. "max": "100",
  1684. "min": "0",
  1685. "show": true
  1686. },
  1687. {
  1688. "format": "short",
  1689. "label": null,
  1690. "logBase": 1,
  1691. "max": null,
  1692. "min": null,
  1693. "show": false
  1694. }
  1695. ],
  1696. "yaxis": {
  1697. "align": false,
  1698. "alignLevel": null
  1699. }
  1700. },
  1701. {
  1702. "aliasColors": {},
  1703. "bars": false,
  1704. "dashLength": 10,
  1705. "dashes": false,
  1706. "datasource": "${DS_PC_OHMGRAPHITE}",
  1707. "fill": 0,
  1708. "gridPos": {
  1709. "h": 7,
  1710. "w": 12,
  1711. "x": 12,
  1712. "y": 13
  1713. },
  1714. "id": 2,
  1715. "legend": {
  1716. "alignAsTable": true,
  1717. "avg": true,
  1718. "current": true,
  1719. "max": true,
  1720. "min": true,
  1721. "rightSide": false,
  1722. "show": true,
  1723. "total": false,
  1724. "values": true
  1725. },
  1726. "lines": true,
  1727. "linewidth": 1,
  1728. "links": [],
  1729. "nullPointMode": "null",
  1730. "percentage": false,
  1731. "pointradius": 5,
  1732. "points": false,
  1733. "renderer": "flot",
  1734. "seriesOverrides": [
  1735. {
  1736. "alias": "CPU Package",
  1737. "color": "#bf1b00",
  1738. "linewidth": 2
  1739. },
  1740. {
  1741. "alias": "CPU Core 1",
  1742. "color": "rgba(0, 0, 0, 0.23)"
  1743. },
  1744. {
  1745. "alias": "CPU Core 2",
  1746. "color": "rgba(8, 5, 92, 0.23)"
  1747. },
  1748. {
  1749. "alias": "CPU Core 3",
  1750. "color": "rgba(8, 5, 92, 0.23)"
  1751. },
  1752. {
  1753. "alias": "CPU Core 4",
  1754. "color": "rgba(77, 5, 92, 0.23)"
  1755. },
  1756. {
  1757. "alias": "CPU Core 5",
  1758. "color": "rgba(5, 76, 92, 0.23)"
  1759. },
  1760. {
  1761. "alias": "CPU Core 6",
  1762. "color": "rgba(5, 92, 59, 0.23)"
  1763. },
  1764. {
  1765. "alias": "Nvidea",
  1766. "color": "#e5ac0e",
  1767. "linewidth": 2
  1768. }
  1769. ],
  1770. "spaceLength": 10,
  1771. "stack": false,
  1772. "steppedLine": false,
  1773. "targets": [
  1774. {
  1775. "alias": "CPU Package",
  1776. "groupBy": [
  1777. {
  1778. "params": [
  1779. "1m"
  1780. ],
  1781. "type": "time"
  1782. },
  1783. {
  1784. "params": [
  1785. "previous"
  1786. ],
  1787. "type": "fill"
  1788. }
  1789. ],
  1790. "measurement": "Temperature",
  1791. "orderByTime": "ASC",
  1792. "policy": "default",
  1793. "refId": "H",
  1794. "resultFormat": "time_series",
  1795. "select": [
  1796. [
  1797. {
  1798. "params": [
  1799. "value"
  1800. ],
  1801. "type": "field"
  1802. },
  1803. {
  1804. "params": [],
  1805. "type": "mean"
  1806. }
  1807. ]
  1808. ],
  1809. "tags": [
  1810. {
  1811. "key": "sensor",
  1812. "operator": "=",
  1813. "value": "CPU Package"
  1814. }
  1815. ]
  1816. },
  1817. {
  1818. "alias": "Nvidea",
  1819. "groupBy": [
  1820. {
  1821. "params": [
  1822. "1m"
  1823. ],
  1824. "type": "time"
  1825. },
  1826. {
  1827. "params": [
  1828. "previous"
  1829. ],
  1830. "type": "fill"
  1831. }
  1832. ],
  1833. "hide": false,
  1834. "measurement": "Temperature",
  1835. "orderByTime": "ASC",
  1836. "policy": "default",
  1837. "refId": "A",
  1838. "resultFormat": "time_series",
  1839. "select": [
  1840. [
  1841. {
  1842. "params": [
  1843. "value"
  1844. ],
  1845. "type": "field"
  1846. },
  1847. {
  1848. "params": [],
  1849. "type": "mean"
  1850. }
  1851. ]
  1852. ],
  1853. "tags": [
  1854. {
  1855. "key": "identifier",
  1856. "operator": "=",
  1857. "value": "/nvidiagpu/0/temperature/0"
  1858. }
  1859. ]
  1860. },
  1861. {
  1862. "alias": "CPU Core 1",
  1863. "groupBy": [
  1864. {
  1865. "params": [
  1866. "1m"
  1867. ],
  1868. "type": "time"
  1869. },
  1870. {
  1871. "params": [
  1872. "previous"
  1873. ],
  1874. "type": "fill"
  1875. }
  1876. ],
  1877. "hide": false,
  1878. "measurement": "Temperature",
  1879. "orderByTime": "ASC",
  1880. "policy": "default",
  1881. "refId": "B",
  1882. "resultFormat": "time_series",
  1883. "select": [
  1884. [
  1885. {
  1886. "params": [
  1887. "value"
  1888. ],
  1889. "type": "field"
  1890. },
  1891. {
  1892. "params": [],
  1893. "type": "mean"
  1894. }
  1895. ]
  1896. ],
  1897. "tags": [
  1898. {
  1899. "key": "sensor",
  1900. "operator": "=",
  1901. "value": "CPU Core #1"
  1902. }
  1903. ]
  1904. },
  1905. {
  1906. "alias": "CPU Core 2",
  1907. "groupBy": [
  1908. {
  1909. "params": [
  1910. "1m"
  1911. ],
  1912. "type": "time"
  1913. },
  1914. {
  1915. "params": [
  1916. "previous"
  1917. ],
  1918. "type": "fill"
  1919. }
  1920. ],
  1921. "hide": false,
  1922. "measurement": "Temperature",
  1923. "orderByTime": "ASC",
  1924. "policy": "default",
  1925. "refId": "C",
  1926. "resultFormat": "time_series",
  1927. "select": [
  1928. [
  1929. {
  1930. "params": [
  1931. "value"
  1932. ],
  1933. "type": "field"
  1934. },
  1935. {
  1936. "params": [],
  1937. "type": "mean"
  1938. }
  1939. ]
  1940. ],
  1941. "tags": [
  1942. {
  1943. "key": "sensor",
  1944. "operator": "=",
  1945. "value": "CPU Core #2"
  1946. }
  1947. ]
  1948. },
  1949. {
  1950. "alias": "CPU Core 3",
  1951. "groupBy": [
  1952. {
  1953. "params": [
  1954. "1m"
  1955. ],
  1956. "type": "time"
  1957. },
  1958. {
  1959. "params": [
  1960. "previous"
  1961. ],
  1962. "type": "fill"
  1963. }
  1964. ],
  1965. "hide": false,
  1966. "measurement": "Temperature",
  1967. "orderByTime": "ASC",
  1968. "policy": "default",
  1969. "refId": "D",
  1970. "resultFormat": "time_series",
  1971. "select": [
  1972. [
  1973. {
  1974. "params": [
  1975. "value"
  1976. ],
  1977. "type": "field"
  1978. },
  1979. {
  1980. "params": [],
  1981. "type": "mean"
  1982. }
  1983. ]
  1984. ],
  1985. "tags": [
  1986. {
  1987. "key": "sensor",
  1988. "operator": "=",
  1989. "value": "CPU Core #3"
  1990. }
  1991. ]
  1992. },
  1993. {
  1994. "alias": "CPU Core 4",
  1995. "groupBy": [
  1996. {
  1997. "params": [
  1998. "1m"
  1999. ],
  2000. "type": "time"
  2001. },
  2002. {
  2003. "params": [
  2004. "previous"
  2005. ],
  2006. "type": "fill"
  2007. }
  2008. ],
  2009. "hide": false,
  2010. "measurement": "Temperature",
  2011. "orderByTime": "ASC",
  2012. "policy": "default",
  2013. "refId": "E",
  2014. "resultFormat": "time_series",
  2015. "select": [
  2016. [
  2017. {
  2018. "params": [
  2019. "value"
  2020. ],
  2021. "type": "field"
  2022. },
  2023. {
  2024. "params": [],
  2025. "type": "mean"
  2026. }
  2027. ]
  2028. ],
  2029. "tags": [
  2030. {
  2031. "key": "sensor",
  2032. "operator": "=",
  2033. "value": "CPU Core #4"
  2034. }
  2035. ]
  2036. },
  2037. {
  2038. "alias": "CPU Core 5",
  2039. "groupBy": [
  2040. {
  2041. "params": [
  2042. "1m"
  2043. ],
  2044. "type": "time"
  2045. },
  2046. {
  2047. "params": [
  2048. "previous"
  2049. ],
  2050. "type": "fill"
  2051. }
  2052. ],
  2053. "hide": false,
  2054. "measurement": "Temperature",
  2055. "orderByTime": "ASC",
  2056. "policy": "default",
  2057. "refId": "F",
  2058. "resultFormat": "time_series",
  2059. "select": [
  2060. [
  2061. {
  2062. "params": [
  2063. "value"
  2064. ],
  2065. "type": "field"
  2066. },
  2067. {
  2068. "params": [],
  2069. "type": "mean"
  2070. }
  2071. ]
  2072. ],
  2073. "tags": [
  2074. {
  2075. "key": "sensor",
  2076. "operator": "=",
  2077. "value": "CPU Core #5"
  2078. }
  2079. ]
  2080. },
  2081. {
  2082. "alias": "CPU Core 6",
  2083. "groupBy": [
  2084. {
  2085. "params": [
  2086. "1m"
  2087. ],
  2088. "type": "time"
  2089. },
  2090. {
  2091. "params": [
  2092. "previous"
  2093. ],
  2094. "type": "fill"
  2095. }
  2096. ],
  2097. "hide": false,
  2098. "measurement": "Temperature",
  2099. "orderByTime": "ASC",
  2100. "policy": "default",
  2101. "refId": "G",
  2102. "resultFormat": "time_series",
  2103. "select": [
  2104. [
  2105. {
  2106. "params": [
  2107. "value"
  2108. ],
  2109. "type": "field"
  2110. },
  2111. {
  2112. "params": [],
  2113. "type": "mean"
  2114. }
  2115. ]
  2116. ],
  2117. "tags": [
  2118. {
  2119. "key": "sensor",
  2120. "operator": "=",
  2121. "value": "CPU Core #6"
  2122. }
  2123. ]
  2124. },
  2125. {
  2126. "alias": "CPU Core 6",
  2127. "groupBy": [
  2128. {
  2129. "params": [
  2130. "1m"
  2131. ],
  2132. "type": "time"
  2133. },
  2134. {
  2135. "params": [
  2136. "previous"
  2137. ],
  2138. "type": "fill"
  2139. }
  2140. ],
  2141. "hide": false,
  2142. "measurement": "Temperature",
  2143. "orderByTime": "ASC",
  2144. "policy": "default",
  2145. "refId": "I",
  2146. "resultFormat": "time_series",
  2147. "select": [
  2148. [
  2149. {
  2150. "params": [
  2151. "value"
  2152. ],
  2153. "type": "field"
  2154. },
  2155. {
  2156. "params": [],
  2157. "type": "mean"
  2158. }
  2159. ]
  2160. ],
  2161. "tags": [
  2162. {
  2163. "key": "sensor",
  2164. "operator": "=",
  2165. "value": "CPU Core #6"
  2166. }
  2167. ]
  2168. }
  2169. ],
  2170. "thresholds": [],
  2171. "timeFrom": null,
  2172. "timeRegions": [],
  2173. "timeShift": null,
  2174. "title": "Temperature",
  2175. "tooltip": {
  2176. "shared": true,
  2177. "sort": 0,
  2178. "value_type": "individual"
  2179. },
  2180. "transparent": false,
  2181. "type": "graph",
  2182. "xaxis": {
  2183. "buckets": null,
  2184. "mode": "time",
  2185. "name": null,
  2186. "show": true,
  2187. "values": []
  2188. },
  2189. "yaxes": [
  2190. {
  2191. "format": "celsius",
  2192. "label": null,
  2193. "logBase": 1,
  2194. "max": null,
  2195. "min": null,
  2196. "show": true
  2197. },
  2198. {
  2199. "format": "short",
  2200. "label": null,
  2201. "logBase": 1,
  2202. "max": null,
  2203. "min": null,
  2204. "show": false
  2205. }
  2206. ],
  2207. "yaxis": {
  2208. "align": false,
  2209. "alignLevel": null
  2210. }
  2211. },
  2212. {
  2213. "aliasColors": {},
  2214. "bars": false,
  2215. "dashLength": 10,
  2216. "dashes": false,
  2217. "datasource": "${DS_PC_OHMGRAPHITE}",
  2218. "fill": 1,
  2219. "gridPos": {
  2220. "h": 5,
  2221. "w": 12,
  2222. "x": 0,
  2223. "y": 18
  2224. },
  2225. "id": 15,
  2226. "legend": {
  2227. "alignAsTable": true,
  2228. "avg": false,
  2229. "current": true,
  2230. "max": false,
  2231. "min": false,
  2232. "show": true,
  2233. "total": false,
  2234. "values": true
  2235. },
  2236. "lines": true,
  2237. "linewidth": 1,
  2238. "links": [],
  2239. "nullPointMode": "null",
  2240. "percentage": false,
  2241. "pointradius": 5,
  2242. "points": false,
  2243. "renderer": "flot",
  2244. "seriesOverrides": [],
  2245. "spaceLength": 10,
  2246. "stack": false,
  2247. "steppedLine": false,
  2248. "targets": [
  2249. {
  2250. "alias": "SSD Sata",
  2251. "groupBy": [
  2252. {
  2253. "params": [
  2254. "$__interval"
  2255. ],
  2256. "type": "time"
  2257. },
  2258. {
  2259. "params": [
  2260. "previous"
  2261. ],
  2262. "type": "fill"
  2263. }
  2264. ],
  2265. "measurement": "Data",
  2266. "orderByTime": "ASC",
  2267. "policy": "default",
  2268. "refId": "A",
  2269. "resultFormat": "time_series",
  2270. "select": [
  2271. [
  2272. {
  2273. "params": [
  2274. "value"
  2275. ],
  2276. "type": "field"
  2277. },
  2278. {
  2279. "params": [],
  2280. "type": "mean"
  2281. }
  2282. ]
  2283. ],
  2284. "tags": [
  2285. {
  2286. "key": "hardware",
  2287. "operator": "=",
  2288. "value": "Samsung SSD 840 EVO 250GB"
  2289. }
  2290. ]
  2291. }
  2292. ],
  2293. "thresholds": [],
  2294. "timeFrom": null,
  2295. "timeRegions": [],
  2296. "timeShift": null,
  2297. "title": "Total Bytes Written",
  2298. "tooltip": {
  2299. "shared": true,
  2300. "sort": 0,
  2301. "value_type": "individual"
  2302. },
  2303. "type": "graph",
  2304. "xaxis": {
  2305. "buckets": null,
  2306. "mode": "time",
  2307. "name": null,
  2308. "show": true,
  2309. "values": []
  2310. },
  2311. "yaxes": [
  2312. {
  2313. "decimals": -1,
  2314. "format": "decgbytes",
  2315. "label": null,
  2316. "logBase": 1,
  2317. "max": null,
  2318. "min": "0",
  2319. "show": true
  2320. },
  2321. {
  2322. "format": "short",
  2323. "label": null,
  2324. "logBase": 1,
  2325. "max": null,
  2326. "min": null,
  2327. "show": true
  2328. }
  2329. ],
  2330. "yaxis": {
  2331. "align": false,
  2332. "alignLevel": null
  2333. }
  2334. },
  2335. {
  2336. "aliasColors": {},
  2337. "bars": false,
  2338. "dashLength": 10,
  2339. "dashes": false,
  2340. "datasource": "-- Mixed --",
  2341. "fill": 0,
  2342. "gridPos": {
  2343. "h": 6,
  2344. "w": 12,
  2345. "x": 12,
  2346. "y": 20
  2347. },
  2348. "id": 6,
  2349. "legend": {
  2350. "alignAsTable": true,
  2351. "avg": true,
  2352. "current": true,
  2353. "max": true,
  2354. "min": true,
  2355. "rightSide": false,
  2356. "show": true,
  2357. "total": false,
  2358. "values": true
  2359. },
  2360. "lines": true,
  2361. "linewidth": 1,
  2362. "links": [],
  2363. "nullPointMode": "null",
  2364. "percentage": false,
  2365. "pointradius": 5,
  2366. "points": false,
  2367. "renderer": "flot",
  2368. "seriesOverrides": [
  2369. {
  2370. "alias": "CPU Package",
  2371. "color": "rgb(255, 93, 0)"
  2372. },
  2373. {
  2374. "alias": "CPU DRAM"
  2375. },
  2376. {
  2377. "alias": "CPU Graphics"
  2378. },
  2379. {
  2380. "alias": "CPU Cores",
  2381. "color": "rgba(174, 89, 30, 0.28)"
  2382. }
  2383. ],
  2384. "spaceLength": 10,
  2385. "stack": false,
  2386. "steppedLine": false,
  2387. "targets": [
  2388. {
  2389. "alias": "CPU Package",
  2390. "datasource": "${DS_PC_OHMGRAPHITE}",
  2391. "groupBy": [
  2392. {
  2393. "params": [
  2394. "1m"
  2395. ],
  2396. "type": "time"
  2397. },
  2398. {
  2399. "params": [
  2400. "previous"
  2401. ],
  2402. "type": "fill"
  2403. }
  2404. ],
  2405. "measurement": "Power",
  2406. "orderByTime": "ASC",
  2407. "policy": "default",
  2408. "refId": "A",
  2409. "resultFormat": "time_series",
  2410. "select": [
  2411. [
  2412. {
  2413. "params": [
  2414. "value"
  2415. ],
  2416. "type": "field"
  2417. },
  2418. {
  2419. "params": [],
  2420. "type": "mean"
  2421. }
  2422. ]
  2423. ],
  2424. "tags": [
  2425. {
  2426. "key": "sensor",
  2427. "operator": "=",
  2428. "value": "CPU Package"
  2429. }
  2430. ]
  2431. },
  2432. {
  2433. "alias": "CPU DRAM",
  2434. "datasource": "${DS_PC_OHMGRAPHITE}",
  2435. "groupBy": [
  2436. {
  2437. "params": [
  2438. "1m"
  2439. ],
  2440. "type": "time"
  2441. },
  2442. {
  2443. "params": [
  2444. "previous"
  2445. ],
  2446. "type": "fill"
  2447. }
  2448. ],
  2449. "measurement": "Power",
  2450. "orderByTime": "ASC",
  2451. "policy": "default",
  2452. "refId": "B",
  2453. "resultFormat": "time_series",
  2454. "select": [
  2455. [
  2456. {
  2457. "params": [
  2458. "value"
  2459. ],
  2460. "type": "field"
  2461. },
  2462. {
  2463. "params": [],
  2464. "type": "mean"
  2465. }
  2466. ]
  2467. ],
  2468. "tags": [
  2469. {
  2470. "key": "sensor",
  2471. "operator": "=",
  2472. "value": "CPU DRAM"
  2473. }
  2474. ]
  2475. },
  2476. {
  2477. "alias": "CPU Graphics",
  2478. "datasource": "${DS_PC_OHMGRAPHITE}",
  2479. "groupBy": [
  2480. {
  2481. "params": [
  2482. "1m"
  2483. ],
  2484. "type": "time"
  2485. },
  2486. {
  2487. "params": [
  2488. "previous"
  2489. ],
  2490. "type": "fill"
  2491. }
  2492. ],
  2493. "measurement": "Power",
  2494. "orderByTime": "ASC",
  2495. "policy": "default",
  2496. "refId": "C",
  2497. "resultFormat": "time_series",
  2498. "select": [
  2499. [
  2500. {
  2501. "params": [
  2502. "value"
  2503. ],
  2504. "type": "field"
  2505. },
  2506. {
  2507. "params": [],
  2508. "type": "mean"
  2509. }
  2510. ]
  2511. ],
  2512. "tags": [
  2513. {
  2514. "key": "sensor",
  2515. "operator": "=",
  2516. "value": "CPU Graphics"
  2517. }
  2518. ]
  2519. },
  2520. {
  2521. "alias": "CPU Cores",
  2522. "datasource": "${DS_PC_OHMGRAPHITE}",
  2523. "groupBy": [
  2524. {
  2525. "params": [
  2526. "1m"
  2527. ],
  2528. "type": "time"
  2529. },
  2530. {
  2531. "params": [
  2532. "previous"
  2533. ],
  2534. "type": "fill"
  2535. }
  2536. ],
  2537. "measurement": "Power",
  2538. "orderByTime": "ASC",
  2539. "policy": "default",
  2540. "refId": "D",
  2541. "resultFormat": "time_series",
  2542. "select": [
  2543. [
  2544. {
  2545. "params": [
  2546. "value"
  2547. ],
  2548. "type": "field"
  2549. },
  2550. {
  2551. "params": [],
  2552. "type": "mean"
  2553. }
  2554. ]
  2555. ],
  2556. "tags": [
  2557. {
  2558. "key": "sensor",
  2559. "operator": "=",
  2560. "value": "CPU Cores"
  2561. }
  2562. ]
  2563. }
  2564. ],
  2565. "thresholds": [],
  2566. "timeFrom": null,
  2567. "timeRegions": [],
  2568. "timeShift": null,
  2569. "title": "Energy Consumption",
  2570. "tooltip": {
  2571. "shared": true,
  2572. "sort": 0,
  2573. "value_type": "individual"
  2574. },
  2575. "type": "graph",
  2576. "xaxis": {
  2577. "buckets": null,
  2578. "mode": "time",
  2579. "name": null,
  2580. "show": true,
  2581. "values": []
  2582. },
  2583. "yaxes": [
  2584. {
  2585. "format": "watt",
  2586. "label": null,
  2587. "logBase": 1,
  2588. "max": null,
  2589. "min": "0",
  2590. "show": true
  2591. },
  2592. {
  2593. "format": "short",
  2594. "label": null,
  2595. "logBase": 1,
  2596. "max": null,
  2597. "min": null,
  2598. "show": false
  2599. }
  2600. ],
  2601. "yaxis": {
  2602. "align": false,
  2603. "alignLevel": null
  2604. }
  2605. },
  2606. {
  2607. "aliasColors": {},
  2608. "bars": false,
  2609. "dashLength": 10,
  2610. "dashes": false,
  2611. "datasource": "${DS_PC_OHMGRAPHITE}",
  2612. "fill": 1,
  2613. "gridPos": {
  2614. "h": 4,
  2615. "w": 12,
  2616. "x": 0,
  2617. "y": 23
  2618. },
  2619. "id": 8,
  2620. "legend": {
  2621. "alignAsTable": true,
  2622. "avg": true,
  2623. "current": true,
  2624. "max": true,
  2625. "min": true,
  2626. "rightSide": true,
  2627. "show": true,
  2628. "total": false,
  2629. "values": true
  2630. },
  2631. "lines": true,
  2632. "linewidth": 1,
  2633. "links": [],
  2634. "nullPointMode": "null",
  2635. "percentage": false,
  2636. "pointradius": 5,
  2637. "points": false,
  2638. "renderer": "flot",
  2639. "seriesOverrides": [],
  2640. "spaceLength": 10,
  2641. "stack": true,
  2642. "steppedLine": false,
  2643. "targets": [
  2644. {
  2645. "alias": "Used",
  2646. "groupBy": [
  2647. {
  2648. "params": [
  2649. "$__interval"
  2650. ],
  2651. "type": "time"
  2652. },
  2653. {
  2654. "params": [
  2655. "previous"
  2656. ],
  2657. "type": "fill"
  2658. }
  2659. ],
  2660. "measurement": "Data",
  2661. "orderByTime": "ASC",
  2662. "policy": "default",
  2663. "refId": "A",
  2664. "resultFormat": "time_series",
  2665. "select": [
  2666. [
  2667. {
  2668. "params": [
  2669. "value"
  2670. ],
  2671. "type": "field"
  2672. },
  2673. {
  2674. "params": [],
  2675. "type": "mean"
  2676. }
  2677. ]
  2678. ],
  2679. "tags": [
  2680. {
  2681. "key": "sensor",
  2682. "operator": "=",
  2683. "value": "Used Memory"
  2684. }
  2685. ]
  2686. },
  2687. {
  2688. "alias": "Free",
  2689. "groupBy": [
  2690. {
  2691. "params": [
  2692. "$__interval"
  2693. ],
  2694. "type": "time"
  2695. },
  2696. {
  2697. "params": [
  2698. "previous"
  2699. ],
  2700. "type": "fill"
  2701. }
  2702. ],
  2703. "measurement": "Data",
  2704. "orderByTime": "ASC",
  2705. "policy": "default",
  2706. "refId": "B",
  2707. "resultFormat": "time_series",
  2708. "select": [
  2709. [
  2710. {
  2711. "params": [
  2712. "value"
  2713. ],
  2714. "type": "field"
  2715. },
  2716. {
  2717. "params": [],
  2718. "type": "mean"
  2719. }
  2720. ]
  2721. ],
  2722. "tags": [
  2723. {
  2724. "key": "sensor",
  2725. "operator": "=",
  2726. "value": "Available Memory"
  2727. }
  2728. ]
  2729. }
  2730. ],
  2731. "thresholds": [],
  2732. "timeFrom": null,
  2733. "timeRegions": [],
  2734. "timeShift": null,
  2735. "title": "RAM",
  2736. "tooltip": {
  2737. "shared": true,
  2738. "sort": 0,
  2739. "value_type": "individual"
  2740. },
  2741. "type": "graph",
  2742. "xaxis": {
  2743. "buckets": null,
  2744. "mode": "time",
  2745. "name": null,
  2746. "show": true,
  2747. "values": []
  2748. },
  2749. "yaxes": [
  2750. {
  2751. "format": "decgbytes",
  2752. "label": null,
  2753. "logBase": 1,
  2754. "max": null,
  2755. "min": "0",
  2756. "show": true
  2757. },
  2758. {
  2759. "format": "short",
  2760. "label": null,
  2761. "logBase": 1,
  2762. "max": null,
  2763. "min": null,
  2764. "show": true
  2765. }
  2766. ],
  2767. "yaxis": {
  2768. "align": false,
  2769. "alignLevel": null
  2770. }
  2771. },
  2772. {
  2773. "aliasColors": {},
  2774. "bars": false,
  2775. "dashLength": 10,
  2776. "dashes": false,
  2777. "datasource": "${DS_PC_OHMGRAPHITE}",
  2778. "fill": 0,
  2779. "gridPos": {
  2780. "h": 6,
  2781. "w": 12,
  2782. "x": 12,
  2783. "y": 26
  2784. },
  2785. "id": 10,
  2786. "legend": {
  2787. "alignAsTable": true,
  2788. "avg": true,
  2789. "current": true,
  2790. "max": true,
  2791. "min": true,
  2792. "show": true,
  2793. "total": false,
  2794. "values": true
  2795. },
  2796. "lines": true,
  2797. "linewidth": 1,
  2798. "links": [],
  2799. "nullPointMode": "null",
  2800. "percentage": false,
  2801. "pointradius": 5,
  2802. "points": false,
  2803. "renderer": "flot",
  2804. "seriesOverrides": [],
  2805. "spaceLength": 10,
  2806. "stack": false,
  2807. "steppedLine": false,
  2808. "targets": [
  2809. {
  2810. "alias": "SSD M.2",
  2811. "groupBy": [
  2812. {
  2813. "params": [
  2814. "$__interval"
  2815. ],
  2816. "type": "time"
  2817. },
  2818. {
  2819. "params": [
  2820. "previous"
  2821. ],
  2822. "type": "fill"
  2823. }
  2824. ],
  2825. "measurement": "Load",
  2826. "orderByTime": "ASC",
  2827. "policy": "default",
  2828. "refId": "A",
  2829. "resultFormat": "time_series",
  2830. "select": [
  2831. [
  2832. {
  2833. "params": [
  2834. "value"
  2835. ],
  2836. "type": "field"
  2837. },
  2838. {
  2839. "params": [],
  2840. "type": "mean"
  2841. }
  2842. ]
  2843. ],
  2844. "tags": [
  2845. {
  2846. "key": "hardware",
  2847. "operator": "=",
  2848. "value": "Generic Hard Disk"
  2849. },
  2850. {
  2851. "condition": "AND",
  2852. "key": "sensor",
  2853. "operator": "=",
  2854. "value": "Used Space"
  2855. }
  2856. ]
  2857. },
  2858. {
  2859. "alias": "SSD SATA",
  2860. "groupBy": [
  2861. {
  2862. "params": [
  2863. "$__interval"
  2864. ],
  2865. "type": "time"
  2866. },
  2867. {
  2868. "params": [
  2869. "previous"
  2870. ],
  2871. "type": "fill"
  2872. }
  2873. ],
  2874. "measurement": "Load",
  2875. "orderByTime": "ASC",
  2876. "policy": "default",
  2877. "refId": "B",
  2878. "resultFormat": "time_series",
  2879. "select": [
  2880. [
  2881. {
  2882. "params": [
  2883. "value"
  2884. ],
  2885. "type": "field"
  2886. },
  2887. {
  2888. "params": [],
  2889. "type": "mean"
  2890. }
  2891. ]
  2892. ],
  2893. "tags": [
  2894. {
  2895. "key": "hardware",
  2896. "operator": "=",
  2897. "value": "Samsung SSD 840 EVO 250GB"
  2898. },
  2899. {
  2900. "condition": "AND",
  2901. "key": "sensor",
  2902. "operator": "=",
  2903. "value": "Used Space"
  2904. }
  2905. ]
  2906. }
  2907. ],
  2908. "thresholds": [],
  2909. "timeFrom": null,
  2910. "timeRegions": [],
  2911. "timeShift": null,
  2912. "title": "SSD/HDD Used %",
  2913. "tooltip": {
  2914. "shared": true,
  2915. "sort": 0,
  2916. "value_type": "individual"
  2917. },
  2918. "type": "graph",
  2919. "xaxis": {
  2920. "buckets": null,
  2921. "mode": "time",
  2922. "name": null,
  2923. "show": true,
  2924. "values": []
  2925. },
  2926. "yaxes": [
  2927. {
  2928. "format": "percent",
  2929. "label": null,
  2930. "logBase": 1,
  2931. "max": "100",
  2932. "min": "0",
  2933. "show": true
  2934. },
  2935. {
  2936. "format": "short",
  2937. "label": null,
  2938. "logBase": 1,
  2939. "max": null,
  2940. "min": null,
  2941. "show": false
  2942. }
  2943. ],
  2944. "yaxis": {
  2945. "align": false,
  2946. "alignLevel": null
  2947. }
  2948. },
  2949. {
  2950. "aliasColors": {},
  2951. "bars": false,
  2952. "dashLength": 10,
  2953. "dashes": false,
  2954. "datasource": "${DS_PC_OHMGRAPHITE}",
  2955. "fill": 1,
  2956. "gridPos": {
  2957. "h": 4,
  2958. "w": 12,
  2959. "x": 0,
  2960. "y": 27
  2961. },
  2962. "id": 4,
  2963. "legend": {
  2964. "alignAsTable": true,
  2965. "avg": true,
  2966. "current": true,
  2967. "max": true,
  2968. "min": true,
  2969. "rightSide": true,
  2970. "show": true,
  2971. "total": false,
  2972. "values": true
  2973. },
  2974. "lines": true,
  2975. "linewidth": 1,
  2976. "links": [],
  2977. "nullPointMode": "null",
  2978. "percentage": false,
  2979. "pointradius": 5,
  2980. "points": false,
  2981. "renderer": "flot",
  2982. "seriesOverrides": [],
  2983. "spaceLength": 10,
  2984. "stack": true,
  2985. "steppedLine": false,
  2986. "targets": [
  2987. {
  2988. "alias": "Used",
  2989. "groupBy": [
  2990. {
  2991. "params": [
  2992. "$__interval"
  2993. ],
  2994. "type": "time"
  2995. },
  2996. {
  2997. "params": [
  2998. "previous"
  2999. ],
  3000. "type": "fill"
  3001. }
  3002. ],
  3003. "measurement": "SmallData",
  3004. "orderByTime": "ASC",
  3005. "policy": "default",
  3006. "refId": "B",
  3007. "resultFormat": "time_series",
  3008. "select": [
  3009. [
  3010. {
  3011. "params": [
  3012. "value"
  3013. ],
  3014. "type": "field"
  3015. },
  3016. {
  3017. "params": [],
  3018. "type": "mean"
  3019. }
  3020. ]
  3021. ],
  3022. "tags": [
  3023. {
  3024. "key": "sensor",
  3025. "operator": "=",
  3026. "value": "GPU Memory Used"
  3027. }
  3028. ]
  3029. },
  3030. {
  3031. "alias": "Free",
  3032. "groupBy": [
  3033. {
  3034. "params": [
  3035. "$__interval"
  3036. ],
  3037. "type": "time"
  3038. },
  3039. {
  3040. "params": [
  3041. "previous"
  3042. ],
  3043. "type": "fill"
  3044. }
  3045. ],
  3046. "measurement": "SmallData",
  3047. "orderByTime": "ASC",
  3048. "policy": "default",
  3049. "refId": "A",
  3050. "resultFormat": "time_series",
  3051. "select": [
  3052. [
  3053. {
  3054. "params": [
  3055. "value"
  3056. ],
  3057. "type": "field"
  3058. },
  3059. {
  3060. "params": [],
  3061. "type": "mean"
  3062. }
  3063. ]
  3064. ],
  3065. "tags": [
  3066. {
  3067. "key": "sensor",
  3068. "operator": "=",
  3069. "value": "GPU Memory Free"
  3070. }
  3071. ]
  3072. }
  3073. ],
  3074. "thresholds": [],
  3075. "timeFrom": null,
  3076. "timeRegions": [],
  3077. "timeShift": null,
  3078. "title": "GPU Memory",
  3079. "tooltip": {
  3080. "shared": true,
  3081. "sort": 2,
  3082. "value_type": "individual"
  3083. },
  3084. "type": "graph",
  3085. "xaxis": {
  3086. "buckets": null,
  3087. "mode": "time",
  3088. "name": null,
  3089. "show": true,
  3090. "values": []
  3091. },
  3092. "yaxes": [
  3093. {
  3094. "format": "decmbytes",
  3095. "label": null,
  3096. "logBase": 1,
  3097. "max": null,
  3098. "min": "0",
  3099. "show": true
  3100. },
  3101. {
  3102. "format": "short",
  3103. "label": null,
  3104. "logBase": 1,
  3105. "max": null,
  3106. "min": null,
  3107. "show": false
  3108. }
  3109. ],
  3110. "yaxis": {
  3111. "align": false,
  3112. "alignLevel": null
  3113. }
  3114. },
  3115. {
  3116. "aliasColors": {},
  3117. "bars": false,
  3118. "dashLength": 10,
  3119. "dashes": false,
  3120. "datasource": "${DS_PC_OHMGRAPHITE}",
  3121. "fill": 0,
  3122. "gridPos": {
  3123. "h": 4,
  3124. "w": 12,
  3125. "x": 12,
  3126. "y": 32
  3127. },
  3128. "id": 19,
  3129. "legend": {
  3130. "alignAsTable": true,
  3131. "avg": true,
  3132. "current": true,
  3133. "max": true,
  3134. "min": true,
  3135. "rightSide": true,
  3136. "show": true,
  3137. "total": false,
  3138. "values": true
  3139. },
  3140. "lines": true,
  3141. "linewidth": 1,
  3142. "links": [],
  3143. "nullPointMode": "null",
  3144. "percentage": false,
  3145. "pointradius": 5,
  3146. "points": false,
  3147. "renderer": "flot",
  3148. "seriesOverrides": [],
  3149. "spaceLength": 10,
  3150. "stack": false,
  3151. "steppedLine": false,
  3152. "targets": [
  3153. {
  3154. "alias": "VCORE",
  3155. "groupBy": [
  3156. {
  3157. "params": [
  3158. "$__interval"
  3159. ],
  3160. "type": "time"
  3161. },
  3162. {
  3163. "params": [
  3164. "previous"
  3165. ],
  3166. "type": "fill"
  3167. }
  3168. ],
  3169. "measurement": "Voltage",
  3170. "orderByTime": "ASC",
  3171. "policy": "default",
  3172. "refId": "A",
  3173. "resultFormat": "time_series",
  3174. "select": [
  3175. [
  3176. {
  3177. "params": [
  3178. "value"
  3179. ],
  3180. "type": "field"
  3181. },
  3182. {
  3183. "params": [],
  3184. "type": "mean"
  3185. }
  3186. ]
  3187. ],
  3188. "tags": [
  3189. {
  3190. "key": "sensor",
  3191. "operator": "=",
  3192. "value": "CPU VCore"
  3193. }
  3194. ]
  3195. },
  3196. {
  3197. "alias": "Voltage 12",
  3198. "groupBy": [
  3199. {
  3200. "params": [
  3201. "$__interval"
  3202. ],
  3203. "type": "time"
  3204. },
  3205. {
  3206. "params": [
  3207. "previous"
  3208. ],
  3209. "type": "fill"
  3210. }
  3211. ],
  3212. "measurement": "Voltage",
  3213. "orderByTime": "ASC",
  3214. "policy": "default",
  3215. "refId": "B",
  3216. "resultFormat": "time_series",
  3217. "select": [
  3218. [
  3219. {
  3220. "params": [
  3221. "value"
  3222. ],
  3223. "type": "field"
  3224. },
  3225. {
  3226. "params": [],
  3227. "type": "mean"
  3228. }
  3229. ]
  3230. ],
  3231. "tags": [
  3232. {
  3233. "key": "sensor",
  3234. "operator": "=",
  3235. "value": "Voltage #12"
  3236. }
  3237. ]
  3238. },
  3239. {
  3240. "alias": "Voltage 15",
  3241. "groupBy": [
  3242. {
  3243. "params": [
  3244. "$__interval"
  3245. ],
  3246. "type": "time"
  3247. },
  3248. {
  3249. "params": [
  3250. "previous"
  3251. ],
  3252. "type": "fill"
  3253. }
  3254. ],
  3255. "measurement": "Voltage",
  3256. "orderByTime": "ASC",
  3257. "policy": "default",
  3258. "refId": "C",
  3259. "resultFormat": "time_series",
  3260. "select": [
  3261. [
  3262. {
  3263. "params": [
  3264. "value"
  3265. ],
  3266. "type": "field"
  3267. },
  3268. {
  3269. "params": [],
  3270. "type": "mean"
  3271. }
  3272. ]
  3273. ],
  3274. "tags": [
  3275. {
  3276. "key": "sensor",
  3277. "operator": "=",
  3278. "value": "Voltage #15"
  3279. }
  3280. ]
  3281. }
  3282. ],
  3283. "thresholds": [],
  3284. "timeFrom": null,
  3285. "timeRegions": [],
  3286. "timeShift": null,
  3287. "title": "Voltage",
  3288. "tooltip": {
  3289. "shared": true,
  3290. "sort": 0,
  3291. "value_type": "individual"
  3292. },
  3293. "type": "graph",
  3294. "xaxis": {
  3295. "buckets": null,
  3296. "mode": "time",
  3297. "name": null,
  3298. "show": true,
  3299. "values": []
  3300. },
  3301. "yaxes": [
  3302. {
  3303. "decimals": 3,
  3304. "format": "volt",
  3305. "label": null,
  3306. "logBase": 1,
  3307. "max": null,
  3308. "min": null,
  3309. "show": true
  3310. },
  3311. {
  3312. "format": "short",
  3313. "label": null,
  3314. "logBase": 1,
  3315. "max": null,
  3316. "min": null,
  3317. "show": true
  3318. }
  3319. ],
  3320. "yaxis": {
  3321. "align": false,
  3322. "alignLevel": null
  3323. }
  3324. }
  3325. ],
  3326. "refresh": "5s",
  3327. "schemaVersion": 16,
  3328. "style": "dark",
  3329. "tags": [],
  3330. "templating": {
  3331. "list": []
  3332. },
  3333. "time": {
  3334. "from": "now-1h",
  3335. "to": "now"
  3336. },
  3337. "timepicker": {
  3338. "refresh_intervals": [
  3339. "5s",
  3340. "10s",
  3341. "30s",
  3342. "1m",
  3343. "5m",
  3344. "15m",
  3345. "30m",
  3346. "1h",
  3347. "2h",
  3348. "1d"
  3349. ],
  3350. "time_options": [
  3351. "5m",
  3352. "15m",
  3353. "1h",
  3354. "6h",
  3355. "12h",
  3356. "24h",
  3357. "2d",
  3358. "7d",
  3359. "30d"
  3360. ]
  3361. },
  3362. "timezone": "",
  3363. "title": "Ohm",
  3364. "uid": "IYyUldymz",
  3365. "version": 3
  3366. }