panel_tests_polystat.json 75 KB

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