Flint Performance.json 58 KB

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