dashboard-example.json 57 KB

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