status-render.json.in 58 KB

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