MySQL_MyRocks_Metrics.json 91 KB

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