status.json.in 57 KB

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