grafana_seaweedfs.json 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490
  1. {
  2. "__inputs": [
  3. {
  4. "name": "DS_PROMETHEUS",
  5. "label": "Prometheus",
  6. "description": "",
  7. "type": "datasource",
  8. "pluginId": "prometheus",
  9. "pluginName": "Prometheus"
  10. }
  11. ],
  12. "__requires": [
  13. {
  14. "type": "grafana",
  15. "id": "grafana",
  16. "name": "Grafana",
  17. "version": "8.1.2"
  18. },
  19. {
  20. "type": "panel",
  21. "id": "graph",
  22. "name": "Graph (old)",
  23. "version": ""
  24. },
  25. {
  26. "type": "datasource",
  27. "id": "prometheus",
  28. "name": "Prometheus",
  29. "version": "1.0.0"
  30. }
  31. ],
  32. "annotations": {
  33. "list": [
  34. {
  35. "builtIn": 1,
  36. "datasource": "${DS_PROMETHEUS}",
  37. "enable": true,
  38. "hide": true,
  39. "iconColor": "rgba(0, 211, 255, 1)",
  40. "limit": 100,
  41. "name": "Annotations & Alerts",
  42. "showIn": 0,
  43. "type": "dashboard"
  44. }
  45. ]
  46. },
  47. "editable": true,
  48. "gnetId": 10423,
  49. "graphTooltip": 0,
  50. "id": null,
  51. "links": [],
  52. "panels": [
  53. {
  54. "collapsed": true,
  55. "datasource": null,
  56. "fieldConfig": {
  57. "defaults": {},
  58. "overrides": []
  59. },
  60. "gridPos": {
  61. "h": 1,
  62. "w": 24,
  63. "x": 0,
  64. "y": 0
  65. },
  66. "id": 69,
  67. "panels": [
  68. {
  69. "aliasColors": {},
  70. "bars": false,
  71. "dashLength": 10,
  72. "dashes": false,
  73. "datasource": "${DS_PROMETHEUS}",
  74. "editable": true,
  75. "error": false,
  76. "fill": 1,
  77. "grid": {},
  78. "gridPos": {
  79. "h": 7,
  80. "w": 8,
  81. "x": 0,
  82. "y": 1
  83. },
  84. "id": 46,
  85. "legend": {
  86. "avg": false,
  87. "current": false,
  88. "max": false,
  89. "min": false,
  90. "show": true,
  91. "total": false,
  92. "values": false
  93. },
  94. "lines": true,
  95. "linewidth": 1,
  96. "links": [],
  97. "nullPointMode": "null as zero",
  98. "percentage": false,
  99. "pointradius": 5,
  100. "points": false,
  101. "renderer": "flot",
  102. "seriesOverrides": [],
  103. "spaceLength": 10,
  104. "stack": false,
  105. "steppedLine": false,
  106. "targets": [
  107. {
  108. "expr": "histogram_quantile(0.90, sum(rate(SeaweedFS_filer_request_seconds_bucket[1m])) by (le))",
  109. "format": "time_series",
  110. "hide": false,
  111. "intervalFactor": 2,
  112. "legendFormat": "average",
  113. "refId": "A",
  114. "step": 60
  115. },
  116. {
  117. "expr": "histogram_quantile(0.90, sum(rate(SeaweedFS_filer_request_seconds_bucket[1m])) by (le, type))",
  118. "format": "time_series",
  119. "hide": false,
  120. "intervalFactor": 2,
  121. "legendFormat": "{{type}}",
  122. "refId": "B",
  123. "step": 60
  124. }
  125. ],
  126. "thresholds": [],
  127. "timeFrom": null,
  128. "timeShift": null,
  129. "title": "Filer Request Duration 90th percentile",
  130. "tooltip": {
  131. "msResolution": true,
  132. "shared": true,
  133. "sort": 0,
  134. "value_type": "cumulative"
  135. },
  136. "type": "graph",
  137. "xaxis": {
  138. "buckets": null,
  139. "mode": "time",
  140. "name": null,
  141. "show": true,
  142. "values": []
  143. },
  144. "yaxes": [
  145. {
  146. "format": "s",
  147. "label": null,
  148. "logBase": 1,
  149. "max": null,
  150. "min": 0,
  151. "show": true
  152. },
  153. {
  154. "format": "short",
  155. "label": null,
  156. "logBase": 1,
  157. "max": null,
  158. "min": null,
  159. "show": false
  160. }
  161. ]
  162. },
  163. {
  164. "aliasColors": {},
  165. "bars": false,
  166. "dashLength": 10,
  167. "dashes": false,
  168. "datasource": "${DS_PROMETHEUS}",
  169. "editable": true,
  170. "error": false,
  171. "fill": 1,
  172. "grid": {},
  173. "gridPos": {
  174. "h": 7,
  175. "w": 8,
  176. "x": 8,
  177. "y": 1
  178. },
  179. "id": 49,
  180. "legend": {
  181. "avg": false,
  182. "current": false,
  183. "max": false,
  184. "min": false,
  185. "show": true,
  186. "total": false,
  187. "values": false
  188. },
  189. "lines": true,
  190. "linewidth": 1,
  191. "links": [],
  192. "nullPointMode": "null as zero",
  193. "percentage": false,
  194. "pointradius": 5,
  195. "points": false,
  196. "renderer": "flot",
  197. "seriesOverrides": [],
  198. "spaceLength": 10,
  199. "stack": false,
  200. "steppedLine": false,
  201. "targets": [
  202. {
  203. "expr": "histogram_quantile(0.95, sum(rate(SeaweedFS_filer_request_seconds_bucket[1m])) by (le))",
  204. "format": "time_series",
  205. "hide": false,
  206. "intervalFactor": 2,
  207. "legendFormat": "average",
  208. "refId": "A",
  209. "step": 60
  210. },
  211. {
  212. "expr": "histogram_quantile(0.95, sum(rate(SeaweedFS_filer_request_seconds_bucket[1m])) by (le, type))",
  213. "format": "time_series",
  214. "hide": false,
  215. "intervalFactor": 2,
  216. "legendFormat": "{{type}}",
  217. "refId": "B",
  218. "step": 60
  219. },
  220. {
  221. "expr": "",
  222. "format": "time_series",
  223. "intervalFactor": 2,
  224. "refId": "C"
  225. }
  226. ],
  227. "thresholds": [],
  228. "timeFrom": null,
  229. "timeShift": null,
  230. "title": "Filer Request Duration 95th percentile",
  231. "tooltip": {
  232. "msResolution": true,
  233. "shared": true,
  234. "sort": 0,
  235. "value_type": "cumulative"
  236. },
  237. "type": "graph",
  238. "xaxis": {
  239. "buckets": null,
  240. "mode": "time",
  241. "name": null,
  242. "show": true,
  243. "values": []
  244. },
  245. "yaxes": [
  246. {
  247. "format": "s",
  248. "label": null,
  249. "logBase": 1,
  250. "max": null,
  251. "min": 0,
  252. "show": true
  253. },
  254. {
  255. "format": "short",
  256. "label": null,
  257. "logBase": 1,
  258. "max": null,
  259. "min": null,
  260. "show": false
  261. }
  262. ]
  263. },
  264. {
  265. "aliasColors": {},
  266. "bars": false,
  267. "dashLength": 10,
  268. "dashes": false,
  269. "datasource": "${DS_PROMETHEUS}",
  270. "editable": true,
  271. "error": false,
  272. "fill": 1,
  273. "grid": {},
  274. "gridPos": {
  275. "h": 7,
  276. "w": 8,
  277. "x": 16,
  278. "y": 1
  279. },
  280. "id": 45,
  281. "legend": {
  282. "avg": false,
  283. "current": false,
  284. "max": false,
  285. "min": false,
  286. "show": true,
  287. "total": false,
  288. "values": false
  289. },
  290. "lines": true,
  291. "linewidth": 1,
  292. "links": [],
  293. "nullPointMode": "null as zero",
  294. "percentage": false,
  295. "pointradius": 5,
  296. "points": false,
  297. "renderer": "flot",
  298. "seriesOverrides": [],
  299. "spaceLength": 10,
  300. "stack": false,
  301. "steppedLine": false,
  302. "targets": [
  303. {
  304. "expr": "histogram_quantile(0.99, sum(rate(SeaweedFS_filer_request_seconds_bucket[1m])) by (le))",
  305. "format": "time_series",
  306. "hide": false,
  307. "intervalFactor": 2,
  308. "legendFormat": "average",
  309. "refId": "A",
  310. "step": 60
  311. },
  312. {
  313. "expr": "histogram_quantile(0.99, sum(rate(SeaweedFS_filer_request_seconds_bucket[1m])) by (le, type))",
  314. "format": "time_series",
  315. "hide": false,
  316. "intervalFactor": 2,
  317. "legendFormat": "{{type}}",
  318. "refId": "B",
  319. "step": 60
  320. },
  321. {
  322. "expr": "",
  323. "format": "time_series",
  324. "intervalFactor": 2,
  325. "refId": "C"
  326. }
  327. ],
  328. "thresholds": [],
  329. "timeFrom": null,
  330. "timeShift": null,
  331. "title": "Filer Request Duration 99th percentile",
  332. "tooltip": {
  333. "msResolution": true,
  334. "shared": true,
  335. "sort": 0,
  336. "value_type": "cumulative"
  337. },
  338. "type": "graph",
  339. "xaxis": {
  340. "buckets": null,
  341. "mode": "time",
  342. "name": null,
  343. "show": true,
  344. "values": []
  345. },
  346. "yaxes": [
  347. {
  348. "format": "s",
  349. "label": null,
  350. "logBase": 1,
  351. "max": null,
  352. "min": 0,
  353. "show": true
  354. },
  355. {
  356. "format": "short",
  357. "label": null,
  358. "logBase": 1,
  359. "max": null,
  360. "min": null,
  361. "show": false
  362. }
  363. ]
  364. },
  365. {
  366. "aliasColors": {},
  367. "bars": false,
  368. "dashLength": 10,
  369. "dashes": false,
  370. "datasource": "${DS_PROMETHEUS}",
  371. "editable": true,
  372. "error": false,
  373. "fill": 0,
  374. "grid": {},
  375. "gridPos": {
  376. "h": 7,
  377. "w": 24,
  378. "x": 0,
  379. "y": 8
  380. },
  381. "id": 2,
  382. "legend": {
  383. "alignAsTable": true,
  384. "avg": false,
  385. "current": true,
  386. "hideEmpty": true,
  387. "hideZero": true,
  388. "max": true,
  389. "min": false,
  390. "rightSide": true,
  391. "show": true,
  392. "sideWidth": 250,
  393. "sort": "max",
  394. "sortDesc": true,
  395. "total": false,
  396. "values": true
  397. },
  398. "lines": true,
  399. "linewidth": 1,
  400. "links": [],
  401. "maxPerRow": 1,
  402. "nullPointMode": "null as zero",
  403. "percentage": false,
  404. "pointradius": 5,
  405. "points": false,
  406. "renderer": "flot",
  407. "seriesOverrides": [
  408. {
  409. "alias": "total",
  410. "lines": false
  411. }
  412. ],
  413. "spaceLength": 10,
  414. "stack": false,
  415. "steppedLine": false,
  416. "targets": [
  417. {
  418. "expr": "rate(SeaweedFS_filer_request_total[1m])",
  419. "format": "time_series",
  420. "intervalFactor": 2,
  421. "legendFormat": "{{type}}",
  422. "refId": "A",
  423. "step": 30
  424. }
  425. ],
  426. "thresholds": [],
  427. "timeFrom": null,
  428. "timeShift": null,
  429. "title": "Filer QPS",
  430. "tooltip": {
  431. "msResolution": true,
  432. "shared": true,
  433. "sort": 2,
  434. "value_type": "individual"
  435. },
  436. "type": "graph",
  437. "xaxis": {
  438. "buckets": null,
  439. "mode": "time",
  440. "name": null,
  441. "show": true,
  442. "values": []
  443. },
  444. "yaxes": [
  445. {
  446. "format": "short",
  447. "label": null,
  448. "logBase": 1,
  449. "max": null,
  450. "min": "0",
  451. "show": true
  452. },
  453. {
  454. "format": "short",
  455. "label": null,
  456. "logBase": 1,
  457. "max": null,
  458. "min": null,
  459. "show": true
  460. }
  461. ]
  462. }
  463. ],
  464. "repeat": null,
  465. "title": "Filer",
  466. "type": "row"
  467. },
  468. {
  469. "collapsed": false,
  470. "datasource": null,
  471. "fieldConfig": {
  472. "defaults": {},
  473. "overrides": []
  474. },
  475. "gridPos": {
  476. "h": 1,
  477. "w": 24,
  478. "x": 0,
  479. "y": 1
  480. },
  481. "id": 70,
  482. "panels": [],
  483. "repeat": null,
  484. "title": "S3 Gateway",
  485. "type": "row"
  486. },
  487. {
  488. "aliasColors": {},
  489. "bars": false,
  490. "dashLength": 10,
  491. "dashes": false,
  492. "datasource": "${DS_PROMETHEUS}",
  493. "editable": true,
  494. "error": false,
  495. "fill": 1,
  496. "fillGradient": 0,
  497. "grid": {},
  498. "gridPos": {
  499. "h": 7,
  500. "w": 8,
  501. "x": 0,
  502. "y": 2
  503. },
  504. "hiddenSeries": false,
  505. "id": 56,
  506. "legend": {
  507. "avg": false,
  508. "current": false,
  509. "max": false,
  510. "min": false,
  511. "show": true,
  512. "total": false,
  513. "values": false
  514. },
  515. "lines": true,
  516. "linewidth": 1,
  517. "links": [],
  518. "nullPointMode": "null as zero",
  519. "options": {
  520. "alertThreshold": true
  521. },
  522. "percentage": false,
  523. "pluginVersion": "8.1.2",
  524. "pointradius": 5,
  525. "points": false,
  526. "renderer": "flot",
  527. "seriesOverrides": [],
  528. "spaceLength": 10,
  529. "stack": false,
  530. "steppedLine": false,
  531. "targets": [
  532. {
  533. "expr": "histogram_quantile(0.90, sum(rate(SeaweedFS_s3_request_seconds_bucket[1m])) by (le))",
  534. "format": "time_series",
  535. "hide": false,
  536. "intervalFactor": 2,
  537. "legendFormat": "average",
  538. "refId": "A",
  539. "step": 60
  540. },
  541. {
  542. "expr": "histogram_quantile(0.90, sum(rate(SeaweedFS_s3_request_seconds_bucket[1m])) by (le, type, bucket))",
  543. "format": "time_series",
  544. "hide": false,
  545. "interval": "",
  546. "intervalFactor": 2,
  547. "legendFormat": "{{bucket}} {{type}}",
  548. "refId": "B",
  549. "step": 60
  550. }
  551. ],
  552. "thresholds": [],
  553. "timeFrom": null,
  554. "timeRegions": [],
  555. "timeShift": null,
  556. "title": "S3 Request Duration 90th percentile",
  557. "tooltip": {
  558. "msResolution": true,
  559. "shared": true,
  560. "sort": 0,
  561. "value_type": "cumulative"
  562. },
  563. "type": "graph",
  564. "xaxis": {
  565. "buckets": null,
  566. "mode": "time",
  567. "name": null,
  568. "show": true,
  569. "values": []
  570. },
  571. "yaxes": [
  572. {
  573. "format": "s",
  574. "label": null,
  575. "logBase": 1,
  576. "max": null,
  577. "min": 0,
  578. "show": true
  579. },
  580. {
  581. "format": "short",
  582. "label": null,
  583. "logBase": 1,
  584. "max": null,
  585. "min": null,
  586. "show": false
  587. }
  588. ],
  589. "yaxis": {
  590. "align": false,
  591. "alignLevel": null
  592. }
  593. },
  594. {
  595. "aliasColors": {},
  596. "bars": false,
  597. "dashLength": 10,
  598. "dashes": false,
  599. "datasource": "${DS_PROMETHEUS}",
  600. "editable": true,
  601. "error": false,
  602. "fill": 1,
  603. "fillGradient": 0,
  604. "grid": {},
  605. "gridPos": {
  606. "h": 7,
  607. "w": 8,
  608. "x": 8,
  609. "y": 2
  610. },
  611. "hiddenSeries": false,
  612. "id": 57,
  613. "legend": {
  614. "avg": false,
  615. "current": false,
  616. "max": false,
  617. "min": false,
  618. "show": true,
  619. "total": false,
  620. "values": false
  621. },
  622. "lines": true,
  623. "linewidth": 1,
  624. "links": [],
  625. "nullPointMode": "null as zero",
  626. "options": {
  627. "alertThreshold": true
  628. },
  629. "percentage": false,
  630. "pluginVersion": "8.1.2",
  631. "pointradius": 5,
  632. "points": false,
  633. "renderer": "flot",
  634. "seriesOverrides": [],
  635. "spaceLength": 10,
  636. "stack": false,
  637. "steppedLine": false,
  638. "targets": [
  639. {
  640. "expr": "histogram_quantile(0.95, sum(rate(SeaweedFS_s3_request_seconds_bucket[1m])) by (le))",
  641. "format": "time_series",
  642. "hide": false,
  643. "intervalFactor": 2,
  644. "legendFormat": "average",
  645. "refId": "A",
  646. "step": 60
  647. },
  648. {
  649. "expr": "histogram_quantile(0.95, sum(rate(SeaweedFS_s3_request_seconds_bucket[1m])) by (le, type, bucket))",
  650. "format": "time_series",
  651. "hide": false,
  652. "interval": "",
  653. "intervalFactor": 2,
  654. "legendFormat": "{{bucket}} {{type}}",
  655. "refId": "B",
  656. "step": 60
  657. }
  658. ],
  659. "thresholds": [],
  660. "timeFrom": null,
  661. "timeRegions": [],
  662. "timeShift": null,
  663. "title": "S3 Request Duration 95th percentile",
  664. "tooltip": {
  665. "msResolution": true,
  666. "shared": true,
  667. "sort": 0,
  668. "value_type": "cumulative"
  669. },
  670. "type": "graph",
  671. "xaxis": {
  672. "buckets": null,
  673. "mode": "time",
  674. "name": null,
  675. "show": true,
  676. "values": []
  677. },
  678. "yaxes": [
  679. {
  680. "format": "s",
  681. "label": null,
  682. "logBase": 1,
  683. "max": null,
  684. "min": 0,
  685. "show": true
  686. },
  687. {
  688. "format": "short",
  689. "label": null,
  690. "logBase": 1,
  691. "max": null,
  692. "min": null,
  693. "show": false
  694. }
  695. ],
  696. "yaxis": {
  697. "align": false,
  698. "alignLevel": null
  699. }
  700. },
  701. {
  702. "aliasColors": {},
  703. "bars": false,
  704. "dashLength": 10,
  705. "dashes": false,
  706. "datasource": "${DS_PROMETHEUS}",
  707. "editable": true,
  708. "error": false,
  709. "fill": 1,
  710. "fillGradient": 0,
  711. "grid": {},
  712. "gridPos": {
  713. "h": 7,
  714. "w": 8,
  715. "x": 16,
  716. "y": 2
  717. },
  718. "hiddenSeries": false,
  719. "id": 58,
  720. "legend": {
  721. "avg": false,
  722. "current": false,
  723. "max": false,
  724. "min": false,
  725. "show": true,
  726. "total": false,
  727. "values": false
  728. },
  729. "lines": true,
  730. "linewidth": 1,
  731. "links": [],
  732. "nullPointMode": "null as zero",
  733. "options": {
  734. "alertThreshold": true
  735. },
  736. "percentage": false,
  737. "pluginVersion": "8.1.2",
  738. "pointradius": 5,
  739. "points": false,
  740. "renderer": "flot",
  741. "seriesOverrides": [],
  742. "spaceLength": 10,
  743. "stack": false,
  744. "steppedLine": false,
  745. "targets": [
  746. {
  747. "expr": "histogram_quantile(0.99, sum(rate(SeaweedFS_s3_request_seconds_bucket[1m])) by (le))",
  748. "format": "time_series",
  749. "hide": false,
  750. "intervalFactor": 2,
  751. "legendFormat": "average",
  752. "refId": "A",
  753. "step": 60
  754. },
  755. {
  756. "expr": "histogram_quantile(0.99, sum(rate(SeaweedFS_s3_request_seconds_bucket[1m])) by (le, type, bucket))",
  757. "format": "time_series",
  758. "hide": false,
  759. "intervalFactor": 2,
  760. "legendFormat": "{{bucket}} {{type}}",
  761. "refId": "B",
  762. "step": 60
  763. }
  764. ],
  765. "thresholds": [],
  766. "timeFrom": null,
  767. "timeRegions": [],
  768. "timeShift": null,
  769. "title": "S3 Request Duration 99th percentile",
  770. "tooltip": {
  771. "msResolution": true,
  772. "shared": true,
  773. "sort": 0,
  774. "value_type": "cumulative"
  775. },
  776. "type": "graph",
  777. "xaxis": {
  778. "buckets": null,
  779. "mode": "time",
  780. "name": null,
  781. "show": true,
  782. "values": []
  783. },
  784. "yaxes": [
  785. {
  786. "format": "s",
  787. "label": null,
  788. "logBase": 1,
  789. "max": null,
  790. "min": 0,
  791. "show": true
  792. },
  793. {
  794. "format": "short",
  795. "label": null,
  796. "logBase": 1,
  797. "max": null,
  798. "min": null,
  799. "show": false
  800. }
  801. ],
  802. "yaxis": {
  803. "align": false,
  804. "alignLevel": null
  805. }
  806. },
  807. {
  808. "aliasColors": {},
  809. "bars": false,
  810. "dashLength": 10,
  811. "dashes": false,
  812. "datasource": "${DS_PROMETHEUS}",
  813. "editable": true,
  814. "error": false,
  815. "fill": 0,
  816. "fillGradient": 0,
  817. "grid": {},
  818. "gridPos": {
  819. "h": 7,
  820. "w": 24,
  821. "x": 0,
  822. "y": 9
  823. },
  824. "hiddenSeries": false,
  825. "id": 55,
  826. "legend": {
  827. "alignAsTable": true,
  828. "avg": false,
  829. "current": true,
  830. "hideEmpty": true,
  831. "hideZero": true,
  832. "max": true,
  833. "min": false,
  834. "rightSide": true,
  835. "show": true,
  836. "sideWidth": 250,
  837. "sort": "max",
  838. "sortDesc": true,
  839. "total": false,
  840. "values": true
  841. },
  842. "lines": true,
  843. "linewidth": 1,
  844. "links": [],
  845. "maxPerRow": 1,
  846. "nullPointMode": "null as zero",
  847. "options": {
  848. "alertThreshold": true
  849. },
  850. "percentage": false,
  851. "pluginVersion": "8.1.2",
  852. "pointradius": 5,
  853. "points": false,
  854. "renderer": "flot",
  855. "seriesOverrides": [
  856. {
  857. "alias": "total",
  858. "lines": false
  859. }
  860. ],
  861. "spaceLength": 10,
  862. "stack": false,
  863. "steppedLine": false,
  864. "targets": [
  865. {
  866. "expr": "rate(SeaweedFS_s3_request_total[1m])",
  867. "format": "time_series",
  868. "intervalFactor": 2,
  869. "legendFormat": "{{bucket}} {{type}}",
  870. "refId": "A",
  871. "step": 30
  872. }
  873. ],
  874. "thresholds": [],
  875. "timeFrom": null,
  876. "timeRegions": [],
  877. "timeShift": null,
  878. "title": "S3 API QPS",
  879. "tooltip": {
  880. "msResolution": true,
  881. "shared": true,
  882. "sort": 2,
  883. "value_type": "individual"
  884. },
  885. "type": "graph",
  886. "xaxis": {
  887. "buckets": null,
  888. "mode": "time",
  889. "name": null,
  890. "show": true,
  891. "values": []
  892. },
  893. "yaxes": [
  894. {
  895. "format": "short",
  896. "label": null,
  897. "logBase": 1,
  898. "max": null,
  899. "min": "0",
  900. "show": true
  901. },
  902. {
  903. "format": "short",
  904. "label": null,
  905. "logBase": 1,
  906. "max": null,
  907. "min": null,
  908. "show": true
  909. }
  910. ],
  911. "yaxis": {
  912. "align": false,
  913. "alignLevel": null
  914. }
  915. },
  916. {
  917. "aliasColors": {},
  918. "bars": false,
  919. "dashLength": 10,
  920. "dashes": false,
  921. "datasource": "${DS_PROMETHEUS}",
  922. "editable": true,
  923. "error": false,
  924. "fill": 0,
  925. "fillGradient": 0,
  926. "grid": {},
  927. "gridPos": {
  928. "h": 7,
  929. "w": 24,
  930. "x": 0,
  931. "y": 16
  932. },
  933. "hiddenSeries": false,
  934. "hideTimeOverride": false,
  935. "id": 59,
  936. "legend": {
  937. "alignAsTable": true,
  938. "avg": false,
  939. "current": true,
  940. "hideEmpty": true,
  941. "hideZero": true,
  942. "max": true,
  943. "min": false,
  944. "rightSide": true,
  945. "show": true,
  946. "sideWidth": 250,
  947. "sort": "max",
  948. "sortDesc": true,
  949. "total": false,
  950. "values": true
  951. },
  952. "lines": true,
  953. "linewidth": 1,
  954. "links": [],
  955. "maxPerRow": 1,
  956. "nullPointMode": "null as zero",
  957. "options": {
  958. "alertThreshold": true
  959. },
  960. "percentage": false,
  961. "pluginVersion": "8.1.2",
  962. "pointradius": 5,
  963. "points": false,
  964. "renderer": "flot",
  965. "seriesOverrides": [
  966. {
  967. "alias": "total",
  968. "lines": false
  969. }
  970. ],
  971. "spaceLength": 10,
  972. "stack": false,
  973. "steppedLine": false,
  974. "targets": [
  975. {
  976. "exemplar": true,
  977. "expr": "sum by (type) (increase(SeaweedFS_s3_request_total{type=~'PUT|COPY|POST|LIST'}[$__range]))*0.000005",
  978. "format": "time_series",
  979. "hide": false,
  980. "interval": "",
  981. "intervalFactor": 2,
  982. "legendFormat": "{{type}} requests",
  983. "refId": "A",
  984. "step": 30
  985. },
  986. {
  987. "exemplar": true,
  988. "expr": "sum(increase(SeaweedFS_s3_request_total{type=~'PUT|COPY|POST|LIST'}[$__range]))*0.000005",
  989. "format": "time_series",
  990. "hide": false,
  991. "interval": "",
  992. "intervalFactor": 2,
  993. "legendFormat": "All PUT, COPY, POST, LIST",
  994. "refId": "C",
  995. "step": 30
  996. },
  997. {
  998. "exemplar": true,
  999. "expr": "sum (increase(SeaweedFS_s3_request_total{type!~'PUT|COPY|POST|LIST'}[$__range]))*0.0000004",
  1000. "format": "time_series",
  1001. "hide": false,
  1002. "interval": "",
  1003. "intervalFactor": 2,
  1004. "legendFormat": "GET and all other",
  1005. "refId": "B"
  1006. },
  1007. {
  1008. "exemplar": true,
  1009. "expr": "sum by (type) (increase(SeaweedFS_s3_request_total{type!~'PUT|COPY|POST|LIST'}[$__range]))*0.0000004",
  1010. "format": "time_series",
  1011. "hide": false,
  1012. "interval": "",
  1013. "intervalFactor": 2,
  1014. "legendFormat": "{{type}} requests",
  1015. "refId": "D"
  1016. }
  1017. ],
  1018. "thresholds": [],
  1019. "timeFrom": "1M",
  1020. "timeRegions": [],
  1021. "timeShift": null,
  1022. "title": "S3 API Monthly Cost if on AWS",
  1023. "tooltip": {
  1024. "msResolution": true,
  1025. "shared": true,
  1026. "sort": 2,
  1027. "value_type": "individual"
  1028. },
  1029. "type": "graph",
  1030. "xaxis": {
  1031. "buckets": null,
  1032. "mode": "time",
  1033. "name": null,
  1034. "show": true,
  1035. "values": []
  1036. },
  1037. "yaxes": [
  1038. {
  1039. "format": "currencyUSD",
  1040. "label": "Cost in US$",
  1041. "logBase": 1,
  1042. "max": null,
  1043. "min": "0",
  1044. "show": true
  1045. },
  1046. {
  1047. "format": "currencyUSD",
  1048. "label": "Write Cost",
  1049. "logBase": 1,
  1050. "max": null,
  1051. "min": null,
  1052. "show": false
  1053. }
  1054. ],
  1055. "yaxis": {
  1056. "align": false,
  1057. "alignLevel": null
  1058. }
  1059. },
  1060. {
  1061. "collapsed": false,
  1062. "datasource": null,
  1063. "fieldConfig": {
  1064. "defaults": {},
  1065. "overrides": []
  1066. },
  1067. "gridPos": {
  1068. "h": 1,
  1069. "w": 24,
  1070. "x": 0,
  1071. "y": 23
  1072. },
  1073. "id": 71,
  1074. "panels": [],
  1075. "repeat": null,
  1076. "title": "Volume Server",
  1077. "type": "row"
  1078. },
  1079. {
  1080. "aliasColors": {},
  1081. "bars": false,
  1082. "dashLength": 10,
  1083. "dashes": false,
  1084. "datasource": "${DS_PROMETHEUS}",
  1085. "editable": true,
  1086. "error": false,
  1087. "fill": 1,
  1088. "fillGradient": 0,
  1089. "grid": {},
  1090. "gridPos": {
  1091. "h": 7,
  1092. "w": 12,
  1093. "x": 0,
  1094. "y": 24
  1095. },
  1096. "hiddenSeries": false,
  1097. "id": 47,
  1098. "legend": {
  1099. "alignAsTable": false,
  1100. "avg": false,
  1101. "current": false,
  1102. "max": false,
  1103. "min": false,
  1104. "show": false,
  1105. "total": false,
  1106. "values": false
  1107. },
  1108. "lines": true,
  1109. "linewidth": 2,
  1110. "links": [],
  1111. "nullPointMode": "null as zero",
  1112. "options": {
  1113. "alertThreshold": true
  1114. },
  1115. "percentage": false,
  1116. "pluginVersion": "8.1.2",
  1117. "pointradius": 5,
  1118. "points": false,
  1119. "renderer": "flot",
  1120. "seriesOverrides": [],
  1121. "spaceLength": 10,
  1122. "stack": false,
  1123. "steppedLine": false,
  1124. "targets": [
  1125. {
  1126. "expr": "histogram_quantile(0.99, sum(rate(SeaweedFS_volumeServer_request_seconds_bucket[1m])) by (le, exported_instance))",
  1127. "format": "time_series",
  1128. "hide": false,
  1129. "intervalFactor": 2,
  1130. "legendFormat": "{{exported_instance}}",
  1131. "refId": "B"
  1132. },
  1133. {
  1134. "expr": "histogram_quantile(0.99, sum(rate(SeaweedFS_volumeServer_request_seconds_bucket[1m])) by (le))",
  1135. "format": "time_series",
  1136. "intervalFactor": 2,
  1137. "legendFormat": "average",
  1138. "refId": "C"
  1139. }
  1140. ],
  1141. "thresholds": [],
  1142. "timeFrom": null,
  1143. "timeRegions": [],
  1144. "timeShift": null,
  1145. "title": "Volume Server Request Duration 99th percentile",
  1146. "tooltip": {
  1147. "msResolution": false,
  1148. "shared": true,
  1149. "sort": 0,
  1150. "value_type": "cumulative"
  1151. },
  1152. "type": "graph",
  1153. "xaxis": {
  1154. "buckets": null,
  1155. "mode": "time",
  1156. "name": null,
  1157. "show": true,
  1158. "values": []
  1159. },
  1160. "yaxes": [
  1161. {
  1162. "format": "s",
  1163. "label": null,
  1164. "logBase": 1,
  1165. "max": null,
  1166. "min": 0,
  1167. "show": true
  1168. },
  1169. {
  1170. "format": "short",
  1171. "label": null,
  1172. "logBase": 1,
  1173. "max": null,
  1174. "min": null,
  1175. "show": true
  1176. }
  1177. ],
  1178. "yaxis": {
  1179. "align": false,
  1180. "alignLevel": null
  1181. }
  1182. },
  1183. {
  1184. "aliasColors": {},
  1185. "bars": false,
  1186. "dashLength": 10,
  1187. "dashes": false,
  1188. "datasource": "${DS_PROMETHEUS}",
  1189. "editable": true,
  1190. "error": false,
  1191. "fill": 1,
  1192. "fillGradient": 0,
  1193. "grid": {},
  1194. "gridPos": {
  1195. "h": 7,
  1196. "w": 12,
  1197. "x": 12,
  1198. "y": 24
  1199. },
  1200. "hiddenSeries": false,
  1201. "id": 40,
  1202. "legend": {
  1203. "alignAsTable": true,
  1204. "avg": false,
  1205. "current": false,
  1206. "hideEmpty": true,
  1207. "hideZero": true,
  1208. "max": false,
  1209. "min": false,
  1210. "rightSide": true,
  1211. "show": true,
  1212. "sort": "total",
  1213. "sortDesc": true,
  1214. "total": true,
  1215. "values": true
  1216. },
  1217. "lines": true,
  1218. "linewidth": 2,
  1219. "links": [],
  1220. "nullPointMode": "null as zero",
  1221. "options": {
  1222. "alertThreshold": true
  1223. },
  1224. "percentage": false,
  1225. "pluginVersion": "8.1.2",
  1226. "pointradius": 5,
  1227. "points": false,
  1228. "renderer": "flot",
  1229. "seriesOverrides": [],
  1230. "spaceLength": 10,
  1231. "stack": false,
  1232. "steppedLine": false,
  1233. "targets": [
  1234. {
  1235. "expr": "sum(rate(SeaweedFS_volumeServer_request_total[1m])) by (type)",
  1236. "format": "time_series",
  1237. "intervalFactor": 2,
  1238. "legendFormat": "{{type}}",
  1239. "refId": "A",
  1240. "step": 4
  1241. }
  1242. ],
  1243. "thresholds": [],
  1244. "timeFrom": null,
  1245. "timeRegions": [],
  1246. "timeShift": null,
  1247. "title": "Volume Server QPS",
  1248. "tooltip": {
  1249. "msResolution": false,
  1250. "shared": true,
  1251. "sort": 0,
  1252. "value_type": "cumulative"
  1253. },
  1254. "type": "graph",
  1255. "xaxis": {
  1256. "buckets": null,
  1257. "mode": "time",
  1258. "name": null,
  1259. "show": true,
  1260. "values": []
  1261. },
  1262. "yaxes": [
  1263. {
  1264. "format": "short",
  1265. "label": null,
  1266. "logBase": 1,
  1267. "max": null,
  1268. "min": null,
  1269. "show": true
  1270. },
  1271. {
  1272. "format": "short",
  1273. "label": null,
  1274. "logBase": 1,
  1275. "max": null,
  1276. "min": null,
  1277. "show": true
  1278. }
  1279. ],
  1280. "yaxis": {
  1281. "align": false,
  1282. "alignLevel": null
  1283. }
  1284. },
  1285. {
  1286. "aliasColors": {},
  1287. "bars": false,
  1288. "dashLength": 10,
  1289. "dashes": false,
  1290. "datasource": "${DS_PROMETHEUS}",
  1291. "fill": 1,
  1292. "fillGradient": 0,
  1293. "gridPos": {
  1294. "h": 7,
  1295. "w": 24,
  1296. "x": 0,
  1297. "y": 31
  1298. },
  1299. "hiddenSeries": false,
  1300. "id": 48,
  1301. "legend": {
  1302. "avg": false,
  1303. "current": false,
  1304. "max": false,
  1305. "min": false,
  1306. "show": true,
  1307. "total": false,
  1308. "values": false
  1309. },
  1310. "lines": true,
  1311. "linewidth": 1,
  1312. "links": [],
  1313. "nullPointMode": "null",
  1314. "options": {
  1315. "alertThreshold": true
  1316. },
  1317. "percentage": false,
  1318. "pluginVersion": "8.1.2",
  1319. "pointradius": 5,
  1320. "points": false,
  1321. "renderer": "flot",
  1322. "seriesOverrides": [],
  1323. "spaceLength": 10,
  1324. "stack": false,
  1325. "steppedLine": false,
  1326. "targets": [
  1327. {
  1328. "expr": "sum(SeaweedFS_volumeServer_volumes) by (collection, type)",
  1329. "format": "time_series",
  1330. "hide": false,
  1331. "intervalFactor": 2,
  1332. "legendFormat": "{{collection}} {{type}}",
  1333. "refId": "A"
  1334. },
  1335. {
  1336. "expr": "sum(SeaweedFS_volumeServer_max_volumes)",
  1337. "format": "time_series",
  1338. "intervalFactor": 2,
  1339. "legendFormat": "Total",
  1340. "refId": "B"
  1341. }
  1342. ],
  1343. "thresholds": [],
  1344. "timeFrom": null,
  1345. "timeRegions": [],
  1346. "timeShift": null,
  1347. "title": "Volume Count",
  1348. "tooltip": {
  1349. "shared": true,
  1350. "sort": 0,
  1351. "value_type": "individual"
  1352. },
  1353. "type": "graph",
  1354. "xaxis": {
  1355. "buckets": null,
  1356. "mode": "time",
  1357. "name": null,
  1358. "show": true,
  1359. "values": []
  1360. },
  1361. "yaxes": [
  1362. {
  1363. "format": "short",
  1364. "label": null,
  1365. "logBase": 1,
  1366. "max": null,
  1367. "min": null,
  1368. "show": true
  1369. },
  1370. {
  1371. "format": "short",
  1372. "label": null,
  1373. "logBase": 1,
  1374. "max": null,
  1375. "min": null,
  1376. "show": true
  1377. }
  1378. ],
  1379. "yaxis": {
  1380. "align": false,
  1381. "alignLevel": null
  1382. }
  1383. },
  1384. {
  1385. "aliasColors": {},
  1386. "bars": false,
  1387. "dashLength": 10,
  1388. "dashes": false,
  1389. "datasource": "${DS_PROMETHEUS}",
  1390. "fill": 1,
  1391. "fillGradient": 0,
  1392. "gridPos": {
  1393. "h": 7,
  1394. "w": 24,
  1395. "x": 0,
  1396. "y": 38
  1397. },
  1398. "hiddenSeries": false,
  1399. "id": 50,
  1400. "legend": {
  1401. "avg": false,
  1402. "current": false,
  1403. "max": false,
  1404. "min": false,
  1405. "show": true,
  1406. "total": false,
  1407. "values": false
  1408. },
  1409. "lines": true,
  1410. "linewidth": 1,
  1411. "links": [],
  1412. "nullPointMode": "null",
  1413. "options": {
  1414. "alertThreshold": true
  1415. },
  1416. "percentage": false,
  1417. "pluginVersion": "8.1.2",
  1418. "pointradius": 5,
  1419. "points": false,
  1420. "renderer": "flot",
  1421. "seriesOverrides": [],
  1422. "spaceLength": 10,
  1423. "stack": false,
  1424. "steppedLine": false,
  1425. "targets": [
  1426. {
  1427. "expr": "sum(SeaweedFS_volumeServer_total_disk_size) by (collection, type)",
  1428. "format": "time_series",
  1429. "hide": false,
  1430. "intervalFactor": 2,
  1431. "legendFormat": "{{collection}} {{type}}",
  1432. "refId": "A"
  1433. },
  1434. {
  1435. "expr": "sum(SeaweedFS_volumeServer_total_disk_size)",
  1436. "format": "time_series",
  1437. "intervalFactor": 2,
  1438. "legendFormat": "Total",
  1439. "refId": "B"
  1440. }
  1441. ],
  1442. "thresholds": [],
  1443. "timeFrom": null,
  1444. "timeRegions": [],
  1445. "timeShift": null,
  1446. "title": "Used Disk Space by Collection and Type",
  1447. "tooltip": {
  1448. "shared": true,
  1449. "sort": 0,
  1450. "value_type": "individual"
  1451. },
  1452. "type": "graph",
  1453. "xaxis": {
  1454. "buckets": null,
  1455. "mode": "time",
  1456. "name": null,
  1457. "show": true,
  1458. "values": []
  1459. },
  1460. "yaxes": [
  1461. {
  1462. "format": "bytes",
  1463. "label": null,
  1464. "logBase": 1,
  1465. "max": null,
  1466. "min": null,
  1467. "show": true
  1468. },
  1469. {
  1470. "format": "short",
  1471. "label": null,
  1472. "logBase": 1,
  1473. "max": null,
  1474. "min": null,
  1475. "show": true
  1476. }
  1477. ],
  1478. "yaxis": {
  1479. "align": false,
  1480. "alignLevel": null
  1481. }
  1482. },
  1483. {
  1484. "aliasColors": {},
  1485. "bars": false,
  1486. "dashLength": 10,
  1487. "dashes": false,
  1488. "datasource": "${DS_PROMETHEUS}",
  1489. "fill": 1,
  1490. "fillGradient": 0,
  1491. "gridPos": {
  1492. "h": 7,
  1493. "w": 24,
  1494. "x": 0,
  1495. "y": 45
  1496. },
  1497. "hiddenSeries": false,
  1498. "id": 51,
  1499. "legend": {
  1500. "avg": false,
  1501. "current": false,
  1502. "max": false,
  1503. "min": false,
  1504. "show": true,
  1505. "total": false,
  1506. "values": false
  1507. },
  1508. "lines": true,
  1509. "linewidth": 1,
  1510. "links": [],
  1511. "nullPointMode": "null",
  1512. "options": {
  1513. "alertThreshold": true
  1514. },
  1515. "percentage": false,
  1516. "pluginVersion": "8.1.2",
  1517. "pointradius": 5,
  1518. "points": false,
  1519. "renderer": "flot",
  1520. "seriesOverrides": [],
  1521. "spaceLength": 10,
  1522. "stack": false,
  1523. "steppedLine": false,
  1524. "targets": [
  1525. {
  1526. "expr": "sum(SeaweedFS_volumeServer_total_disk_size) by (exported_instance)",
  1527. "format": "time_series",
  1528. "hide": false,
  1529. "intervalFactor": 2,
  1530. "legendFormat": "{{exported_instance}}",
  1531. "refId": "A"
  1532. }
  1533. ],
  1534. "thresholds": [],
  1535. "timeFrom": null,
  1536. "timeRegions": [],
  1537. "timeShift": null,
  1538. "title": "Used Disk Space by Host",
  1539. "tooltip": {
  1540. "shared": true,
  1541. "sort": 0,
  1542. "value_type": "individual"
  1543. },
  1544. "type": "graph",
  1545. "xaxis": {
  1546. "buckets": null,
  1547. "mode": "time",
  1548. "name": null,
  1549. "show": true,
  1550. "values": []
  1551. },
  1552. "yaxes": [
  1553. {
  1554. "format": "bytes",
  1555. "label": null,
  1556. "logBase": 1,
  1557. "max": null,
  1558. "min": null,
  1559. "show": true
  1560. },
  1561. {
  1562. "format": "short",
  1563. "label": null,
  1564. "logBase": 1,
  1565. "max": null,
  1566. "min": null,
  1567. "show": true
  1568. }
  1569. ],
  1570. "yaxis": {
  1571. "align": false,
  1572. "alignLevel": null
  1573. }
  1574. },
  1575. {
  1576. "collapsed": false,
  1577. "datasource": null,
  1578. "fieldConfig": {
  1579. "defaults": {},
  1580. "overrides": []
  1581. },
  1582. "gridPos": {
  1583. "h": 1,
  1584. "w": 24,
  1585. "x": 0,
  1586. "y": 52
  1587. },
  1588. "id": 72,
  1589. "panels": [],
  1590. "repeat": null,
  1591. "title": "Filer Store",
  1592. "type": "row"
  1593. },
  1594. {
  1595. "aliasColors": {},
  1596. "bars": false,
  1597. "dashLength": 10,
  1598. "dashes": false,
  1599. "datasource": "${DS_PROMETHEUS}",
  1600. "editable": true,
  1601. "error": false,
  1602. "fill": 1,
  1603. "fillGradient": 0,
  1604. "grid": {},
  1605. "gridPos": {
  1606. "h": 7,
  1607. "w": 12,
  1608. "x": 0,
  1609. "y": 53
  1610. },
  1611. "hiddenSeries": false,
  1612. "id": 12,
  1613. "legend": {
  1614. "alignAsTable": false,
  1615. "avg": false,
  1616. "current": false,
  1617. "max": false,
  1618. "min": false,
  1619. "show": false,
  1620. "total": false,
  1621. "values": false
  1622. },
  1623. "lines": true,
  1624. "linewidth": 2,
  1625. "links": [],
  1626. "nullPointMode": "null as zero",
  1627. "options": {
  1628. "alertThreshold": true
  1629. },
  1630. "percentage": false,
  1631. "pluginVersion": "8.1.2",
  1632. "pointradius": 5,
  1633. "points": false,
  1634. "renderer": "flot",
  1635. "seriesOverrides": [],
  1636. "spaceLength": 10,
  1637. "stack": false,
  1638. "steppedLine": false,
  1639. "targets": [
  1640. {
  1641. "expr": "histogram_quantile(0.99, sum(rate(SeaweedFS_filerStore_request_seconds_bucket[1m])) by (le, type))",
  1642. "format": "time_series",
  1643. "intervalFactor": 2,
  1644. "legendFormat": "{{type}}",
  1645. "refId": "B"
  1646. }
  1647. ],
  1648. "thresholds": [],
  1649. "timeFrom": null,
  1650. "timeRegions": [],
  1651. "timeShift": null,
  1652. "title": "Filer Store Request Duration 99th percentile",
  1653. "tooltip": {
  1654. "msResolution": false,
  1655. "shared": true,
  1656. "sort": 0,
  1657. "value_type": "cumulative"
  1658. },
  1659. "type": "graph",
  1660. "xaxis": {
  1661. "buckets": null,
  1662. "mode": "time",
  1663. "name": null,
  1664. "show": true,
  1665. "values": []
  1666. },
  1667. "yaxes": [
  1668. {
  1669. "format": "s",
  1670. "label": null,
  1671. "logBase": 1,
  1672. "max": null,
  1673. "min": 0,
  1674. "show": true
  1675. },
  1676. {
  1677. "format": "short",
  1678. "label": null,
  1679. "logBase": 1,
  1680. "max": null,
  1681. "min": null,
  1682. "show": true
  1683. }
  1684. ],
  1685. "yaxis": {
  1686. "align": false,
  1687. "alignLevel": null
  1688. }
  1689. },
  1690. {
  1691. "aliasColors": {},
  1692. "bars": false,
  1693. "dashLength": 10,
  1694. "dashes": false,
  1695. "datasource": "${DS_PROMETHEUS}",
  1696. "editable": true,
  1697. "error": false,
  1698. "fill": 1,
  1699. "fillGradient": 0,
  1700. "grid": {},
  1701. "gridPos": {
  1702. "h": 7,
  1703. "w": 12,
  1704. "x": 12,
  1705. "y": 53
  1706. },
  1707. "hiddenSeries": false,
  1708. "id": 14,
  1709. "legend": {
  1710. "alignAsTable": true,
  1711. "avg": true,
  1712. "current": true,
  1713. "hideEmpty": false,
  1714. "hideZero": false,
  1715. "max": false,
  1716. "min": false,
  1717. "rightSide": true,
  1718. "show": true,
  1719. "total": false,
  1720. "values": true
  1721. },
  1722. "lines": true,
  1723. "linewidth": 2,
  1724. "links": [],
  1725. "nullPointMode": "null as zero",
  1726. "options": {
  1727. "alertThreshold": true
  1728. },
  1729. "percentage": false,
  1730. "pluginVersion": "8.1.2",
  1731. "pointradius": 5,
  1732. "points": false,
  1733. "renderer": "flot",
  1734. "seriesOverrides": [],
  1735. "spaceLength": 10,
  1736. "stack": false,
  1737. "steppedLine": false,
  1738. "targets": [
  1739. {
  1740. "expr": "sum(rate(SeaweedFS_filerStore_request_total [1m])) by (type)",
  1741. "format": "time_series",
  1742. "intervalFactor": 2,
  1743. "legendFormat": "{{type}}",
  1744. "refId": "B"
  1745. }
  1746. ],
  1747. "thresholds": [],
  1748. "timeFrom": null,
  1749. "timeRegions": [],
  1750. "timeShift": null,
  1751. "title": "Filer Store QPS",
  1752. "tooltip": {
  1753. "msResolution": false,
  1754. "shared": true,
  1755. "sort": 0,
  1756. "value_type": "cumulative"
  1757. },
  1758. "type": "graph",
  1759. "xaxis": {
  1760. "buckets": null,
  1761. "mode": "time",
  1762. "name": null,
  1763. "show": true,
  1764. "values": []
  1765. },
  1766. "yaxes": [
  1767. {
  1768. "format": "short",
  1769. "label": null,
  1770. "logBase": 1,
  1771. "max": null,
  1772. "min": 0,
  1773. "show": true
  1774. },
  1775. {
  1776. "format": "short",
  1777. "label": null,
  1778. "logBase": 1,
  1779. "max": null,
  1780. "min": null,
  1781. "show": true
  1782. }
  1783. ],
  1784. "yaxis": {
  1785. "align": false,
  1786. "alignLevel": null
  1787. }
  1788. },
  1789. {
  1790. "collapsed": false,
  1791. "datasource": null,
  1792. "fieldConfig": {
  1793. "defaults": {},
  1794. "overrides": []
  1795. },
  1796. "gridPos": {
  1797. "h": 1,
  1798. "w": 24,
  1799. "x": 0,
  1800. "y": 60
  1801. },
  1802. "id": 73,
  1803. "panels": [],
  1804. "repeat": null,
  1805. "title": "Filer Instances",
  1806. "type": "row"
  1807. },
  1808. {
  1809. "aliasColors": {},
  1810. "bars": false,
  1811. "dashLength": 10,
  1812. "dashes": false,
  1813. "datasource": "${DS_PROMETHEUS}",
  1814. "editable": true,
  1815. "error": false,
  1816. "fill": 1,
  1817. "fillGradient": 0,
  1818. "grid": {},
  1819. "gridPos": {
  1820. "h": 7,
  1821. "w": 12,
  1822. "x": 0,
  1823. "y": 61
  1824. },
  1825. "hiddenSeries": false,
  1826. "id": 52,
  1827. "legend": {
  1828. "alignAsTable": false,
  1829. "avg": false,
  1830. "current": false,
  1831. "max": false,
  1832. "min": false,
  1833. "show": false,
  1834. "total": false,
  1835. "values": false
  1836. },
  1837. "lines": true,
  1838. "linewidth": 2,
  1839. "links": [],
  1840. "nullPointMode": "null as zero",
  1841. "options": {
  1842. "alertThreshold": true
  1843. },
  1844. "percentage": false,
  1845. "pluginVersion": "8.1.2",
  1846. "pointradius": 5,
  1847. "points": false,
  1848. "renderer": "flot",
  1849. "seriesOverrides": [],
  1850. "spaceLength": 10,
  1851. "stack": false,
  1852. "steppedLine": false,
  1853. "targets": [
  1854. {
  1855. "expr": "go_memstats_alloc_bytes{exported_job=\"filer\"}",
  1856. "format": "time_series",
  1857. "hide": false,
  1858. "intervalFactor": 2,
  1859. "legendFormat": "bytes allocated",
  1860. "refId": "B"
  1861. },
  1862. {
  1863. "expr": "rate(go_memstats_alloc_bytes_total{exported_job=\"filer\"}[30s])",
  1864. "format": "time_series",
  1865. "hide": false,
  1866. "intervalFactor": 2,
  1867. "legendFormat": "alloc rate",
  1868. "refId": "A"
  1869. },
  1870. {
  1871. "expr": "go_memstats_stack_inuse_bytes{exported_job=\"filer\"}",
  1872. "format": "time_series",
  1873. "hide": false,
  1874. "intervalFactor": 2,
  1875. "legendFormat": "stack inuse",
  1876. "refId": "C"
  1877. },
  1878. {
  1879. "expr": "go_memstats_heap_inuse_bytes{exported_job=\"filer\"}",
  1880. "format": "time_series",
  1881. "hide": false,
  1882. "intervalFactor": 2,
  1883. "legendFormat": "heap inuse",
  1884. "refId": "D"
  1885. }
  1886. ],
  1887. "thresholds": [],
  1888. "timeFrom": null,
  1889. "timeRegions": [],
  1890. "timeShift": null,
  1891. "title": "Filer Go Memory Stats",
  1892. "tooltip": {
  1893. "msResolution": false,
  1894. "shared": true,
  1895. "sort": 0,
  1896. "value_type": "cumulative"
  1897. },
  1898. "type": "graph",
  1899. "xaxis": {
  1900. "buckets": null,
  1901. "mode": "time",
  1902. "name": null,
  1903. "show": true,
  1904. "values": []
  1905. },
  1906. "yaxes": [
  1907. {
  1908. "format": "bytes",
  1909. "label": null,
  1910. "logBase": 1,
  1911. "max": null,
  1912. "min": 0,
  1913. "show": true
  1914. },
  1915. {
  1916. "format": "Bps",
  1917. "label": null,
  1918. "logBase": 1,
  1919. "max": null,
  1920. "min": null,
  1921. "show": true
  1922. }
  1923. ],
  1924. "yaxis": {
  1925. "align": false,
  1926. "alignLevel": null
  1927. }
  1928. },
  1929. {
  1930. "aliasColors": {},
  1931. "bars": false,
  1932. "dashLength": 10,
  1933. "dashes": false,
  1934. "datasource": "${DS_PROMETHEUS}",
  1935. "editable": true,
  1936. "error": false,
  1937. "fill": 1,
  1938. "fillGradient": 0,
  1939. "grid": {},
  1940. "gridPos": {
  1941. "h": 7,
  1942. "w": 12,
  1943. "x": 12,
  1944. "y": 61
  1945. },
  1946. "hiddenSeries": false,
  1947. "id": 54,
  1948. "legend": {
  1949. "alignAsTable": false,
  1950. "avg": false,
  1951. "current": false,
  1952. "max": false,
  1953. "min": false,
  1954. "show": false,
  1955. "total": false,
  1956. "values": false
  1957. },
  1958. "lines": true,
  1959. "linewidth": 2,
  1960. "links": [],
  1961. "nullPointMode": "null as zero",
  1962. "options": {
  1963. "alertThreshold": true
  1964. },
  1965. "percentage": false,
  1966. "pluginVersion": "8.1.2",
  1967. "pointradius": 5,
  1968. "points": false,
  1969. "renderer": "flot",
  1970. "seriesOverrides": [],
  1971. "spaceLength": 10,
  1972. "stack": false,
  1973. "steppedLine": false,
  1974. "targets": [
  1975. {
  1976. "expr": "go_gc_duration_seconds{exported_job=\"filer\"}",
  1977. "format": "time_series",
  1978. "intervalFactor": 2,
  1979. "legendFormat": "{{quantile}}",
  1980. "refId": "B"
  1981. }
  1982. ],
  1983. "thresholds": [],
  1984. "timeFrom": null,
  1985. "timeRegions": [],
  1986. "timeShift": null,
  1987. "title": "Filer Go GC duration quantiles",
  1988. "tooltip": {
  1989. "msResolution": false,
  1990. "shared": true,
  1991. "sort": 0,
  1992. "value_type": "cumulative"
  1993. },
  1994. "type": "graph",
  1995. "xaxis": {
  1996. "buckets": null,
  1997. "mode": "time",
  1998. "name": null,
  1999. "show": true,
  2000. "values": []
  2001. },
  2002. "yaxes": [
  2003. {
  2004. "format": "s",
  2005. "label": null,
  2006. "logBase": 1,
  2007. "max": null,
  2008. "min": 0,
  2009. "show": true
  2010. },
  2011. {
  2012. "format": "Bps",
  2013. "label": null,
  2014. "logBase": 1,
  2015. "max": null,
  2016. "min": null,
  2017. "show": true
  2018. }
  2019. ],
  2020. "yaxis": {
  2021. "align": false,
  2022. "alignLevel": null
  2023. }
  2024. },
  2025. {
  2026. "aliasColors": {},
  2027. "bars": false,
  2028. "dashLength": 10,
  2029. "dashes": false,
  2030. "datasource": "${DS_PROMETHEUS}",
  2031. "editable": true,
  2032. "error": false,
  2033. "fill": 1,
  2034. "fillGradient": 0,
  2035. "grid": {},
  2036. "gridPos": {
  2037. "h": 7,
  2038. "w": 24,
  2039. "x": 0,
  2040. "y": 68
  2041. },
  2042. "hiddenSeries": false,
  2043. "id": 53,
  2044. "legend": {
  2045. "alignAsTable": false,
  2046. "avg": false,
  2047. "current": false,
  2048. "max": false,
  2049. "min": false,
  2050. "show": false,
  2051. "total": false,
  2052. "values": false
  2053. },
  2054. "lines": true,
  2055. "linewidth": 2,
  2056. "links": [],
  2057. "nullPointMode": "null as zero",
  2058. "options": {
  2059. "alertThreshold": true
  2060. },
  2061. "percentage": false,
  2062. "pluginVersion": "8.1.2",
  2063. "pointradius": 5,
  2064. "points": false,
  2065. "renderer": "flot",
  2066. "seriesOverrides": [],
  2067. "spaceLength": 10,
  2068. "stack": false,
  2069. "steppedLine": false,
  2070. "targets": [
  2071. {
  2072. "expr": "go_goroutines{exported_job=\"filer\"}",
  2073. "format": "time_series",
  2074. "intervalFactor": 2,
  2075. "legendFormat": "{{exported_instance}}",
  2076. "refId": "B"
  2077. }
  2078. ],
  2079. "thresholds": [],
  2080. "timeFrom": null,
  2081. "timeRegions": [],
  2082. "timeShift": null,
  2083. "title": "Filer Go Routines",
  2084. "tooltip": {
  2085. "msResolution": false,
  2086. "shared": true,
  2087. "sort": 0,
  2088. "value_type": "cumulative"
  2089. },
  2090. "type": "graph",
  2091. "xaxis": {
  2092. "buckets": null,
  2093. "mode": "time",
  2094. "name": null,
  2095. "show": true,
  2096. "values": []
  2097. },
  2098. "yaxes": [
  2099. {
  2100. "format": "none",
  2101. "label": null,
  2102. "logBase": 1,
  2103. "max": null,
  2104. "min": 0,
  2105. "show": true
  2106. },
  2107. {
  2108. "format": "short",
  2109. "label": null,
  2110. "logBase": 1,
  2111. "max": null,
  2112. "min": null,
  2113. "show": true
  2114. }
  2115. ],
  2116. "yaxis": {
  2117. "align": false,
  2118. "alignLevel": null
  2119. }
  2120. },
  2121. {
  2122. "aliasColors": {},
  2123. "bars": false,
  2124. "dashLength": 10,
  2125. "dashes": false,
  2126. "datasource": "${DS_PROMETHEUS}",
  2127. "fieldConfig": {
  2128. "defaults": {
  2129. "links": []
  2130. },
  2131. "overrides": []
  2132. },
  2133. "fill": 1,
  2134. "fillGradient": 0,
  2135. "gridPos": {
  2136. "h": 7,
  2137. "w": 8,
  2138. "x": 0,
  2139. "y": 75
  2140. },
  2141. "hiddenSeries": false,
  2142. "id": 66,
  2143. "legend": {
  2144. "avg": false,
  2145. "current": false,
  2146. "max": false,
  2147. "min": false,
  2148. "show": true,
  2149. "total": false,
  2150. "values": false
  2151. },
  2152. "lines": true,
  2153. "linewidth": 1,
  2154. "links": [],
  2155. "nullPointMode": "null",
  2156. "options": {
  2157. "alertThreshold": true
  2158. },
  2159. "paceLength": 10,
  2160. "percentage": false,
  2161. "pluginVersion": "8.1.2",
  2162. "pointradius": 5,
  2163. "points": false,
  2164. "renderer": "flot",
  2165. "seriesOverrides": [
  2166. {
  2167. "$$hashKey": "object:258",
  2168. "alias": "max limit",
  2169. "color": "#890f02"
  2170. }
  2171. ],
  2172. "spaceLength": 10,
  2173. "stack": false,
  2174. "steppedLine": false,
  2175. "targets": [
  2176. {
  2177. "expr": "process_resident_memory_bytes{exported_job=\"filer\"}",
  2178. "format": "time_series",
  2179. "groupBy": [
  2180. {
  2181. "params": [
  2182. "$__interval"
  2183. ],
  2184. "type": "time"
  2185. },
  2186. {
  2187. "params": [
  2188. "null"
  2189. ],
  2190. "type": "fill"
  2191. }
  2192. ],
  2193. "interval": "",
  2194. "intervalFactor": 2,
  2195. "legendFormat": "resident {{exported_instance}}",
  2196. "orderByTime": "ASC",
  2197. "policy": "default",
  2198. "refId": "A",
  2199. "resultFormat": "time_series",
  2200. "select": [
  2201. [
  2202. {
  2203. "params": [
  2204. "value"
  2205. ],
  2206. "type": "field"
  2207. },
  2208. {
  2209. "params": [],
  2210. "type": "mean"
  2211. }
  2212. ]
  2213. ],
  2214. "step": 120,
  2215. "tags": []
  2216. },
  2217. {
  2218. "expr": "process_virtual_memory_bytes{exported_job=\"filer\"}",
  2219. "format": "time_series",
  2220. "interval": "",
  2221. "intervalFactor": 2,
  2222. "legendFormat": "virtual {{exported_instance}}",
  2223. "refId": "B",
  2224. "step": 120
  2225. }
  2226. ],
  2227. "thresholds": [],
  2228. "timeFrom": null,
  2229. "timeRegions": [],
  2230. "timeShift": null,
  2231. "title": "Process memory",
  2232. "tooltip": {
  2233. "shared": true,
  2234. "sort": 2,
  2235. "value_type": "individual"
  2236. },
  2237. "type": "graph",
  2238. "xaxis": {
  2239. "buckets": null,
  2240. "mode": "time",
  2241. "name": null,
  2242. "show": true,
  2243. "values": []
  2244. },
  2245. "yaxes": [
  2246. {
  2247. "$$hashKey": "object:265",
  2248. "format": "bytes",
  2249. "label": null,
  2250. "logBase": 1,
  2251. "max": null,
  2252. "min": null,
  2253. "show": true
  2254. },
  2255. {
  2256. "$$hashKey": "object:266",
  2257. "format": "short",
  2258. "label": null,
  2259. "logBase": 1,
  2260. "max": null,
  2261. "min": null,
  2262. "show": true
  2263. }
  2264. ],
  2265. "yaxis": {
  2266. "align": false,
  2267. "alignLevel": null
  2268. }
  2269. },
  2270. {
  2271. "aliasColors": {},
  2272. "bars": false,
  2273. "dashLength": 10,
  2274. "dashes": false,
  2275. "datasource": "${DS_PROMETHEUS}",
  2276. "editable": true,
  2277. "error": false,
  2278. "fieldConfig": {
  2279. "defaults": {
  2280. "links": []
  2281. },
  2282. "overrides": []
  2283. },
  2284. "fill": 1,
  2285. "fillGradient": 0,
  2286. "gridPos": {
  2287. "h": 7,
  2288. "w": 8,
  2289. "x": 8,
  2290. "y": 75
  2291. },
  2292. "hiddenSeries": false,
  2293. "id": 68,
  2294. "legend": {
  2295. "avg": false,
  2296. "current": false,
  2297. "max": false,
  2298. "min": false,
  2299. "show": true,
  2300. "total": false,
  2301. "values": false
  2302. },
  2303. "lines": true,
  2304. "linewidth": 1,
  2305. "links": [],
  2306. "nullPointMode": "connected",
  2307. "options": {
  2308. "alertThreshold": true
  2309. },
  2310. "paceLength": 10,
  2311. "percentage": false,
  2312. "pluginVersion": "8.1.2",
  2313. "pointradius": 5,
  2314. "points": false,
  2315. "renderer": "flot",
  2316. "seriesOverrides": [],
  2317. "spaceLength": 10,
  2318. "stack": false,
  2319. "steppedLine": false,
  2320. "targets": [
  2321. {
  2322. "expr": "process_open_fds{exported_job=\"filer\"}",
  2323. "format": "time_series",
  2324. "groupBy": [
  2325. {
  2326. "params": [
  2327. "$interval"
  2328. ],
  2329. "type": "time"
  2330. },
  2331. {
  2332. "params": [
  2333. "null"
  2334. ],
  2335. "type": "fill"
  2336. }
  2337. ],
  2338. "interval": "",
  2339. "intervalFactor": 2,
  2340. "legendFormat": "{{exported_instance}}",
  2341. "metric": "",
  2342. "policy": "default",
  2343. "refId": "A",
  2344. "resultFormat": "time_series",
  2345. "select": [
  2346. [
  2347. {
  2348. "params": [
  2349. "value"
  2350. ],
  2351. "type": "field"
  2352. },
  2353. {
  2354. "params": [],
  2355. "type": "mean"
  2356. }
  2357. ]
  2358. ],
  2359. "step": 240,
  2360. "tags": []
  2361. },
  2362. {
  2363. "expr": "process_max_fds{exported_job=\"filer\"}",
  2364. "format": "time_series",
  2365. "groupBy": [
  2366. {
  2367. "params": [
  2368. "$interval"
  2369. ],
  2370. "type": "time"
  2371. },
  2372. {
  2373. "params": [
  2374. "null"
  2375. ],
  2376. "type": "fill"
  2377. }
  2378. ],
  2379. "hide": false,
  2380. "interval": "",
  2381. "intervalFactor": 2,
  2382. "legendFormat": "{{exported_instance}}",
  2383. "metric": "",
  2384. "policy": "default",
  2385. "refId": "B",
  2386. "resultFormat": "time_series",
  2387. "select": [
  2388. [
  2389. {
  2390. "params": [
  2391. "value"
  2392. ],
  2393. "type": "field"
  2394. },
  2395. {
  2396. "params": [],
  2397. "type": "mean"
  2398. }
  2399. ]
  2400. ],
  2401. "step": 240,
  2402. "tags": []
  2403. }
  2404. ],
  2405. "thresholds": [],
  2406. "timeFrom": null,
  2407. "timeRegions": [],
  2408. "timeShift": null,
  2409. "title": "Open File Descriptor",
  2410. "tooltip": {
  2411. "msResolution": false,
  2412. "shared": true,
  2413. "sort": 0,
  2414. "value_type": "individual"
  2415. },
  2416. "type": "graph",
  2417. "xaxis": {
  2418. "buckets": null,
  2419. "mode": "time",
  2420. "name": null,
  2421. "show": true,
  2422. "values": []
  2423. },
  2424. "yaxes": [
  2425. {
  2426. "$$hashKey": "object:1087",
  2427. "format": "short",
  2428. "label": null,
  2429. "logBase": 1,
  2430. "max": null,
  2431. "min": null,
  2432. "show": true
  2433. },
  2434. {
  2435. "$$hashKey": "object:1088",
  2436. "format": "short",
  2437. "label": null,
  2438. "logBase": 1,
  2439. "max": null,
  2440. "min": null,
  2441. "show": true
  2442. }
  2443. ],
  2444. "yaxis": {
  2445. "align": false,
  2446. "alignLevel": null
  2447. }
  2448. }
  2449. ],
  2450. "refresh": "30s",
  2451. "schemaVersion": 30,
  2452. "style": "dark",
  2453. "tags": [],
  2454. "templating": {
  2455. "list": []
  2456. },
  2457. "time": {
  2458. "from": "now-3h",
  2459. "to": "now"
  2460. },
  2461. "timepicker": {
  2462. "refresh_intervals": [
  2463. "5s",
  2464. "10s",
  2465. "30s",
  2466. "1m",
  2467. "5m",
  2468. "15m",
  2469. "30m",
  2470. "1h",
  2471. "2h",
  2472. "1d"
  2473. ],
  2474. "time_options": [
  2475. "5m",
  2476. "15m",
  2477. "1h",
  2478. "6h",
  2479. "12h",
  2480. "24h",
  2481. "2d",
  2482. "7d",
  2483. "30d"
  2484. ]
  2485. },
  2486. "timezone": "browser",
  2487. "title": "SeaweedFS",
  2488. "uid": "nh02dOVnz",
  2489. "version": 2
  2490. }