status-render.json.in 58 KB

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