status.json.in 61 KB

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