datasource_tests_elasticsearch_compare.json 137 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394
  1. {
  2. "annotations": {
  3. "list": [
  4. {
  5. "builtIn": 1,
  6. "datasource": "-- Grafana --",
  7. "enable": false,
  8. "hide": true,
  9. "iconColor": "rgba(0, 211, 255, 1)",
  10. "limit": 100,
  11. "name": "Annotations & Alerts",
  12. "showIn": 0,
  13. "type": "dashboard"
  14. }
  15. ]
  16. },
  17. "editable": true,
  18. "gnetId": null,
  19. "graphTooltip": 0,
  20. "iteration": 1542304484522,
  21. "links": [
  22. {
  23. "icon": "external link",
  24. "tags": [
  25. "gdev",
  26. "elasticsearch"
  27. ],
  28. "type": "dashboards"
  29. }
  30. ],
  31. "panels": [
  32. {
  33. "collapsed": true,
  34. "gridPos": {
  35. "h": 1,
  36. "w": 24,
  37. "x": 0,
  38. "y": 0
  39. },
  40. "id": 5,
  41. "panels": [
  42. {
  43. "aliasColors": {},
  44. "bars": false,
  45. "dashLength": 10,
  46. "dashes": false,
  47. "datasource": "$version_one",
  48. "fill": 1,
  49. "gridPos": {
  50. "h": 9,
  51. "w": 12,
  52. "x": 0,
  53. "y": 1
  54. },
  55. "id": 2,
  56. "legend": {
  57. "avg": false,
  58. "current": false,
  59. "max": false,
  60. "min": false,
  61. "show": true,
  62. "total": false,
  63. "values": false
  64. },
  65. "lines": true,
  66. "linewidth": 1,
  67. "links": [],
  68. "nullPointMode": "null",
  69. "percentage": false,
  70. "pointradius": 5,
  71. "points": false,
  72. "renderer": "flot",
  73. "seriesOverrides": [],
  74. "spaceLength": 10,
  75. "stack": false,
  76. "steppedLine": false,
  77. "targets": [
  78. {
  79. "bucketAggs": [
  80. {
  81. "field": "@timestamp",
  82. "id": "2",
  83. "settings": {
  84. "interval": "auto",
  85. "min_doc_count": 0,
  86. "trimEdges": 0
  87. },
  88. "type": "date_histogram"
  89. }
  90. ],
  91. "metrics": [
  92. {
  93. "field": "select field",
  94. "id": "1",
  95. "type": "count"
  96. }
  97. ],
  98. "refId": "A",
  99. "target": "",
  100. "timeField": "@timestamp"
  101. }
  102. ],
  103. "thresholds": [],
  104. "timeFrom": null,
  105. "timeRegions": [],
  106. "timeShift": null,
  107. "title": "Basic (version one) - interval auto",
  108. "tooltip": {
  109. "shared": true,
  110. "sort": 0,
  111. "value_type": "individual"
  112. },
  113. "type": "graph",
  114. "xaxis": {
  115. "buckets": null,
  116. "mode": "time",
  117. "name": null,
  118. "show": true,
  119. "values": []
  120. },
  121. "yaxes": [
  122. {
  123. "format": "short",
  124. "label": null,
  125. "logBase": 1,
  126. "max": null,
  127. "min": null,
  128. "show": true
  129. },
  130. {
  131. "format": "short",
  132. "label": null,
  133. "logBase": 1,
  134. "max": null,
  135. "min": null,
  136. "show": true
  137. }
  138. ],
  139. "yaxis": {
  140. "align": false,
  141. "alignLevel": null
  142. }
  143. },
  144. {
  145. "aliasColors": {},
  146. "bars": false,
  147. "dashLength": 10,
  148. "dashes": false,
  149. "datasource": "$version_two",
  150. "fill": 1,
  151. "gridPos": {
  152. "h": 9,
  153. "w": 12,
  154. "x": 12,
  155. "y": 1
  156. },
  157. "id": 3,
  158. "legend": {
  159. "avg": false,
  160. "current": false,
  161. "max": false,
  162. "min": false,
  163. "show": true,
  164. "total": false,
  165. "values": false
  166. },
  167. "lines": true,
  168. "linewidth": 1,
  169. "links": [],
  170. "nullPointMode": "null",
  171. "percentage": false,
  172. "pointradius": 5,
  173. "points": false,
  174. "renderer": "flot",
  175. "seriesOverrides": [],
  176. "spaceLength": 10,
  177. "stack": false,
  178. "steppedLine": false,
  179. "targets": [
  180. {
  181. "bucketAggs": [
  182. {
  183. "field": "@timestamp",
  184. "id": "2",
  185. "settings": {
  186. "interval": "auto",
  187. "min_doc_count": 0,
  188. "trimEdges": 0
  189. },
  190. "type": "date_histogram"
  191. }
  192. ],
  193. "metrics": [
  194. {
  195. "field": "select field",
  196. "id": "1",
  197. "type": "count"
  198. }
  199. ],
  200. "refId": "A",
  201. "target": "",
  202. "timeField": "@timestamp"
  203. }
  204. ],
  205. "thresholds": [],
  206. "timeFrom": null,
  207. "timeRegions": [],
  208. "timeShift": null,
  209. "title": "Basic (version two) - interval auto",
  210. "tooltip": {
  211. "shared": true,
  212. "sort": 0,
  213. "value_type": "individual"
  214. },
  215. "type": "graph",
  216. "xaxis": {
  217. "buckets": null,
  218. "mode": "time",
  219. "name": null,
  220. "show": true,
  221. "values": []
  222. },
  223. "yaxes": [
  224. {
  225. "format": "short",
  226. "label": null,
  227. "logBase": 1,
  228. "max": null,
  229. "min": null,
  230. "show": true
  231. },
  232. {
  233. "format": "short",
  234. "label": null,
  235. "logBase": 1,
  236. "max": null,
  237. "min": null,
  238. "show": true
  239. }
  240. ],
  241. "yaxis": {
  242. "align": false,
  243. "alignLevel": null
  244. }
  245. },
  246. {
  247. "aliasColors": {},
  248. "bars": false,
  249. "dashLength": 10,
  250. "dashes": false,
  251. "datasource": "$version_one",
  252. "fill": 1,
  253. "gridPos": {
  254. "h": 9,
  255. "w": 12,
  256. "x": 0,
  257. "y": 10
  258. },
  259. "id": 8,
  260. "legend": {
  261. "avg": false,
  262. "current": false,
  263. "max": false,
  264. "min": false,
  265. "show": true,
  266. "total": false,
  267. "values": false
  268. },
  269. "lines": true,
  270. "linewidth": 1,
  271. "links": [],
  272. "nullPointMode": "null",
  273. "percentage": false,
  274. "pointradius": 5,
  275. "points": false,
  276. "renderer": "flot",
  277. "seriesOverrides": [],
  278. "spaceLength": 10,
  279. "stack": false,
  280. "steppedLine": false,
  281. "targets": [
  282. {
  283. "bucketAggs": [
  284. {
  285. "field": "@timestamp",
  286. "id": "2",
  287. "settings": {
  288. "interval": "1m",
  289. "min_doc_count": 50,
  290. "trimEdges": null
  291. },
  292. "type": "date_histogram"
  293. }
  294. ],
  295. "metrics": [
  296. {
  297. "field": "select field",
  298. "id": "1",
  299. "type": "count"
  300. }
  301. ],
  302. "refId": "A",
  303. "target": "",
  304. "timeField": "@timestamp"
  305. }
  306. ],
  307. "thresholds": [],
  308. "timeFrom": null,
  309. "timeRegions": [],
  310. "timeShift": null,
  311. "title": "Basic (version one) - interval 1m + min doc count 50",
  312. "tooltip": {
  313. "shared": true,
  314. "sort": 0,
  315. "value_type": "individual"
  316. },
  317. "type": "graph",
  318. "xaxis": {
  319. "buckets": null,
  320. "mode": "time",
  321. "name": null,
  322. "show": true,
  323. "values": []
  324. },
  325. "yaxes": [
  326. {
  327. "format": "short",
  328. "label": null,
  329. "logBase": 1,
  330. "max": null,
  331. "min": null,
  332. "show": true
  333. },
  334. {
  335. "format": "short",
  336. "label": null,
  337. "logBase": 1,
  338. "max": null,
  339. "min": null,
  340. "show": true
  341. }
  342. ],
  343. "yaxis": {
  344. "align": false,
  345. "alignLevel": null
  346. }
  347. },
  348. {
  349. "aliasColors": {},
  350. "bars": false,
  351. "dashLength": 10,
  352. "dashes": false,
  353. "datasource": "$version_two",
  354. "fill": 1,
  355. "gridPos": {
  356. "h": 9,
  357. "w": 12,
  358. "x": 12,
  359. "y": 10
  360. },
  361. "id": 9,
  362. "legend": {
  363. "avg": false,
  364. "current": false,
  365. "max": false,
  366. "min": false,
  367. "show": true,
  368. "total": false,
  369. "values": false
  370. },
  371. "lines": true,
  372. "linewidth": 1,
  373. "links": [],
  374. "nullPointMode": "null",
  375. "percentage": false,
  376. "pointradius": 5,
  377. "points": false,
  378. "renderer": "flot",
  379. "seriesOverrides": [],
  380. "spaceLength": 10,
  381. "stack": false,
  382. "steppedLine": false,
  383. "targets": [
  384. {
  385. "bucketAggs": [
  386. {
  387. "field": "@timestamp",
  388. "id": "2",
  389. "settings": {
  390. "interval": "1m",
  391. "min_doc_count": 50,
  392. "trimEdges": null
  393. },
  394. "type": "date_histogram"
  395. }
  396. ],
  397. "metrics": [
  398. {
  399. "field": "select field",
  400. "id": "1",
  401. "type": "count"
  402. }
  403. ],
  404. "refId": "A",
  405. "target": "",
  406. "timeField": "@timestamp"
  407. }
  408. ],
  409. "thresholds": [],
  410. "timeFrom": null,
  411. "timeRegions": [],
  412. "timeShift": null,
  413. "title": "Basic (version two) - interval 1m + min doc count 50",
  414. "tooltip": {
  415. "shared": true,
  416. "sort": 0,
  417. "value_type": "individual"
  418. },
  419. "type": "graph",
  420. "xaxis": {
  421. "buckets": null,
  422. "mode": "time",
  423. "name": null,
  424. "show": true,
  425. "values": []
  426. },
  427. "yaxes": [
  428. {
  429. "format": "short",
  430. "label": null,
  431. "logBase": 1,
  432. "max": null,
  433. "min": null,
  434. "show": true
  435. },
  436. {
  437. "format": "short",
  438. "label": null,
  439. "logBase": 1,
  440. "max": null,
  441. "min": null,
  442. "show": true
  443. }
  444. ],
  445. "yaxis": {
  446. "align": false,
  447. "alignLevel": null
  448. }
  449. },
  450. {
  451. "aliasColors": {},
  452. "bars": false,
  453. "dashLength": 10,
  454. "dashes": false,
  455. "datasource": "$version_one",
  456. "fill": 1,
  457. "gridPos": {
  458. "h": 9,
  459. "w": 12,
  460. "x": 0,
  461. "y": 19
  462. },
  463. "id": 6,
  464. "legend": {
  465. "avg": false,
  466. "current": false,
  467. "max": false,
  468. "min": false,
  469. "show": true,
  470. "total": false,
  471. "values": false
  472. },
  473. "lines": true,
  474. "linewidth": 1,
  475. "links": [],
  476. "nullPointMode": "null",
  477. "percentage": false,
  478. "pointradius": 5,
  479. "points": false,
  480. "renderer": "flot",
  481. "seriesOverrides": [],
  482. "spaceLength": 10,
  483. "stack": false,
  484. "steppedLine": false,
  485. "targets": [
  486. {
  487. "bucketAggs": [
  488. {
  489. "field": "@timestamp",
  490. "id": "2",
  491. "settings": {
  492. "interval": "5m",
  493. "min_doc_count": 0,
  494. "trimEdges": 10
  495. },
  496. "type": "date_histogram"
  497. }
  498. ],
  499. "metrics": [
  500. {
  501. "field": "select field",
  502. "id": "1",
  503. "type": "count"
  504. }
  505. ],
  506. "refId": "A",
  507. "target": "",
  508. "timeField": "@timestamp"
  509. }
  510. ],
  511. "thresholds": [],
  512. "timeFrom": null,
  513. "timeRegions": [],
  514. "timeShift": null,
  515. "title": "Basic (version one) - interval 5m + trim edges=10",
  516. "tooltip": {
  517. "shared": true,
  518. "sort": 0,
  519. "value_type": "individual"
  520. },
  521. "type": "graph",
  522. "xaxis": {
  523. "buckets": null,
  524. "mode": "time",
  525. "name": null,
  526. "show": true,
  527. "values": []
  528. },
  529. "yaxes": [
  530. {
  531. "format": "short",
  532. "label": null,
  533. "logBase": 1,
  534. "max": null,
  535. "min": null,
  536. "show": true
  537. },
  538. {
  539. "format": "short",
  540. "label": null,
  541. "logBase": 1,
  542. "max": null,
  543. "min": null,
  544. "show": true
  545. }
  546. ],
  547. "yaxis": {
  548. "align": false,
  549. "alignLevel": null
  550. }
  551. },
  552. {
  553. "aliasColors": {},
  554. "bars": false,
  555. "dashLength": 10,
  556. "dashes": false,
  557. "datasource": "$version_two",
  558. "fill": 1,
  559. "gridPos": {
  560. "h": 9,
  561. "w": 12,
  562. "x": 12,
  563. "y": 19
  564. },
  565. "id": 7,
  566. "legend": {
  567. "avg": false,
  568. "current": false,
  569. "max": false,
  570. "min": false,
  571. "show": true,
  572. "total": false,
  573. "values": false
  574. },
  575. "lines": true,
  576. "linewidth": 1,
  577. "links": [],
  578. "nullPointMode": "null",
  579. "percentage": false,
  580. "pointradius": 5,
  581. "points": false,
  582. "renderer": "flot",
  583. "seriesOverrides": [],
  584. "spaceLength": 10,
  585. "stack": false,
  586. "steppedLine": false,
  587. "targets": [
  588. {
  589. "bucketAggs": [
  590. {
  591. "field": "@timestamp",
  592. "id": "2",
  593. "settings": {
  594. "interval": "5m",
  595. "min_doc_count": 0,
  596. "trimEdges": 10
  597. },
  598. "type": "date_histogram"
  599. }
  600. ],
  601. "metrics": [
  602. {
  603. "field": "select field",
  604. "id": "1",
  605. "type": "count"
  606. }
  607. ],
  608. "refId": "A",
  609. "target": "",
  610. "timeField": "@timestamp"
  611. }
  612. ],
  613. "thresholds": [],
  614. "timeFrom": null,
  615. "timeRegions": [],
  616. "timeShift": null,
  617. "title": "Basic (version two) - interval 5m + trim edges=10",
  618. "tooltip": {
  619. "shared": true,
  620. "sort": 0,
  621. "value_type": "individual"
  622. },
  623. "type": "graph",
  624. "xaxis": {
  625. "buckets": null,
  626. "mode": "time",
  627. "name": null,
  628. "show": true,
  629. "values": []
  630. },
  631. "yaxes": [
  632. {
  633. "format": "short",
  634. "label": null,
  635. "logBase": 1,
  636. "max": null,
  637. "min": null,
  638. "show": true
  639. },
  640. {
  641. "format": "short",
  642. "label": null,
  643. "logBase": 1,
  644. "max": null,
  645. "min": null,
  646. "show": true
  647. }
  648. ],
  649. "yaxis": {
  650. "align": false,
  651. "alignLevel": null
  652. }
  653. }
  654. ],
  655. "title": "Basic date histogram with count",
  656. "type": "row"
  657. },
  658. {
  659. "collapsed": true,
  660. "gridPos": {
  661. "h": 1,
  662. "w": 24,
  663. "x": 0,
  664. "y": 1
  665. },
  666. "id": 11,
  667. "panels": [
  668. {
  669. "aliasColors": {},
  670. "bars": false,
  671. "dashLength": 10,
  672. "dashes": false,
  673. "datasource": "$version_one",
  674. "fill": 1,
  675. "gridPos": {
  676. "h": 9,
  677. "w": 12,
  678. "x": 0,
  679. "y": 2
  680. },
  681. "id": 12,
  682. "legend": {
  683. "avg": false,
  684. "current": false,
  685. "max": false,
  686. "min": false,
  687. "show": true,
  688. "total": false,
  689. "values": false
  690. },
  691. "lines": true,
  692. "linewidth": 1,
  693. "links": [],
  694. "nullPointMode": "null",
  695. "percentage": false,
  696. "pointradius": 5,
  697. "points": false,
  698. "renderer": "flot",
  699. "seriesOverrides": [],
  700. "spaceLength": 10,
  701. "stack": false,
  702. "steppedLine": false,
  703. "targets": [
  704. {
  705. "alias": "",
  706. "bucketAggs": [
  707. {
  708. "field": "@timestamp",
  709. "id": "2",
  710. "settings": {
  711. "interval": "auto",
  712. "min_doc_count": 0,
  713. "trimEdges": null
  714. },
  715. "type": "date_histogram"
  716. }
  717. ],
  718. "metrics": [
  719. {
  720. "field": "@value",
  721. "id": "1",
  722. "meta": {},
  723. "settings": {
  724. "missing": null
  725. },
  726. "type": "avg"
  727. }
  728. ],
  729. "refId": "A",
  730. "target": "",
  731. "timeField": "@timestamp"
  732. }
  733. ],
  734. "thresholds": [],
  735. "timeFrom": null,
  736. "timeRegions": [],
  737. "timeShift": null,
  738. "title": "avg (version one) - interval auto",
  739. "tooltip": {
  740. "shared": true,
  741. "sort": 0,
  742. "value_type": "individual"
  743. },
  744. "type": "graph",
  745. "xaxis": {
  746. "buckets": null,
  747. "mode": "time",
  748. "name": null,
  749. "show": true,
  750. "values": []
  751. },
  752. "yaxes": [
  753. {
  754. "format": "short",
  755. "label": null,
  756. "logBase": 1,
  757. "max": null,
  758. "min": null,
  759. "show": true
  760. },
  761. {
  762. "format": "short",
  763. "label": null,
  764. "logBase": 1,
  765. "max": null,
  766. "min": null,
  767. "show": true
  768. }
  769. ],
  770. "yaxis": {
  771. "align": false,
  772. "alignLevel": null
  773. }
  774. },
  775. {
  776. "aliasColors": {},
  777. "bars": false,
  778. "dashLength": 10,
  779. "dashes": false,
  780. "datasource": "$version_two",
  781. "fill": 1,
  782. "gridPos": {
  783. "h": 9,
  784. "w": 12,
  785. "x": 12,
  786. "y": 2
  787. },
  788. "id": 13,
  789. "legend": {
  790. "avg": false,
  791. "current": false,
  792. "max": false,
  793. "min": false,
  794. "show": true,
  795. "total": false,
  796. "values": false
  797. },
  798. "lines": true,
  799. "linewidth": 1,
  800. "links": [],
  801. "nullPointMode": "null",
  802. "percentage": false,
  803. "pointradius": 5,
  804. "points": false,
  805. "renderer": "flot",
  806. "seriesOverrides": [],
  807. "spaceLength": 10,
  808. "stack": false,
  809. "steppedLine": false,
  810. "targets": [
  811. {
  812. "alias": "",
  813. "bucketAggs": [
  814. {
  815. "field": "@timestamp",
  816. "id": "2",
  817. "settings": {
  818. "interval": "auto",
  819. "min_doc_count": 0,
  820. "trimEdges": null
  821. },
  822. "type": "date_histogram"
  823. }
  824. ],
  825. "metrics": [
  826. {
  827. "field": "@value",
  828. "id": "1",
  829. "meta": {},
  830. "settings": {
  831. "missing": null
  832. },
  833. "type": "avg"
  834. }
  835. ],
  836. "refId": "A",
  837. "target": "",
  838. "timeField": "@timestamp"
  839. }
  840. ],
  841. "thresholds": [],
  842. "timeFrom": null,
  843. "timeRegions": [],
  844. "timeShift": null,
  845. "title": "avg (version two) - interval auto",
  846. "tooltip": {
  847. "shared": true,
  848. "sort": 0,
  849. "value_type": "individual"
  850. },
  851. "type": "graph",
  852. "xaxis": {
  853. "buckets": null,
  854. "mode": "time",
  855. "name": null,
  856. "show": true,
  857. "values": []
  858. },
  859. "yaxes": [
  860. {
  861. "format": "short",
  862. "label": null,
  863. "logBase": 1,
  864. "max": null,
  865. "min": null,
  866. "show": true
  867. },
  868. {
  869. "format": "short",
  870. "label": null,
  871. "logBase": 1,
  872. "max": null,
  873. "min": null,
  874. "show": true
  875. }
  876. ],
  877. "yaxis": {
  878. "align": false,
  879. "alignLevel": null
  880. }
  881. },
  882. {
  883. "aliasColors": {},
  884. "bars": false,
  885. "dashLength": 10,
  886. "dashes": false,
  887. "datasource": "$version_one",
  888. "fill": 1,
  889. "gridPos": {
  890. "h": 9,
  891. "w": 12,
  892. "x": 0,
  893. "y": 11
  894. },
  895. "id": 14,
  896. "legend": {
  897. "avg": false,
  898. "current": false,
  899. "max": false,
  900. "min": false,
  901. "show": true,
  902. "total": false,
  903. "values": false
  904. },
  905. "lines": true,
  906. "linewidth": 1,
  907. "links": [],
  908. "nullPointMode": "null",
  909. "percentage": false,
  910. "pointradius": 5,
  911. "points": false,
  912. "renderer": "flot",
  913. "seriesOverrides": [],
  914. "spaceLength": 10,
  915. "stack": false,
  916. "steppedLine": false,
  917. "targets": [
  918. {
  919. "alias": "",
  920. "bucketAggs": [
  921. {
  922. "field": "@timestamp",
  923. "id": "2",
  924. "settings": {
  925. "interval": "auto",
  926. "min_doc_count": 0,
  927. "trimEdges": null
  928. },
  929. "type": "date_histogram"
  930. }
  931. ],
  932. "metrics": [
  933. {
  934. "field": "@value",
  935. "id": "1",
  936. "meta": {},
  937. "settings": {
  938. "missing": null
  939. },
  940. "type": "sum"
  941. }
  942. ],
  943. "refId": "A",
  944. "target": "",
  945. "timeField": "@timestamp"
  946. }
  947. ],
  948. "thresholds": [],
  949. "timeFrom": null,
  950. "timeRegions": [],
  951. "timeShift": null,
  952. "title": "sum (version one) - interval auto",
  953. "tooltip": {
  954. "shared": true,
  955. "sort": 0,
  956. "value_type": "individual"
  957. },
  958. "type": "graph",
  959. "xaxis": {
  960. "buckets": null,
  961. "mode": "time",
  962. "name": null,
  963. "show": true,
  964. "values": []
  965. },
  966. "yaxes": [
  967. {
  968. "format": "short",
  969. "label": null,
  970. "logBase": 1,
  971. "max": null,
  972. "min": null,
  973. "show": true
  974. },
  975. {
  976. "format": "short",
  977. "label": null,
  978. "logBase": 1,
  979. "max": null,
  980. "min": null,
  981. "show": true
  982. }
  983. ],
  984. "yaxis": {
  985. "align": false,
  986. "alignLevel": null
  987. }
  988. },
  989. {
  990. "aliasColors": {},
  991. "bars": false,
  992. "dashLength": 10,
  993. "dashes": false,
  994. "datasource": "$version_two",
  995. "fill": 1,
  996. "gridPos": {
  997. "h": 9,
  998. "w": 12,
  999. "x": 12,
  1000. "y": 11
  1001. },
  1002. "id": 15,
  1003. "legend": {
  1004. "avg": false,
  1005. "current": false,
  1006. "max": false,
  1007. "min": false,
  1008. "show": true,
  1009. "total": false,
  1010. "values": false
  1011. },
  1012. "lines": true,
  1013. "linewidth": 1,
  1014. "links": [],
  1015. "nullPointMode": "null",
  1016. "percentage": false,
  1017. "pointradius": 5,
  1018. "points": false,
  1019. "renderer": "flot",
  1020. "seriesOverrides": [],
  1021. "spaceLength": 10,
  1022. "stack": false,
  1023. "steppedLine": false,
  1024. "targets": [
  1025. {
  1026. "alias": "",
  1027. "bucketAggs": [
  1028. {
  1029. "field": "@timestamp",
  1030. "id": "2",
  1031. "settings": {
  1032. "interval": "auto",
  1033. "min_doc_count": 0,
  1034. "trimEdges": null
  1035. },
  1036. "type": "date_histogram"
  1037. }
  1038. ],
  1039. "metrics": [
  1040. {
  1041. "field": "@value",
  1042. "id": "1",
  1043. "meta": {},
  1044. "settings": {
  1045. "missing": null
  1046. },
  1047. "type": "sum"
  1048. }
  1049. ],
  1050. "refId": "A",
  1051. "target": "",
  1052. "timeField": "@timestamp"
  1053. }
  1054. ],
  1055. "thresholds": [],
  1056. "timeFrom": null,
  1057. "timeRegions": [],
  1058. "timeShift": null,
  1059. "title": "sum (version two) - interval auto",
  1060. "tooltip": {
  1061. "shared": true,
  1062. "sort": 0,
  1063. "value_type": "individual"
  1064. },
  1065. "type": "graph",
  1066. "xaxis": {
  1067. "buckets": null,
  1068. "mode": "time",
  1069. "name": null,
  1070. "show": true,
  1071. "values": []
  1072. },
  1073. "yaxes": [
  1074. {
  1075. "format": "short",
  1076. "label": null,
  1077. "logBase": 1,
  1078. "max": null,
  1079. "min": null,
  1080. "show": true
  1081. },
  1082. {
  1083. "format": "short",
  1084. "label": null,
  1085. "logBase": 1,
  1086. "max": null,
  1087. "min": null,
  1088. "show": true
  1089. }
  1090. ],
  1091. "yaxis": {
  1092. "align": false,
  1093. "alignLevel": null
  1094. }
  1095. },
  1096. {
  1097. "aliasColors": {},
  1098. "bars": false,
  1099. "dashLength": 10,
  1100. "dashes": false,
  1101. "datasource": "$version_one",
  1102. "decimals": 3,
  1103. "fill": 1,
  1104. "gridPos": {
  1105. "h": 9,
  1106. "w": 12,
  1107. "x": 0,
  1108. "y": 20
  1109. },
  1110. "id": 16,
  1111. "legend": {
  1112. "alignAsTable": true,
  1113. "avg": true,
  1114. "current": true,
  1115. "max": true,
  1116. "min": true,
  1117. "show": true,
  1118. "total": true,
  1119. "values": true
  1120. },
  1121. "lines": true,
  1122. "linewidth": 1,
  1123. "links": [],
  1124. "nullPointMode": "null",
  1125. "percentage": false,
  1126. "pointradius": 5,
  1127. "points": false,
  1128. "renderer": "flot",
  1129. "seriesOverrides": [],
  1130. "spaceLength": 10,
  1131. "stack": false,
  1132. "steppedLine": false,
  1133. "targets": [
  1134. {
  1135. "alias": "",
  1136. "bucketAggs": [
  1137. {
  1138. "field": "@timestamp",
  1139. "id": "2",
  1140. "settings": {
  1141. "interval": "auto",
  1142. "min_doc_count": 0,
  1143. "trimEdges": null
  1144. },
  1145. "type": "date_histogram"
  1146. }
  1147. ],
  1148. "metrics": [
  1149. {
  1150. "field": "@value",
  1151. "id": "1",
  1152. "meta": {},
  1153. "settings": {},
  1154. "type": "max"
  1155. }
  1156. ],
  1157. "refId": "A",
  1158. "target": "",
  1159. "timeField": "@timestamp"
  1160. }
  1161. ],
  1162. "thresholds": [],
  1163. "timeFrom": null,
  1164. "timeRegions": [],
  1165. "timeShift": null,
  1166. "title": "max (version one) - interval auto",
  1167. "tooltip": {
  1168. "shared": true,
  1169. "sort": 0,
  1170. "value_type": "individual"
  1171. },
  1172. "type": "graph",
  1173. "xaxis": {
  1174. "buckets": null,
  1175. "mode": "time",
  1176. "name": null,
  1177. "show": true,
  1178. "values": []
  1179. },
  1180. "yaxes": [
  1181. {
  1182. "format": "short",
  1183. "label": null,
  1184. "logBase": 1,
  1185. "max": null,
  1186. "min": null,
  1187. "show": true
  1188. },
  1189. {
  1190. "format": "short",
  1191. "label": null,
  1192. "logBase": 1,
  1193. "max": null,
  1194. "min": null,
  1195. "show": true
  1196. }
  1197. ],
  1198. "yaxis": {
  1199. "align": false,
  1200. "alignLevel": null
  1201. }
  1202. },
  1203. {
  1204. "aliasColors": {},
  1205. "bars": false,
  1206. "dashLength": 10,
  1207. "dashes": false,
  1208. "datasource": "$version_two",
  1209. "decimals": 3,
  1210. "fill": 1,
  1211. "gridPos": {
  1212. "h": 9,
  1213. "w": 12,
  1214. "x": 12,
  1215. "y": 20
  1216. },
  1217. "id": 21,
  1218. "legend": {
  1219. "alignAsTable": true,
  1220. "avg": true,
  1221. "current": true,
  1222. "max": true,
  1223. "min": true,
  1224. "show": true,
  1225. "total": true,
  1226. "values": true
  1227. },
  1228. "lines": true,
  1229. "linewidth": 1,
  1230. "links": [],
  1231. "nullPointMode": "null",
  1232. "percentage": false,
  1233. "pointradius": 5,
  1234. "points": false,
  1235. "renderer": "flot",
  1236. "seriesOverrides": [],
  1237. "spaceLength": 10,
  1238. "stack": false,
  1239. "steppedLine": false,
  1240. "targets": [
  1241. {
  1242. "alias": "",
  1243. "bucketAggs": [
  1244. {
  1245. "field": "@timestamp",
  1246. "id": "2",
  1247. "settings": {
  1248. "interval": "auto",
  1249. "min_doc_count": 0,
  1250. "trimEdges": null
  1251. },
  1252. "type": "date_histogram"
  1253. }
  1254. ],
  1255. "metrics": [
  1256. {
  1257. "field": "@value",
  1258. "id": "1",
  1259. "meta": {},
  1260. "settings": {},
  1261. "type": "max"
  1262. }
  1263. ],
  1264. "refId": "A",
  1265. "target": "",
  1266. "timeField": "@timestamp"
  1267. }
  1268. ],
  1269. "thresholds": [],
  1270. "timeFrom": null,
  1271. "timeRegions": [],
  1272. "timeShift": null,
  1273. "title": "max (version two) - interval auto",
  1274. "tooltip": {
  1275. "shared": true,
  1276. "sort": 0,
  1277. "value_type": "individual"
  1278. },
  1279. "type": "graph",
  1280. "xaxis": {
  1281. "buckets": null,
  1282. "mode": "time",
  1283. "name": null,
  1284. "show": true,
  1285. "values": []
  1286. },
  1287. "yaxes": [
  1288. {
  1289. "format": "short",
  1290. "label": null,
  1291. "logBase": 1,
  1292. "max": null,
  1293. "min": null,
  1294. "show": true
  1295. },
  1296. {
  1297. "format": "short",
  1298. "label": null,
  1299. "logBase": 1,
  1300. "max": null,
  1301. "min": null,
  1302. "show": true
  1303. }
  1304. ],
  1305. "yaxis": {
  1306. "align": false,
  1307. "alignLevel": null
  1308. }
  1309. },
  1310. {
  1311. "aliasColors": {},
  1312. "bars": false,
  1313. "dashLength": 10,
  1314. "dashes": false,
  1315. "datasource": "$version_one",
  1316. "decimals": 3,
  1317. "fill": 1,
  1318. "gridPos": {
  1319. "h": 9,
  1320. "w": 12,
  1321. "x": 0,
  1322. "y": 29
  1323. },
  1324. "id": 17,
  1325. "legend": {
  1326. "alignAsTable": true,
  1327. "avg": true,
  1328. "current": false,
  1329. "max": true,
  1330. "min": true,
  1331. "show": true,
  1332. "total": true,
  1333. "values": true
  1334. },
  1335. "lines": true,
  1336. "linewidth": 1,
  1337. "links": [],
  1338. "nullPointMode": "null",
  1339. "percentage": false,
  1340. "pointradius": 5,
  1341. "points": false,
  1342. "renderer": "flot",
  1343. "seriesOverrides": [],
  1344. "spaceLength": 10,
  1345. "stack": false,
  1346. "steppedLine": false,
  1347. "targets": [
  1348. {
  1349. "alias": "",
  1350. "bucketAggs": [
  1351. {
  1352. "field": "@timestamp",
  1353. "id": "2",
  1354. "settings": {
  1355. "interval": "auto",
  1356. "min_doc_count": 0,
  1357. "trimEdges": null
  1358. },
  1359. "type": "date_histogram"
  1360. }
  1361. ],
  1362. "metrics": [
  1363. {
  1364. "field": "@value",
  1365. "id": "1",
  1366. "meta": {},
  1367. "settings": {},
  1368. "type": "min"
  1369. }
  1370. ],
  1371. "refId": "A",
  1372. "target": "",
  1373. "timeField": "@timestamp"
  1374. }
  1375. ],
  1376. "thresholds": [],
  1377. "timeFrom": null,
  1378. "timeRegions": [],
  1379. "timeShift": null,
  1380. "title": "min (version one) - interval auto",
  1381. "tooltip": {
  1382. "shared": true,
  1383. "sort": 0,
  1384. "value_type": "individual"
  1385. },
  1386. "type": "graph",
  1387. "xaxis": {
  1388. "buckets": null,
  1389. "mode": "time",
  1390. "name": null,
  1391. "show": true,
  1392. "values": []
  1393. },
  1394. "yaxes": [
  1395. {
  1396. "format": "short",
  1397. "label": null,
  1398. "logBase": 1,
  1399. "max": null,
  1400. "min": null,
  1401. "show": true
  1402. },
  1403. {
  1404. "format": "short",
  1405. "label": null,
  1406. "logBase": 1,
  1407. "max": null,
  1408. "min": null,
  1409. "show": true
  1410. }
  1411. ],
  1412. "yaxis": {
  1413. "align": false,
  1414. "alignLevel": null
  1415. }
  1416. },
  1417. {
  1418. "aliasColors": {},
  1419. "bars": false,
  1420. "dashLength": 10,
  1421. "dashes": false,
  1422. "datasource": "$version_two",
  1423. "decimals": 3,
  1424. "fill": 1,
  1425. "gridPos": {
  1426. "h": 9,
  1427. "w": 12,
  1428. "x": 12,
  1429. "y": 29
  1430. },
  1431. "id": 22,
  1432. "legend": {
  1433. "alignAsTable": true,
  1434. "avg": true,
  1435. "current": false,
  1436. "max": true,
  1437. "min": true,
  1438. "show": true,
  1439. "total": true,
  1440. "values": true
  1441. },
  1442. "lines": true,
  1443. "linewidth": 1,
  1444. "links": [],
  1445. "nullPointMode": "null",
  1446. "percentage": false,
  1447. "pointradius": 5,
  1448. "points": false,
  1449. "renderer": "flot",
  1450. "seriesOverrides": [],
  1451. "spaceLength": 10,
  1452. "stack": false,
  1453. "steppedLine": false,
  1454. "targets": [
  1455. {
  1456. "alias": "",
  1457. "bucketAggs": [
  1458. {
  1459. "field": "@timestamp",
  1460. "id": "2",
  1461. "settings": {
  1462. "interval": "auto",
  1463. "min_doc_count": 0,
  1464. "trimEdges": null
  1465. },
  1466. "type": "date_histogram"
  1467. }
  1468. ],
  1469. "metrics": [
  1470. {
  1471. "field": "@value",
  1472. "id": "1",
  1473. "meta": {},
  1474. "settings": {},
  1475. "type": "min"
  1476. }
  1477. ],
  1478. "refId": "A",
  1479. "target": "",
  1480. "timeField": "@timestamp"
  1481. }
  1482. ],
  1483. "thresholds": [],
  1484. "timeFrom": null,
  1485. "timeRegions": [],
  1486. "timeShift": null,
  1487. "title": "min (version two) - interval auto",
  1488. "tooltip": {
  1489. "shared": true,
  1490. "sort": 0,
  1491. "value_type": "individual"
  1492. },
  1493. "type": "graph",
  1494. "xaxis": {
  1495. "buckets": null,
  1496. "mode": "time",
  1497. "name": null,
  1498. "show": true,
  1499. "values": []
  1500. },
  1501. "yaxes": [
  1502. {
  1503. "format": "short",
  1504. "label": null,
  1505. "logBase": 1,
  1506. "max": null,
  1507. "min": null,
  1508. "show": true
  1509. },
  1510. {
  1511. "format": "short",
  1512. "label": null,
  1513. "logBase": 1,
  1514. "max": null,
  1515. "min": null,
  1516. "show": true
  1517. }
  1518. ],
  1519. "yaxis": {
  1520. "align": false,
  1521. "alignLevel": null
  1522. }
  1523. },
  1524. {
  1525. "aliasColors": {},
  1526. "bars": false,
  1527. "dashLength": 10,
  1528. "dashes": false,
  1529. "datasource": "$version_one",
  1530. "decimals": 3,
  1531. "fill": 1,
  1532. "gridPos": {
  1533. "h": 9,
  1534. "w": 12,
  1535. "x": 0,
  1536. "y": 38
  1537. },
  1538. "id": 18,
  1539. "legend": {
  1540. "alignAsTable": true,
  1541. "avg": true,
  1542. "current": false,
  1543. "max": true,
  1544. "min": true,
  1545. "rightSide": true,
  1546. "show": true,
  1547. "sort": "min",
  1548. "sortDesc": true,
  1549. "total": true,
  1550. "values": true
  1551. },
  1552. "lines": true,
  1553. "linewidth": 1,
  1554. "links": [],
  1555. "nullPointMode": "null",
  1556. "percentage": false,
  1557. "pointradius": 5,
  1558. "points": false,
  1559. "renderer": "flot",
  1560. "seriesOverrides": [],
  1561. "spaceLength": 10,
  1562. "stack": false,
  1563. "steppedLine": false,
  1564. "targets": [
  1565. {
  1566. "alias": "",
  1567. "bucketAggs": [
  1568. {
  1569. "field": "@timestamp",
  1570. "id": "2",
  1571. "settings": {
  1572. "interval": "auto",
  1573. "min_doc_count": 0,
  1574. "trimEdges": null
  1575. },
  1576. "type": "date_histogram"
  1577. }
  1578. ],
  1579. "metrics": [
  1580. {
  1581. "field": "@value",
  1582. "id": "1",
  1583. "meta": {
  1584. "avg": true,
  1585. "count": true,
  1586. "max": true,
  1587. "min": true,
  1588. "std_deviation": true,
  1589. "std_deviation_bounds_lower": true,
  1590. "std_deviation_bounds_upper": true,
  1591. "sum": true
  1592. },
  1593. "settings": {},
  1594. "type": "extended_stats"
  1595. }
  1596. ],
  1597. "refId": "A",
  1598. "target": "",
  1599. "timeField": "@timestamp"
  1600. }
  1601. ],
  1602. "thresholds": [],
  1603. "timeFrom": null,
  1604. "timeRegions": [],
  1605. "timeShift": null,
  1606. "title": "extended stats (version one) - interval auto",
  1607. "tooltip": {
  1608. "shared": true,
  1609. "sort": 0,
  1610. "value_type": "individual"
  1611. },
  1612. "type": "graph",
  1613. "xaxis": {
  1614. "buckets": null,
  1615. "mode": "time",
  1616. "name": null,
  1617. "show": true,
  1618. "values": []
  1619. },
  1620. "yaxes": [
  1621. {
  1622. "format": "short",
  1623. "label": null,
  1624. "logBase": 1,
  1625. "max": null,
  1626. "min": null,
  1627. "show": true
  1628. },
  1629. {
  1630. "format": "short",
  1631. "label": null,
  1632. "logBase": 1,
  1633. "max": null,
  1634. "min": null,
  1635. "show": true
  1636. }
  1637. ],
  1638. "yaxis": {
  1639. "align": false,
  1640. "alignLevel": null
  1641. }
  1642. },
  1643. {
  1644. "aliasColors": {},
  1645. "bars": false,
  1646. "dashLength": 10,
  1647. "dashes": false,
  1648. "datasource": "$version_two",
  1649. "decimals": 3,
  1650. "fill": 1,
  1651. "gridPos": {
  1652. "h": 9,
  1653. "w": 12,
  1654. "x": 12,
  1655. "y": 38
  1656. },
  1657. "id": 23,
  1658. "legend": {
  1659. "alignAsTable": true,
  1660. "avg": true,
  1661. "current": false,
  1662. "max": true,
  1663. "min": true,
  1664. "rightSide": true,
  1665. "show": true,
  1666. "sort": "min",
  1667. "sortDesc": true,
  1668. "total": true,
  1669. "values": true
  1670. },
  1671. "lines": true,
  1672. "linewidth": 1,
  1673. "links": [],
  1674. "nullPointMode": "null",
  1675. "percentage": false,
  1676. "pointradius": 5,
  1677. "points": false,
  1678. "renderer": "flot",
  1679. "seriesOverrides": [],
  1680. "spaceLength": 10,
  1681. "stack": false,
  1682. "steppedLine": false,
  1683. "targets": [
  1684. {
  1685. "alias": "",
  1686. "bucketAggs": [
  1687. {
  1688. "field": "@timestamp",
  1689. "id": "2",
  1690. "settings": {
  1691. "interval": "auto",
  1692. "min_doc_count": 0,
  1693. "trimEdges": null
  1694. },
  1695. "type": "date_histogram"
  1696. }
  1697. ],
  1698. "metrics": [
  1699. {
  1700. "field": "@value",
  1701. "id": "1",
  1702. "meta": {
  1703. "avg": true,
  1704. "count": true,
  1705. "max": true,
  1706. "min": true,
  1707. "std_deviation": true,
  1708. "std_deviation_bounds_lower": true,
  1709. "std_deviation_bounds_upper": true,
  1710. "sum": true
  1711. },
  1712. "settings": {},
  1713. "type": "extended_stats"
  1714. }
  1715. ],
  1716. "refId": "A",
  1717. "target": "",
  1718. "timeField": "@timestamp"
  1719. }
  1720. ],
  1721. "thresholds": [],
  1722. "timeFrom": null,
  1723. "timeRegions": [],
  1724. "timeShift": null,
  1725. "title": "extended stats (version two) - interval auto",
  1726. "tooltip": {
  1727. "shared": true,
  1728. "sort": 0,
  1729. "value_type": "individual"
  1730. },
  1731. "type": "graph",
  1732. "xaxis": {
  1733. "buckets": null,
  1734. "mode": "time",
  1735. "name": null,
  1736. "show": true,
  1737. "values": []
  1738. },
  1739. "yaxes": [
  1740. {
  1741. "format": "short",
  1742. "label": null,
  1743. "logBase": 1,
  1744. "max": null,
  1745. "min": null,
  1746. "show": true
  1747. },
  1748. {
  1749. "format": "short",
  1750. "label": null,
  1751. "logBase": 1,
  1752. "max": null,
  1753. "min": null,
  1754. "show": true
  1755. }
  1756. ],
  1757. "yaxis": {
  1758. "align": false,
  1759. "alignLevel": null
  1760. }
  1761. },
  1762. {
  1763. "aliasColors": {},
  1764. "bars": false,
  1765. "dashLength": 10,
  1766. "dashes": false,
  1767. "datasource": "$version_one",
  1768. "decimals": 3,
  1769. "fill": 1,
  1770. "gridPos": {
  1771. "h": 9,
  1772. "w": 12,
  1773. "x": 0,
  1774. "y": 47
  1775. },
  1776. "id": 19,
  1777. "legend": {
  1778. "alignAsTable": true,
  1779. "avg": true,
  1780. "current": false,
  1781. "max": true,
  1782. "min": true,
  1783. "rightSide": true,
  1784. "show": true,
  1785. "total": true,
  1786. "values": true
  1787. },
  1788. "lines": true,
  1789. "linewidth": 1,
  1790. "links": [],
  1791. "nullPointMode": "null",
  1792. "percentage": false,
  1793. "pointradius": 5,
  1794. "points": false,
  1795. "renderer": "flot",
  1796. "seriesOverrides": [],
  1797. "spaceLength": 10,
  1798. "stack": false,
  1799. "steppedLine": false,
  1800. "targets": [
  1801. {
  1802. "alias": "",
  1803. "bucketAggs": [
  1804. {
  1805. "field": "@timestamp",
  1806. "id": "2",
  1807. "settings": {
  1808. "interval": "auto",
  1809. "min_doc_count": 0,
  1810. "trimEdges": null
  1811. },
  1812. "type": "date_histogram"
  1813. }
  1814. ],
  1815. "metrics": [
  1816. {
  1817. "field": "@value",
  1818. "id": "1",
  1819. "meta": {},
  1820. "settings": {
  1821. "percents": [
  1822. 25,
  1823. 50,
  1824. 75,
  1825. 95,
  1826. 99
  1827. ]
  1828. },
  1829. "type": "percentiles"
  1830. }
  1831. ],
  1832. "refId": "A",
  1833. "target": "",
  1834. "timeField": "@timestamp"
  1835. }
  1836. ],
  1837. "thresholds": [],
  1838. "timeFrom": null,
  1839. "timeRegions": [],
  1840. "timeShift": null,
  1841. "title": "percentiles (version one) - interval auto",
  1842. "tooltip": {
  1843. "shared": true,
  1844. "sort": 0,
  1845. "value_type": "individual"
  1846. },
  1847. "type": "graph",
  1848. "xaxis": {
  1849. "buckets": null,
  1850. "mode": "time",
  1851. "name": null,
  1852. "show": true,
  1853. "values": []
  1854. },
  1855. "yaxes": [
  1856. {
  1857. "format": "short",
  1858. "label": null,
  1859. "logBase": 1,
  1860. "max": null,
  1861. "min": null,
  1862. "show": true
  1863. },
  1864. {
  1865. "format": "short",
  1866. "label": null,
  1867. "logBase": 1,
  1868. "max": null,
  1869. "min": null,
  1870. "show": true
  1871. }
  1872. ],
  1873. "yaxis": {
  1874. "align": false,
  1875. "alignLevel": null
  1876. }
  1877. },
  1878. {
  1879. "aliasColors": {},
  1880. "bars": false,
  1881. "dashLength": 10,
  1882. "dashes": false,
  1883. "datasource": "$version_two",
  1884. "decimals": 3,
  1885. "fill": 1,
  1886. "gridPos": {
  1887. "h": 9,
  1888. "w": 12,
  1889. "x": 12,
  1890. "y": 47
  1891. },
  1892. "id": 24,
  1893. "legend": {
  1894. "alignAsTable": true,
  1895. "avg": true,
  1896. "current": false,
  1897. "max": true,
  1898. "min": true,
  1899. "rightSide": true,
  1900. "show": true,
  1901. "total": true,
  1902. "values": true
  1903. },
  1904. "lines": true,
  1905. "linewidth": 1,
  1906. "links": [],
  1907. "nullPointMode": "null",
  1908. "percentage": false,
  1909. "pointradius": 5,
  1910. "points": false,
  1911. "renderer": "flot",
  1912. "seriesOverrides": [],
  1913. "spaceLength": 10,
  1914. "stack": false,
  1915. "steppedLine": false,
  1916. "targets": [
  1917. {
  1918. "alias": "",
  1919. "bucketAggs": [
  1920. {
  1921. "field": "@timestamp",
  1922. "id": "2",
  1923. "settings": {
  1924. "interval": "auto",
  1925. "min_doc_count": 0,
  1926. "trimEdges": null
  1927. },
  1928. "type": "date_histogram"
  1929. }
  1930. ],
  1931. "metrics": [
  1932. {
  1933. "field": "@value",
  1934. "id": "1",
  1935. "meta": {},
  1936. "settings": {
  1937. "missing": null,
  1938. "percents": [
  1939. 25,
  1940. 50,
  1941. 75,
  1942. 95,
  1943. 99
  1944. ]
  1945. },
  1946. "type": "percentiles"
  1947. }
  1948. ],
  1949. "refId": "A",
  1950. "target": "",
  1951. "timeField": "@timestamp"
  1952. }
  1953. ],
  1954. "thresholds": [],
  1955. "timeFrom": null,
  1956. "timeRegions": [],
  1957. "timeShift": null,
  1958. "title": "percentiles (version two) - interval auto",
  1959. "tooltip": {
  1960. "shared": true,
  1961. "sort": 0,
  1962. "value_type": "individual"
  1963. },
  1964. "type": "graph",
  1965. "xaxis": {
  1966. "buckets": null,
  1967. "mode": "time",
  1968. "name": null,
  1969. "show": true,
  1970. "values": []
  1971. },
  1972. "yaxes": [
  1973. {
  1974. "format": "short",
  1975. "label": null,
  1976. "logBase": 1,
  1977. "max": null,
  1978. "min": null,
  1979. "show": true
  1980. },
  1981. {
  1982. "format": "short",
  1983. "label": null,
  1984. "logBase": 1,
  1985. "max": null,
  1986. "min": null,
  1987. "show": true
  1988. }
  1989. ],
  1990. "yaxis": {
  1991. "align": false,
  1992. "alignLevel": null
  1993. }
  1994. },
  1995. {
  1996. "aliasColors": {},
  1997. "bars": false,
  1998. "dashLength": 10,
  1999. "dashes": false,
  2000. "datasource": "$version_one",
  2001. "decimals": 3,
  2002. "fill": 1,
  2003. "gridPos": {
  2004. "h": 9,
  2005. "w": 12,
  2006. "x": 0,
  2007. "y": 56
  2008. },
  2009. "id": 20,
  2010. "legend": {
  2011. "alignAsTable": true,
  2012. "avg": true,
  2013. "current": false,
  2014. "max": true,
  2015. "min": true,
  2016. "rightSide": false,
  2017. "show": true,
  2018. "total": true,
  2019. "values": true
  2020. },
  2021. "lines": true,
  2022. "linewidth": 1,
  2023. "links": [],
  2024. "nullPointMode": "null",
  2025. "percentage": false,
  2026. "pointradius": 5,
  2027. "points": false,
  2028. "renderer": "flot",
  2029. "seriesOverrides": [],
  2030. "spaceLength": 10,
  2031. "stack": false,
  2032. "steppedLine": false,
  2033. "targets": [
  2034. {
  2035. "alias": "",
  2036. "bucketAggs": [
  2037. {
  2038. "field": "@timestamp",
  2039. "id": "2",
  2040. "settings": {
  2041. "interval": "auto",
  2042. "min_doc_count": 0,
  2043. "trimEdges": null
  2044. },
  2045. "type": "date_histogram"
  2046. }
  2047. ],
  2048. "metrics": [
  2049. {
  2050. "field": "@value",
  2051. "id": "1",
  2052. "meta": {},
  2053. "settings": {},
  2054. "type": "cardinality"
  2055. }
  2056. ],
  2057. "refId": "A",
  2058. "target": "",
  2059. "timeField": "@timestamp"
  2060. }
  2061. ],
  2062. "thresholds": [],
  2063. "timeFrom": null,
  2064. "timeRegions": [],
  2065. "timeShift": null,
  2066. "title": "unique count (version one) - interval auto",
  2067. "tooltip": {
  2068. "shared": true,
  2069. "sort": 0,
  2070. "value_type": "individual"
  2071. },
  2072. "type": "graph",
  2073. "xaxis": {
  2074. "buckets": null,
  2075. "mode": "time",
  2076. "name": null,
  2077. "show": true,
  2078. "values": []
  2079. },
  2080. "yaxes": [
  2081. {
  2082. "format": "short",
  2083. "label": null,
  2084. "logBase": 1,
  2085. "max": null,
  2086. "min": null,
  2087. "show": true
  2088. },
  2089. {
  2090. "format": "short",
  2091. "label": null,
  2092. "logBase": 1,
  2093. "max": null,
  2094. "min": null,
  2095. "show": true
  2096. }
  2097. ],
  2098. "yaxis": {
  2099. "align": false,
  2100. "alignLevel": null
  2101. }
  2102. },
  2103. {
  2104. "aliasColors": {},
  2105. "bars": false,
  2106. "dashLength": 10,
  2107. "dashes": false,
  2108. "datasource": "$version_two",
  2109. "decimals": 3,
  2110. "fill": 1,
  2111. "gridPos": {
  2112. "h": 9,
  2113. "w": 12,
  2114. "x": 12,
  2115. "y": 56
  2116. },
  2117. "id": 25,
  2118. "legend": {
  2119. "alignAsTable": true,
  2120. "avg": true,
  2121. "current": false,
  2122. "max": true,
  2123. "min": true,
  2124. "rightSide": false,
  2125. "show": true,
  2126. "total": true,
  2127. "values": true
  2128. },
  2129. "lines": true,
  2130. "linewidth": 1,
  2131. "links": [],
  2132. "nullPointMode": "null",
  2133. "percentage": false,
  2134. "pointradius": 5,
  2135. "points": false,
  2136. "renderer": "flot",
  2137. "seriesOverrides": [],
  2138. "spaceLength": 10,
  2139. "stack": false,
  2140. "steppedLine": false,
  2141. "targets": [
  2142. {
  2143. "alias": "",
  2144. "bucketAggs": [
  2145. {
  2146. "field": "@timestamp",
  2147. "id": "2",
  2148. "settings": {
  2149. "interval": "auto",
  2150. "min_doc_count": 0,
  2151. "trimEdges": null
  2152. },
  2153. "type": "date_histogram"
  2154. }
  2155. ],
  2156. "metrics": [
  2157. {
  2158. "field": "@value",
  2159. "id": "1",
  2160. "meta": {},
  2161. "settings": {},
  2162. "type": "cardinality"
  2163. }
  2164. ],
  2165. "refId": "A",
  2166. "target": "",
  2167. "timeField": "@timestamp"
  2168. }
  2169. ],
  2170. "thresholds": [],
  2171. "timeFrom": null,
  2172. "timeRegions": [],
  2173. "timeShift": null,
  2174. "title": "unique count (version two) - interval auto",
  2175. "tooltip": {
  2176. "shared": true,
  2177. "sort": 0,
  2178. "value_type": "individual"
  2179. },
  2180. "type": "graph",
  2181. "xaxis": {
  2182. "buckets": null,
  2183. "mode": "time",
  2184. "name": null,
  2185. "show": true,
  2186. "values": []
  2187. },
  2188. "yaxes": [
  2189. {
  2190. "format": "short",
  2191. "label": null,
  2192. "logBase": 1,
  2193. "max": null,
  2194. "min": null,
  2195. "show": true
  2196. },
  2197. {
  2198. "format": "short",
  2199. "label": null,
  2200. "logBase": 1,
  2201. "max": null,
  2202. "min": null,
  2203. "show": true
  2204. }
  2205. ],
  2206. "yaxis": {
  2207. "align": false,
  2208. "alignLevel": null
  2209. }
  2210. }
  2211. ],
  2212. "title": "Basic date histogram with metric aggregation",
  2213. "type": "row"
  2214. },
  2215. {
  2216. "collapsed": true,
  2217. "gridPos": {
  2218. "h": 1,
  2219. "w": 24,
  2220. "x": 0,
  2221. "y": 2
  2222. },
  2223. "id": 27,
  2224. "panels": [
  2225. {
  2226. "aliasColors": {},
  2227. "bars": false,
  2228. "dashLength": 10,
  2229. "dashes": false,
  2230. "datasource": "$version_one",
  2231. "fill": 1,
  2232. "gridPos": {
  2233. "h": 9,
  2234. "w": 12,
  2235. "x": 0,
  2236. "y": 3
  2237. },
  2238. "id": 55,
  2239. "legend": {
  2240. "avg": false,
  2241. "current": false,
  2242. "max": false,
  2243. "min": false,
  2244. "show": true,
  2245. "total": false,
  2246. "values": false
  2247. },
  2248. "lines": true,
  2249. "linewidth": 1,
  2250. "links": [],
  2251. "nullPointMode": "null",
  2252. "percentage": false,
  2253. "pointradius": 5,
  2254. "points": false,
  2255. "renderer": "flot",
  2256. "seriesOverrides": [],
  2257. "spaceLength": 10,
  2258. "stack": false,
  2259. "steppedLine": false,
  2260. "targets": [
  2261. {
  2262. "bucketAggs": [
  2263. {
  2264. "field": "@timestamp",
  2265. "id": "2",
  2266. "settings": {
  2267. "interval": "5m",
  2268. "min_doc_count": 0,
  2269. "trimEdges": 0
  2270. },
  2271. "type": "date_histogram"
  2272. }
  2273. ],
  2274. "metrics": [
  2275. {
  2276. "field": "@value",
  2277. "hide": true,
  2278. "id": "1",
  2279. "meta": {},
  2280. "settings": {},
  2281. "type": "count"
  2282. },
  2283. {
  2284. "field": "1",
  2285. "id": "3",
  2286. "meta": {},
  2287. "pipelineAgg": "1",
  2288. "settings": {
  2289. "minimize": false,
  2290. "model": "simple",
  2291. "window": 5
  2292. },
  2293. "type": "moving_avg"
  2294. }
  2295. ],
  2296. "refId": "A",
  2297. "target": "",
  2298. "timeField": "@timestamp"
  2299. }
  2300. ],
  2301. "thresholds": [],
  2302. "timeFrom": null,
  2303. "timeRegions": [],
  2304. "timeShift": null,
  2305. "title": "count (version one) - interval 5m",
  2306. "tooltip": {
  2307. "shared": true,
  2308. "sort": 0,
  2309. "value_type": "individual"
  2310. },
  2311. "type": "graph",
  2312. "xaxis": {
  2313. "buckets": null,
  2314. "mode": "time",
  2315. "name": null,
  2316. "show": true,
  2317. "values": []
  2318. },
  2319. "yaxes": [
  2320. {
  2321. "format": "short",
  2322. "label": null,
  2323. "logBase": 1,
  2324. "max": null,
  2325. "min": null,
  2326. "show": true
  2327. },
  2328. {
  2329. "format": "short",
  2330. "label": null,
  2331. "logBase": 1,
  2332. "max": null,
  2333. "min": null,
  2334. "show": true
  2335. }
  2336. ],
  2337. "yaxis": {
  2338. "align": false,
  2339. "alignLevel": null
  2340. }
  2341. },
  2342. {
  2343. "aliasColors": {},
  2344. "bars": false,
  2345. "dashLength": 10,
  2346. "dashes": false,
  2347. "datasource": "$version_two",
  2348. "fill": 1,
  2349. "gridPos": {
  2350. "h": 9,
  2351. "w": 12,
  2352. "x": 12,
  2353. "y": 3
  2354. },
  2355. "id": 34,
  2356. "legend": {
  2357. "avg": false,
  2358. "current": false,
  2359. "max": false,
  2360. "min": false,
  2361. "show": true,
  2362. "total": false,
  2363. "values": false
  2364. },
  2365. "lines": true,
  2366. "linewidth": 1,
  2367. "links": [],
  2368. "nullPointMode": "null",
  2369. "percentage": false,
  2370. "pointradius": 5,
  2371. "points": false,
  2372. "renderer": "flot",
  2373. "seriesOverrides": [],
  2374. "spaceLength": 10,
  2375. "stack": false,
  2376. "steppedLine": false,
  2377. "targets": [
  2378. {
  2379. "bucketAggs": [
  2380. {
  2381. "field": "@timestamp",
  2382. "id": "2",
  2383. "settings": {
  2384. "interval": "5m",
  2385. "min_doc_count": 0,
  2386. "trimEdges": 0
  2387. },
  2388. "type": "date_histogram"
  2389. }
  2390. ],
  2391. "metrics": [
  2392. {
  2393. "field": "@value",
  2394. "hide": true,
  2395. "id": "1",
  2396. "meta": {},
  2397. "settings": {},
  2398. "type": "count"
  2399. },
  2400. {
  2401. "field": "1",
  2402. "id": "3",
  2403. "meta": {},
  2404. "pipelineAgg": "1",
  2405. "settings": {
  2406. "minimize": false,
  2407. "model": "simple",
  2408. "window": 5
  2409. },
  2410. "type": "moving_avg"
  2411. }
  2412. ],
  2413. "refId": "A",
  2414. "target": "",
  2415. "timeField": "@timestamp"
  2416. }
  2417. ],
  2418. "thresholds": [],
  2419. "timeFrom": null,
  2420. "timeRegions": [],
  2421. "timeShift": null,
  2422. "title": "count (version two) - interval 5m",
  2423. "tooltip": {
  2424. "shared": true,
  2425. "sort": 0,
  2426. "value_type": "individual"
  2427. },
  2428. "type": "graph",
  2429. "xaxis": {
  2430. "buckets": null,
  2431. "mode": "time",
  2432. "name": null,
  2433. "show": true,
  2434. "values": []
  2435. },
  2436. "yaxes": [
  2437. {
  2438. "format": "short",
  2439. "label": null,
  2440. "logBase": 1,
  2441. "max": null,
  2442. "min": null,
  2443. "show": true
  2444. },
  2445. {
  2446. "format": "short",
  2447. "label": null,
  2448. "logBase": 1,
  2449. "max": null,
  2450. "min": null,
  2451. "show": true
  2452. }
  2453. ],
  2454. "yaxis": {
  2455. "align": false,
  2456. "alignLevel": null
  2457. }
  2458. },
  2459. {
  2460. "aliasColors": {},
  2461. "bars": false,
  2462. "dashLength": 10,
  2463. "dashes": false,
  2464. "datasource": "$version_one",
  2465. "fill": 1,
  2466. "gridPos": {
  2467. "h": 9,
  2468. "w": 12,
  2469. "x": 0,
  2470. "y": 12
  2471. },
  2472. "id": 29,
  2473. "legend": {
  2474. "avg": false,
  2475. "current": false,
  2476. "max": false,
  2477. "min": false,
  2478. "show": true,
  2479. "total": false,
  2480. "values": false
  2481. },
  2482. "lines": true,
  2483. "linewidth": 1,
  2484. "links": [],
  2485. "nullPointMode": "null",
  2486. "percentage": false,
  2487. "pointradius": 5,
  2488. "points": false,
  2489. "renderer": "flot",
  2490. "seriesOverrides": [],
  2491. "spaceLength": 10,
  2492. "stack": false,
  2493. "steppedLine": false,
  2494. "targets": [
  2495. {
  2496. "bucketAggs": [
  2497. {
  2498. "field": "@timestamp",
  2499. "id": "2",
  2500. "settings": {
  2501. "interval": "5m",
  2502. "min_doc_count": 0,
  2503. "trimEdges": 0
  2504. },
  2505. "type": "date_histogram"
  2506. }
  2507. ],
  2508. "metrics": [
  2509. {
  2510. "field": "@value",
  2511. "hide": true,
  2512. "id": "1",
  2513. "meta": {},
  2514. "settings": {},
  2515. "type": "avg"
  2516. },
  2517. {
  2518. "field": "1",
  2519. "id": "3",
  2520. "meta": {},
  2521. "pipelineAgg": "1",
  2522. "settings": {
  2523. "minimize": false,
  2524. "model": "simple",
  2525. "window": 5
  2526. },
  2527. "type": "moving_avg"
  2528. }
  2529. ],
  2530. "refId": "A",
  2531. "target": "",
  2532. "timeField": "@timestamp"
  2533. }
  2534. ],
  2535. "thresholds": [],
  2536. "timeFrom": null,
  2537. "timeRegions": [],
  2538. "timeShift": null,
  2539. "title": "avg (version one) - interval 5m",
  2540. "tooltip": {
  2541. "shared": true,
  2542. "sort": 0,
  2543. "value_type": "individual"
  2544. },
  2545. "type": "graph",
  2546. "xaxis": {
  2547. "buckets": null,
  2548. "mode": "time",
  2549. "name": null,
  2550. "show": true,
  2551. "values": []
  2552. },
  2553. "yaxes": [
  2554. {
  2555. "format": "short",
  2556. "label": null,
  2557. "logBase": 1,
  2558. "max": null,
  2559. "min": null,
  2560. "show": true
  2561. },
  2562. {
  2563. "format": "short",
  2564. "label": null,
  2565. "logBase": 1,
  2566. "max": null,
  2567. "min": null,
  2568. "show": true
  2569. }
  2570. ],
  2571. "yaxis": {
  2572. "align": false,
  2573. "alignLevel": null
  2574. }
  2575. },
  2576. {
  2577. "aliasColors": {},
  2578. "bars": false,
  2579. "dashLength": 10,
  2580. "dashes": false,
  2581. "datasource": "$version_two",
  2582. "fill": 1,
  2583. "gridPos": {
  2584. "h": 9,
  2585. "w": 12,
  2586. "x": 12,
  2587. "y": 12
  2588. },
  2589. "id": 56,
  2590. "legend": {
  2591. "avg": false,
  2592. "current": false,
  2593. "max": false,
  2594. "min": false,
  2595. "show": true,
  2596. "total": false,
  2597. "values": false
  2598. },
  2599. "lines": true,
  2600. "linewidth": 1,
  2601. "links": [],
  2602. "nullPointMode": "null",
  2603. "percentage": false,
  2604. "pointradius": 5,
  2605. "points": false,
  2606. "renderer": "flot",
  2607. "seriesOverrides": [],
  2608. "spaceLength": 10,
  2609. "stack": false,
  2610. "steppedLine": false,
  2611. "targets": [
  2612. {
  2613. "bucketAggs": [
  2614. {
  2615. "field": "@timestamp",
  2616. "id": "2",
  2617. "settings": {
  2618. "interval": "5m",
  2619. "min_doc_count": 0,
  2620. "trimEdges": 0
  2621. },
  2622. "type": "date_histogram"
  2623. }
  2624. ],
  2625. "metrics": [
  2626. {
  2627. "field": "@value",
  2628. "hide": true,
  2629. "id": "1",
  2630. "meta": {},
  2631. "settings": {},
  2632. "type": "avg"
  2633. },
  2634. {
  2635. "field": "1",
  2636. "id": "3",
  2637. "meta": {},
  2638. "pipelineAgg": "1",
  2639. "settings": {
  2640. "minimize": false,
  2641. "model": "simple",
  2642. "window": 5
  2643. },
  2644. "type": "moving_avg"
  2645. }
  2646. ],
  2647. "refId": "A",
  2648. "target": "",
  2649. "timeField": "@timestamp"
  2650. }
  2651. ],
  2652. "thresholds": [],
  2653. "timeFrom": null,
  2654. "timeRegions": [],
  2655. "timeShift": null,
  2656. "title": "avg (version two) - interval 5m",
  2657. "tooltip": {
  2658. "shared": true,
  2659. "sort": 0,
  2660. "value_type": "individual"
  2661. },
  2662. "type": "graph",
  2663. "xaxis": {
  2664. "buckets": null,
  2665. "mode": "time",
  2666. "name": null,
  2667. "show": true,
  2668. "values": []
  2669. },
  2670. "yaxes": [
  2671. {
  2672. "format": "short",
  2673. "label": null,
  2674. "logBase": 1,
  2675. "max": null,
  2676. "min": null,
  2677. "show": true
  2678. },
  2679. {
  2680. "format": "short",
  2681. "label": null,
  2682. "logBase": 1,
  2683. "max": null,
  2684. "min": null,
  2685. "show": true
  2686. }
  2687. ],
  2688. "yaxis": {
  2689. "align": false,
  2690. "alignLevel": null
  2691. }
  2692. },
  2693. {
  2694. "aliasColors": {},
  2695. "bars": false,
  2696. "dashLength": 10,
  2697. "dashes": false,
  2698. "datasource": "$version_one",
  2699. "fill": 1,
  2700. "gridPos": {
  2701. "h": 9,
  2702. "w": 12,
  2703. "x": 0,
  2704. "y": 21
  2705. },
  2706. "id": 30,
  2707. "legend": {
  2708. "avg": false,
  2709. "current": false,
  2710. "max": false,
  2711. "min": false,
  2712. "show": true,
  2713. "total": false,
  2714. "values": false
  2715. },
  2716. "lines": true,
  2717. "linewidth": 1,
  2718. "links": [],
  2719. "nullPointMode": "null",
  2720. "percentage": false,
  2721. "pointradius": 5,
  2722. "points": false,
  2723. "renderer": "flot",
  2724. "seriesOverrides": [],
  2725. "spaceLength": 10,
  2726. "stack": false,
  2727. "steppedLine": false,
  2728. "targets": [
  2729. {
  2730. "bucketAggs": [
  2731. {
  2732. "field": "@timestamp",
  2733. "id": "2",
  2734. "settings": {
  2735. "interval": "5m",
  2736. "min_doc_count": 0,
  2737. "trimEdges": 0
  2738. },
  2739. "type": "date_histogram"
  2740. }
  2741. ],
  2742. "metrics": [
  2743. {
  2744. "field": "@value",
  2745. "hide": true,
  2746. "id": "1",
  2747. "meta": {},
  2748. "settings": {},
  2749. "type": "sum"
  2750. },
  2751. {
  2752. "field": "1",
  2753. "id": "3",
  2754. "meta": {},
  2755. "pipelineAgg": "1",
  2756. "settings": {
  2757. "minimize": false,
  2758. "model": "simple",
  2759. "window": 5
  2760. },
  2761. "type": "moving_avg"
  2762. }
  2763. ],
  2764. "refId": "A",
  2765. "target": "",
  2766. "timeField": "@timestamp"
  2767. }
  2768. ],
  2769. "thresholds": [],
  2770. "timeFrom": null,
  2771. "timeRegions": [],
  2772. "timeShift": null,
  2773. "title": "sum (version one) - interval 5m",
  2774. "tooltip": {
  2775. "shared": true,
  2776. "sort": 0,
  2777. "value_type": "individual"
  2778. },
  2779. "type": "graph",
  2780. "xaxis": {
  2781. "buckets": null,
  2782. "mode": "time",
  2783. "name": null,
  2784. "show": true,
  2785. "values": []
  2786. },
  2787. "yaxes": [
  2788. {
  2789. "format": "short",
  2790. "label": null,
  2791. "logBase": 1,
  2792. "max": null,
  2793. "min": null,
  2794. "show": true
  2795. },
  2796. {
  2797. "format": "short",
  2798. "label": null,
  2799. "logBase": 1,
  2800. "max": null,
  2801. "min": null,
  2802. "show": true
  2803. }
  2804. ],
  2805. "yaxis": {
  2806. "align": false,
  2807. "alignLevel": null
  2808. }
  2809. },
  2810. {
  2811. "aliasColors": {},
  2812. "bars": false,
  2813. "dashLength": 10,
  2814. "dashes": false,
  2815. "datasource": "$version_two",
  2816. "fill": 1,
  2817. "gridPos": {
  2818. "h": 9,
  2819. "w": 12,
  2820. "x": 12,
  2821. "y": 21
  2822. },
  2823. "id": 35,
  2824. "legend": {
  2825. "avg": false,
  2826. "current": false,
  2827. "max": false,
  2828. "min": false,
  2829. "show": true,
  2830. "total": false,
  2831. "values": false
  2832. },
  2833. "lines": true,
  2834. "linewidth": 1,
  2835. "links": [],
  2836. "nullPointMode": "null",
  2837. "percentage": false,
  2838. "pointradius": 5,
  2839. "points": false,
  2840. "renderer": "flot",
  2841. "seriesOverrides": [],
  2842. "spaceLength": 10,
  2843. "stack": false,
  2844. "steppedLine": false,
  2845. "targets": [
  2846. {
  2847. "bucketAggs": [
  2848. {
  2849. "field": "@timestamp",
  2850. "id": "2",
  2851. "settings": {
  2852. "interval": "5m",
  2853. "min_doc_count": 0,
  2854. "trimEdges": 0
  2855. },
  2856. "type": "date_histogram"
  2857. }
  2858. ],
  2859. "metrics": [
  2860. {
  2861. "field": "@value",
  2862. "hide": true,
  2863. "id": "1",
  2864. "meta": {},
  2865. "settings": {},
  2866. "type": "sum"
  2867. },
  2868. {
  2869. "field": "1",
  2870. "id": "3",
  2871. "meta": {},
  2872. "pipelineAgg": "1",
  2873. "settings": {
  2874. "minimize": false,
  2875. "model": "simple",
  2876. "window": 5
  2877. },
  2878. "type": "moving_avg"
  2879. }
  2880. ],
  2881. "refId": "A",
  2882. "target": "",
  2883. "timeField": "@timestamp"
  2884. }
  2885. ],
  2886. "thresholds": [],
  2887. "timeFrom": null,
  2888. "timeRegions": [],
  2889. "timeShift": null,
  2890. "title": "sum (version two) - interval 5m",
  2891. "tooltip": {
  2892. "shared": true,
  2893. "sort": 0,
  2894. "value_type": "individual"
  2895. },
  2896. "type": "graph",
  2897. "xaxis": {
  2898. "buckets": null,
  2899. "mode": "time",
  2900. "name": null,
  2901. "show": true,
  2902. "values": []
  2903. },
  2904. "yaxes": [
  2905. {
  2906. "format": "short",
  2907. "label": null,
  2908. "logBase": 1,
  2909. "max": null,
  2910. "min": null,
  2911. "show": true
  2912. },
  2913. {
  2914. "format": "short",
  2915. "label": null,
  2916. "logBase": 1,
  2917. "max": null,
  2918. "min": null,
  2919. "show": true
  2920. }
  2921. ],
  2922. "yaxis": {
  2923. "align": false,
  2924. "alignLevel": null
  2925. }
  2926. },
  2927. {
  2928. "aliasColors": {},
  2929. "bars": false,
  2930. "dashLength": 10,
  2931. "dashes": false,
  2932. "datasource": "$version_one",
  2933. "fill": 1,
  2934. "gridPos": {
  2935. "h": 9,
  2936. "w": 12,
  2937. "x": 0,
  2938. "y": 30
  2939. },
  2940. "id": 31,
  2941. "legend": {
  2942. "avg": false,
  2943. "current": false,
  2944. "max": false,
  2945. "min": false,
  2946. "show": true,
  2947. "total": false,
  2948. "values": false
  2949. },
  2950. "lines": true,
  2951. "linewidth": 1,
  2952. "links": [],
  2953. "nullPointMode": "null",
  2954. "percentage": false,
  2955. "pointradius": 5,
  2956. "points": false,
  2957. "renderer": "flot",
  2958. "seriesOverrides": [],
  2959. "spaceLength": 10,
  2960. "stack": false,
  2961. "steppedLine": false,
  2962. "targets": [
  2963. {
  2964. "bucketAggs": [
  2965. {
  2966. "field": "@timestamp",
  2967. "id": "2",
  2968. "settings": {
  2969. "interval": "5m",
  2970. "min_doc_count": 0,
  2971. "trimEdges": 0
  2972. },
  2973. "type": "date_histogram"
  2974. }
  2975. ],
  2976. "metrics": [
  2977. {
  2978. "field": "@value",
  2979. "hide": true,
  2980. "id": "1",
  2981. "meta": {},
  2982. "settings": {},
  2983. "type": "max"
  2984. },
  2985. {
  2986. "field": "1",
  2987. "id": "3",
  2988. "meta": {},
  2989. "pipelineAgg": "1",
  2990. "settings": {
  2991. "minimize": false,
  2992. "model": "simple",
  2993. "window": 5
  2994. },
  2995. "type": "moving_avg"
  2996. }
  2997. ],
  2998. "refId": "A",
  2999. "target": "",
  3000. "timeField": "@timestamp"
  3001. }
  3002. ],
  3003. "thresholds": [],
  3004. "timeFrom": null,
  3005. "timeRegions": [],
  3006. "timeShift": null,
  3007. "title": "max (version one) - interval 5m",
  3008. "tooltip": {
  3009. "shared": true,
  3010. "sort": 0,
  3011. "value_type": "individual"
  3012. },
  3013. "type": "graph",
  3014. "xaxis": {
  3015. "buckets": null,
  3016. "mode": "time",
  3017. "name": null,
  3018. "show": true,
  3019. "values": []
  3020. },
  3021. "yaxes": [
  3022. {
  3023. "format": "short",
  3024. "label": null,
  3025. "logBase": 1,
  3026. "max": null,
  3027. "min": null,
  3028. "show": true
  3029. },
  3030. {
  3031. "format": "short",
  3032. "label": null,
  3033. "logBase": 1,
  3034. "max": null,
  3035. "min": null,
  3036. "show": true
  3037. }
  3038. ],
  3039. "yaxis": {
  3040. "align": false,
  3041. "alignLevel": null
  3042. }
  3043. },
  3044. {
  3045. "aliasColors": {},
  3046. "bars": false,
  3047. "dashLength": 10,
  3048. "dashes": false,
  3049. "datasource": "$version_two",
  3050. "fill": 1,
  3051. "gridPos": {
  3052. "h": 9,
  3053. "w": 12,
  3054. "x": 12,
  3055. "y": 30
  3056. },
  3057. "id": 36,
  3058. "legend": {
  3059. "avg": false,
  3060. "current": false,
  3061. "max": false,
  3062. "min": false,
  3063. "show": true,
  3064. "total": false,
  3065. "values": false
  3066. },
  3067. "lines": true,
  3068. "linewidth": 1,
  3069. "links": [],
  3070. "nullPointMode": "null",
  3071. "percentage": false,
  3072. "pointradius": 5,
  3073. "points": false,
  3074. "renderer": "flot",
  3075. "seriesOverrides": [],
  3076. "spaceLength": 10,
  3077. "stack": false,
  3078. "steppedLine": false,
  3079. "targets": [
  3080. {
  3081. "bucketAggs": [
  3082. {
  3083. "field": "@timestamp",
  3084. "id": "2",
  3085. "settings": {
  3086. "interval": "5m",
  3087. "min_doc_count": 0,
  3088. "trimEdges": 0
  3089. },
  3090. "type": "date_histogram"
  3091. }
  3092. ],
  3093. "metrics": [
  3094. {
  3095. "field": "@value",
  3096. "hide": true,
  3097. "id": "1",
  3098. "meta": {},
  3099. "settings": {},
  3100. "type": "max"
  3101. },
  3102. {
  3103. "field": "1",
  3104. "id": "3",
  3105. "meta": {},
  3106. "pipelineAgg": "1",
  3107. "settings": {
  3108. "minimize": false,
  3109. "model": "simple",
  3110. "window": 5
  3111. },
  3112. "type": "moving_avg"
  3113. }
  3114. ],
  3115. "refId": "A",
  3116. "target": "",
  3117. "timeField": "@timestamp"
  3118. }
  3119. ],
  3120. "thresholds": [],
  3121. "timeFrom": null,
  3122. "timeRegions": [],
  3123. "timeShift": null,
  3124. "title": "max (version two) - interval 5m",
  3125. "tooltip": {
  3126. "shared": true,
  3127. "sort": 0,
  3128. "value_type": "individual"
  3129. },
  3130. "type": "graph",
  3131. "xaxis": {
  3132. "buckets": null,
  3133. "mode": "time",
  3134. "name": null,
  3135. "show": true,
  3136. "values": []
  3137. },
  3138. "yaxes": [
  3139. {
  3140. "format": "short",
  3141. "label": null,
  3142. "logBase": 1,
  3143. "max": null,
  3144. "min": null,
  3145. "show": true
  3146. },
  3147. {
  3148. "format": "short",
  3149. "label": null,
  3150. "logBase": 1,
  3151. "max": null,
  3152. "min": null,
  3153. "show": true
  3154. }
  3155. ],
  3156. "yaxis": {
  3157. "align": false,
  3158. "alignLevel": null
  3159. }
  3160. },
  3161. {
  3162. "aliasColors": {},
  3163. "bars": false,
  3164. "dashLength": 10,
  3165. "dashes": false,
  3166. "datasource": "$version_one",
  3167. "fill": 1,
  3168. "gridPos": {
  3169. "h": 9,
  3170. "w": 12,
  3171. "x": 0,
  3172. "y": 39
  3173. },
  3174. "id": 32,
  3175. "legend": {
  3176. "avg": false,
  3177. "current": false,
  3178. "max": false,
  3179. "min": false,
  3180. "show": true,
  3181. "total": false,
  3182. "values": false
  3183. },
  3184. "lines": true,
  3185. "linewidth": 1,
  3186. "links": [],
  3187. "nullPointMode": "null",
  3188. "percentage": false,
  3189. "pointradius": 5,
  3190. "points": false,
  3191. "renderer": "flot",
  3192. "seriesOverrides": [],
  3193. "spaceLength": 10,
  3194. "stack": false,
  3195. "steppedLine": false,
  3196. "targets": [
  3197. {
  3198. "bucketAggs": [
  3199. {
  3200. "field": "@timestamp",
  3201. "id": "2",
  3202. "settings": {
  3203. "interval": "auto",
  3204. "min_doc_count": 0,
  3205. "trimEdges": 0
  3206. },
  3207. "type": "date_histogram"
  3208. }
  3209. ],
  3210. "metrics": [
  3211. {
  3212. "field": "@value",
  3213. "hide": true,
  3214. "id": "1",
  3215. "meta": {},
  3216. "settings": {},
  3217. "type": "min"
  3218. },
  3219. {
  3220. "field": "1",
  3221. "id": "3",
  3222. "meta": {},
  3223. "pipelineAgg": "1",
  3224. "settings": {
  3225. "minimize": false,
  3226. "model": "simple",
  3227. "window": 5
  3228. },
  3229. "type": "moving_avg"
  3230. }
  3231. ],
  3232. "refId": "A",
  3233. "target": "",
  3234. "timeField": "@timestamp"
  3235. }
  3236. ],
  3237. "thresholds": [],
  3238. "timeFrom": null,
  3239. "timeRegions": [],
  3240. "timeShift": null,
  3241. "title": "min (version one) - interval auto",
  3242. "tooltip": {
  3243. "shared": true,
  3244. "sort": 0,
  3245. "value_type": "individual"
  3246. },
  3247. "type": "graph",
  3248. "xaxis": {
  3249. "buckets": null,
  3250. "mode": "time",
  3251. "name": null,
  3252. "show": true,
  3253. "values": []
  3254. },
  3255. "yaxes": [
  3256. {
  3257. "format": "short",
  3258. "label": null,
  3259. "logBase": 1,
  3260. "max": null,
  3261. "min": null,
  3262. "show": true
  3263. },
  3264. {
  3265. "format": "short",
  3266. "label": null,
  3267. "logBase": 1,
  3268. "max": null,
  3269. "min": null,
  3270. "show": true
  3271. }
  3272. ],
  3273. "yaxis": {
  3274. "align": false,
  3275. "alignLevel": null
  3276. }
  3277. },
  3278. {
  3279. "aliasColors": {},
  3280. "bars": false,
  3281. "dashLength": 10,
  3282. "dashes": false,
  3283. "datasource": "$version_two",
  3284. "fill": 1,
  3285. "gridPos": {
  3286. "h": 9,
  3287. "w": 12,
  3288. "x": 12,
  3289. "y": 39
  3290. },
  3291. "id": 37,
  3292. "legend": {
  3293. "avg": false,
  3294. "current": false,
  3295. "max": false,
  3296. "min": false,
  3297. "show": true,
  3298. "total": false,
  3299. "values": false
  3300. },
  3301. "lines": true,
  3302. "linewidth": 1,
  3303. "links": [],
  3304. "nullPointMode": "null",
  3305. "percentage": false,
  3306. "pointradius": 5,
  3307. "points": false,
  3308. "renderer": "flot",
  3309. "seriesOverrides": [],
  3310. "spaceLength": 10,
  3311. "stack": false,
  3312. "steppedLine": false,
  3313. "targets": [
  3314. {
  3315. "bucketAggs": [
  3316. {
  3317. "field": "@timestamp",
  3318. "id": "2",
  3319. "settings": {
  3320. "interval": "auto",
  3321. "min_doc_count": 0,
  3322. "trimEdges": 0
  3323. },
  3324. "type": "date_histogram"
  3325. }
  3326. ],
  3327. "metrics": [
  3328. {
  3329. "field": "@value",
  3330. "hide": true,
  3331. "id": "1",
  3332. "meta": {},
  3333. "settings": {},
  3334. "type": "min"
  3335. },
  3336. {
  3337. "field": "1",
  3338. "id": "3",
  3339. "meta": {},
  3340. "pipelineAgg": "1",
  3341. "settings": {
  3342. "minimize": false,
  3343. "model": "simple",
  3344. "window": 5
  3345. },
  3346. "type": "moving_avg"
  3347. }
  3348. ],
  3349. "refId": "A",
  3350. "target": "",
  3351. "timeField": "@timestamp"
  3352. }
  3353. ],
  3354. "thresholds": [],
  3355. "timeFrom": null,
  3356. "timeRegions": [],
  3357. "timeShift": null,
  3358. "title": "min (version two) - interval auto",
  3359. "tooltip": {
  3360. "shared": true,
  3361. "sort": 0,
  3362. "value_type": "individual"
  3363. },
  3364. "type": "graph",
  3365. "xaxis": {
  3366. "buckets": null,
  3367. "mode": "time",
  3368. "name": null,
  3369. "show": true,
  3370. "values": []
  3371. },
  3372. "yaxes": [
  3373. {
  3374. "format": "short",
  3375. "label": null,
  3376. "logBase": 1,
  3377. "max": null,
  3378. "min": null,
  3379. "show": true
  3380. },
  3381. {
  3382. "format": "short",
  3383. "label": null,
  3384. "logBase": 1,
  3385. "max": null,
  3386. "min": null,
  3387. "show": true
  3388. }
  3389. ],
  3390. "yaxis": {
  3391. "align": false,
  3392. "alignLevel": null
  3393. }
  3394. },
  3395. {
  3396. "aliasColors": {},
  3397. "bars": false,
  3398. "dashLength": 10,
  3399. "dashes": false,
  3400. "datasource": "$version_one",
  3401. "fill": 1,
  3402. "gridPos": {
  3403. "h": 9,
  3404. "w": 12,
  3405. "x": 0,
  3406. "y": 48
  3407. },
  3408. "id": 33,
  3409. "legend": {
  3410. "avg": false,
  3411. "current": false,
  3412. "max": false,
  3413. "min": false,
  3414. "show": true,
  3415. "total": false,
  3416. "values": false
  3417. },
  3418. "lines": true,
  3419. "linewidth": 1,
  3420. "links": [],
  3421. "nullPointMode": "null",
  3422. "percentage": false,
  3423. "pointradius": 5,
  3424. "points": false,
  3425. "renderer": "flot",
  3426. "seriesOverrides": [],
  3427. "spaceLength": 10,
  3428. "stack": false,
  3429. "steppedLine": false,
  3430. "targets": [
  3431. {
  3432. "bucketAggs": [
  3433. {
  3434. "field": "@timestamp",
  3435. "id": "2",
  3436. "settings": {
  3437. "interval": "5m",
  3438. "min_doc_count": 0,
  3439. "trimEdges": 0
  3440. },
  3441. "type": "date_histogram"
  3442. }
  3443. ],
  3444. "metrics": [
  3445. {
  3446. "field": "@value",
  3447. "hide": true,
  3448. "id": "1",
  3449. "meta": {},
  3450. "settings": {},
  3451. "type": "cardinality"
  3452. },
  3453. {
  3454. "field": "1",
  3455. "id": "3",
  3456. "meta": {},
  3457. "pipelineAgg": "1",
  3458. "settings": {
  3459. "minimize": false,
  3460. "model": "simple",
  3461. "window": 5
  3462. },
  3463. "type": "moving_avg"
  3464. }
  3465. ],
  3466. "refId": "A",
  3467. "target": "",
  3468. "timeField": "@timestamp"
  3469. }
  3470. ],
  3471. "thresholds": [],
  3472. "timeFrom": null,
  3473. "timeRegions": [],
  3474. "timeShift": null,
  3475. "title": "unique count (version one) - interval 5m",
  3476. "tooltip": {
  3477. "shared": true,
  3478. "sort": 0,
  3479. "value_type": "individual"
  3480. },
  3481. "type": "graph",
  3482. "xaxis": {
  3483. "buckets": null,
  3484. "mode": "time",
  3485. "name": null,
  3486. "show": true,
  3487. "values": []
  3488. },
  3489. "yaxes": [
  3490. {
  3491. "format": "short",
  3492. "label": null,
  3493. "logBase": 1,
  3494. "max": null,
  3495. "min": null,
  3496. "show": true
  3497. },
  3498. {
  3499. "format": "short",
  3500. "label": null,
  3501. "logBase": 1,
  3502. "max": null,
  3503. "min": null,
  3504. "show": true
  3505. }
  3506. ],
  3507. "yaxis": {
  3508. "align": false,
  3509. "alignLevel": null
  3510. }
  3511. },
  3512. {
  3513. "aliasColors": {},
  3514. "bars": false,
  3515. "dashLength": 10,
  3516. "dashes": false,
  3517. "datasource": "$version_two",
  3518. "fill": 1,
  3519. "gridPos": {
  3520. "h": 9,
  3521. "w": 12,
  3522. "x": 12,
  3523. "y": 48
  3524. },
  3525. "id": 38,
  3526. "legend": {
  3527. "avg": false,
  3528. "current": false,
  3529. "max": false,
  3530. "min": false,
  3531. "show": true,
  3532. "total": false,
  3533. "values": false
  3534. },
  3535. "lines": true,
  3536. "linewidth": 1,
  3537. "links": [],
  3538. "nullPointMode": "null",
  3539. "percentage": false,
  3540. "pointradius": 5,
  3541. "points": false,
  3542. "renderer": "flot",
  3543. "seriesOverrides": [],
  3544. "spaceLength": 10,
  3545. "stack": false,
  3546. "steppedLine": false,
  3547. "targets": [
  3548. {
  3549. "bucketAggs": [
  3550. {
  3551. "field": "@timestamp",
  3552. "id": "2",
  3553. "settings": {
  3554. "interval": "5m",
  3555. "min_doc_count": 0,
  3556. "trimEdges": 0
  3557. },
  3558. "type": "date_histogram"
  3559. }
  3560. ],
  3561. "metrics": [
  3562. {
  3563. "field": "@value",
  3564. "hide": true,
  3565. "id": "1",
  3566. "meta": {},
  3567. "settings": {},
  3568. "type": "cardinality"
  3569. },
  3570. {
  3571. "field": "1",
  3572. "id": "3",
  3573. "meta": {},
  3574. "pipelineAgg": "1",
  3575. "settings": {
  3576. "minimize": false,
  3577. "model": "simple",
  3578. "window": 5
  3579. },
  3580. "type": "moving_avg"
  3581. }
  3582. ],
  3583. "refId": "A",
  3584. "target": "",
  3585. "timeField": "@timestamp"
  3586. }
  3587. ],
  3588. "thresholds": [],
  3589. "timeFrom": null,
  3590. "timeRegions": [],
  3591. "timeShift": null,
  3592. "title": "unique count (version two) - interval 5m",
  3593. "tooltip": {
  3594. "shared": true,
  3595. "sort": 0,
  3596. "value_type": "individual"
  3597. },
  3598. "type": "graph",
  3599. "xaxis": {
  3600. "buckets": null,
  3601. "mode": "time",
  3602. "name": null,
  3603. "show": true,
  3604. "values": []
  3605. },
  3606. "yaxes": [
  3607. {
  3608. "format": "short",
  3609. "label": null,
  3610. "logBase": 1,
  3611. "max": null,
  3612. "min": null,
  3613. "show": true
  3614. },
  3615. {
  3616. "format": "short",
  3617. "label": null,
  3618. "logBase": 1,
  3619. "max": null,
  3620. "min": null,
  3621. "show": true
  3622. }
  3623. ],
  3624. "yaxis": {
  3625. "align": false,
  3626. "alignLevel": null
  3627. }
  3628. }
  3629. ],
  3630. "title": "Basic date histogram with moving average aggregation",
  3631. "type": "row"
  3632. },
  3633. {
  3634. "collapsed": true,
  3635. "gridPos": {
  3636. "h": 1,
  3637. "w": 24,
  3638. "x": 0,
  3639. "y": 3
  3640. },
  3641. "id": 39,
  3642. "panels": [
  3643. {
  3644. "aliasColors": {},
  3645. "bars": false,
  3646. "dashLength": 10,
  3647. "dashes": false,
  3648. "datasource": "$version_one",
  3649. "fill": 1,
  3650. "gridPos": {
  3651. "h": 9,
  3652. "w": 12,
  3653. "x": 0,
  3654. "y": 4
  3655. },
  3656. "id": 57,
  3657. "legend": {
  3658. "avg": false,
  3659. "current": false,
  3660. "max": false,
  3661. "min": false,
  3662. "show": true,
  3663. "total": false,
  3664. "values": false
  3665. },
  3666. "lines": true,
  3667. "linewidth": 1,
  3668. "links": [],
  3669. "nullPointMode": "null",
  3670. "percentage": false,
  3671. "pointradius": 5,
  3672. "points": false,
  3673. "renderer": "flot",
  3674. "seriesOverrides": [],
  3675. "spaceLength": 10,
  3676. "stack": false,
  3677. "steppedLine": false,
  3678. "targets": [
  3679. {
  3680. "bucketAggs": [
  3681. {
  3682. "field": "@timestamp",
  3683. "id": "2",
  3684. "settings": {
  3685. "interval": "auto",
  3686. "min_doc_count": 0,
  3687. "trimEdges": 0
  3688. },
  3689. "type": "date_histogram"
  3690. }
  3691. ],
  3692. "metrics": [
  3693. {
  3694. "field": "@value",
  3695. "hide": true,
  3696. "id": "1",
  3697. "meta": {},
  3698. "settings": {},
  3699. "type": "count"
  3700. },
  3701. {
  3702. "field": "1",
  3703. "id": "3",
  3704. "meta": {},
  3705. "pipelineAgg": "1",
  3706. "settings": {},
  3707. "type": "derivative"
  3708. }
  3709. ],
  3710. "refId": "A",
  3711. "target": "",
  3712. "timeField": "@timestamp"
  3713. }
  3714. ],
  3715. "thresholds": [],
  3716. "timeFrom": null,
  3717. "timeRegions": [],
  3718. "timeShift": null,
  3719. "title": "count (version one) - interval auto",
  3720. "tooltip": {
  3721. "shared": true,
  3722. "sort": 0,
  3723. "value_type": "individual"
  3724. },
  3725. "type": "graph",
  3726. "xaxis": {
  3727. "buckets": null,
  3728. "mode": "time",
  3729. "name": null,
  3730. "show": true,
  3731. "values": []
  3732. },
  3733. "yaxes": [
  3734. {
  3735. "format": "short",
  3736. "label": null,
  3737. "logBase": 1,
  3738. "max": null,
  3739. "min": null,
  3740. "show": true
  3741. },
  3742. {
  3743. "format": "short",
  3744. "label": null,
  3745. "logBase": 1,
  3746. "max": null,
  3747. "min": null,
  3748. "show": true
  3749. }
  3750. ],
  3751. "yaxis": {
  3752. "align": false,
  3753. "alignLevel": null
  3754. }
  3755. },
  3756. {
  3757. "aliasColors": {},
  3758. "bars": false,
  3759. "dashLength": 10,
  3760. "dashes": false,
  3761. "datasource": "$version_two",
  3762. "fill": 1,
  3763. "gridPos": {
  3764. "h": 9,
  3765. "w": 12,
  3766. "x": 12,
  3767. "y": 4
  3768. },
  3769. "id": 41,
  3770. "legend": {
  3771. "avg": false,
  3772. "current": false,
  3773. "max": false,
  3774. "min": false,
  3775. "show": true,
  3776. "total": false,
  3777. "values": false
  3778. },
  3779. "lines": true,
  3780. "linewidth": 1,
  3781. "links": [],
  3782. "nullPointMode": "null",
  3783. "percentage": false,
  3784. "pointradius": 5,
  3785. "points": false,
  3786. "renderer": "flot",
  3787. "seriesOverrides": [],
  3788. "spaceLength": 10,
  3789. "stack": false,
  3790. "steppedLine": false,
  3791. "targets": [
  3792. {
  3793. "bucketAggs": [
  3794. {
  3795. "field": "@timestamp",
  3796. "id": "2",
  3797. "settings": {
  3798. "interval": "auto",
  3799. "min_doc_count": 0,
  3800. "trimEdges": 0
  3801. },
  3802. "type": "date_histogram"
  3803. }
  3804. ],
  3805. "metrics": [
  3806. {
  3807. "field": "@value",
  3808. "hide": true,
  3809. "id": "1",
  3810. "meta": {},
  3811. "settings": {},
  3812. "type": "count"
  3813. },
  3814. {
  3815. "field": "1",
  3816. "id": "3",
  3817. "meta": {},
  3818. "pipelineAgg": "1",
  3819. "settings": {},
  3820. "type": "derivative"
  3821. }
  3822. ],
  3823. "refId": "A",
  3824. "target": "",
  3825. "timeField": "@timestamp"
  3826. }
  3827. ],
  3828. "thresholds": [],
  3829. "timeFrom": null,
  3830. "timeRegions": [],
  3831. "timeShift": null,
  3832. "title": "count (version two) - interval auto",
  3833. "tooltip": {
  3834. "shared": true,
  3835. "sort": 0,
  3836. "value_type": "individual"
  3837. },
  3838. "type": "graph",
  3839. "xaxis": {
  3840. "buckets": null,
  3841. "mode": "time",
  3842. "name": null,
  3843. "show": true,
  3844. "values": []
  3845. },
  3846. "yaxes": [
  3847. {
  3848. "format": "short",
  3849. "label": null,
  3850. "logBase": 1,
  3851. "max": null,
  3852. "min": null,
  3853. "show": true
  3854. },
  3855. {
  3856. "format": "short",
  3857. "label": null,
  3858. "logBase": 1,
  3859. "max": null,
  3860. "min": null,
  3861. "show": true
  3862. }
  3863. ],
  3864. "yaxis": {
  3865. "align": false,
  3866. "alignLevel": null
  3867. }
  3868. },
  3869. {
  3870. "aliasColors": {},
  3871. "bars": false,
  3872. "dashLength": 10,
  3873. "dashes": false,
  3874. "datasource": "$version_one",
  3875. "fill": 1,
  3876. "gridPos": {
  3877. "h": 9,
  3878. "w": 12,
  3879. "x": 0,
  3880. "y": 13
  3881. },
  3882. "id": 40,
  3883. "legend": {
  3884. "avg": false,
  3885. "current": false,
  3886. "max": false,
  3887. "min": false,
  3888. "show": true,
  3889. "total": false,
  3890. "values": false
  3891. },
  3892. "lines": true,
  3893. "linewidth": 1,
  3894. "links": [],
  3895. "nullPointMode": "null",
  3896. "percentage": false,
  3897. "pointradius": 5,
  3898. "points": false,
  3899. "renderer": "flot",
  3900. "seriesOverrides": [],
  3901. "spaceLength": 10,
  3902. "stack": false,
  3903. "steppedLine": false,
  3904. "targets": [
  3905. {
  3906. "bucketAggs": [
  3907. {
  3908. "field": "@timestamp",
  3909. "id": "2",
  3910. "settings": {
  3911. "interval": "auto",
  3912. "min_doc_count": 0,
  3913. "trimEdges": 0
  3914. },
  3915. "type": "date_histogram"
  3916. }
  3917. ],
  3918. "metrics": [
  3919. {
  3920. "field": "@value",
  3921. "hide": true,
  3922. "id": "1",
  3923. "meta": {},
  3924. "settings": {},
  3925. "type": "avg"
  3926. },
  3927. {
  3928. "field": "1",
  3929. "id": "3",
  3930. "meta": {},
  3931. "pipelineAgg": "1",
  3932. "settings": {},
  3933. "type": "derivative"
  3934. }
  3935. ],
  3936. "refId": "A",
  3937. "target": "",
  3938. "timeField": "@timestamp"
  3939. }
  3940. ],
  3941. "thresholds": [],
  3942. "timeFrom": null,
  3943. "timeRegions": [],
  3944. "timeShift": null,
  3945. "title": "avg (version one) - interval auto",
  3946. "tooltip": {
  3947. "shared": true,
  3948. "sort": 0,
  3949. "value_type": "individual"
  3950. },
  3951. "type": "graph",
  3952. "xaxis": {
  3953. "buckets": null,
  3954. "mode": "time",
  3955. "name": null,
  3956. "show": true,
  3957. "values": []
  3958. },
  3959. "yaxes": [
  3960. {
  3961. "format": "short",
  3962. "label": null,
  3963. "logBase": 1,
  3964. "max": null,
  3965. "min": null,
  3966. "show": true
  3967. },
  3968. {
  3969. "format": "short",
  3970. "label": null,
  3971. "logBase": 1,
  3972. "max": null,
  3973. "min": null,
  3974. "show": true
  3975. }
  3976. ],
  3977. "yaxis": {
  3978. "align": false,
  3979. "alignLevel": null
  3980. }
  3981. },
  3982. {
  3983. "aliasColors": {},
  3984. "bars": false,
  3985. "dashLength": 10,
  3986. "dashes": false,
  3987. "datasource": "$version_two",
  3988. "fill": 1,
  3989. "gridPos": {
  3990. "h": 9,
  3991. "w": 12,
  3992. "x": 12,
  3993. "y": 13
  3994. },
  3995. "id": 58,
  3996. "legend": {
  3997. "avg": false,
  3998. "current": false,
  3999. "max": false,
  4000. "min": false,
  4001. "show": true,
  4002. "total": false,
  4003. "values": false
  4004. },
  4005. "lines": true,
  4006. "linewidth": 1,
  4007. "links": [],
  4008. "nullPointMode": "null",
  4009. "percentage": false,
  4010. "pointradius": 5,
  4011. "points": false,
  4012. "renderer": "flot",
  4013. "seriesOverrides": [],
  4014. "spaceLength": 10,
  4015. "stack": false,
  4016. "steppedLine": false,
  4017. "targets": [
  4018. {
  4019. "bucketAggs": [
  4020. {
  4021. "field": "@timestamp",
  4022. "id": "2",
  4023. "settings": {
  4024. "interval": "auto",
  4025. "min_doc_count": 0,
  4026. "trimEdges": 0
  4027. },
  4028. "type": "date_histogram"
  4029. }
  4030. ],
  4031. "metrics": [
  4032. {
  4033. "field": "@value",
  4034. "hide": true,
  4035. "id": "1",
  4036. "meta": {},
  4037. "settings": {},
  4038. "type": "avg"
  4039. },
  4040. {
  4041. "field": "1",
  4042. "id": "3",
  4043. "meta": {},
  4044. "pipelineAgg": "1",
  4045. "settings": {},
  4046. "type": "derivative"
  4047. }
  4048. ],
  4049. "refId": "A",
  4050. "target": "",
  4051. "timeField": "@timestamp"
  4052. }
  4053. ],
  4054. "thresholds": [],
  4055. "timeFrom": null,
  4056. "timeRegions": [],
  4057. "timeShift": null,
  4058. "title": "avg (version two) - interval auto",
  4059. "tooltip": {
  4060. "shared": true,
  4061. "sort": 0,
  4062. "value_type": "individual"
  4063. },
  4064. "type": "graph",
  4065. "xaxis": {
  4066. "buckets": null,
  4067. "mode": "time",
  4068. "name": null,
  4069. "show": true,
  4070. "values": []
  4071. },
  4072. "yaxes": [
  4073. {
  4074. "format": "short",
  4075. "label": null,
  4076. "logBase": 1,
  4077. "max": null,
  4078. "min": null,
  4079. "show": true
  4080. },
  4081. {
  4082. "format": "short",
  4083. "label": null,
  4084. "logBase": 1,
  4085. "max": null,
  4086. "min": null,
  4087. "show": true
  4088. }
  4089. ],
  4090. "yaxis": {
  4091. "align": false,
  4092. "alignLevel": null
  4093. }
  4094. },
  4095. {
  4096. "aliasColors": {},
  4097. "bars": false,
  4098. "dashLength": 10,
  4099. "dashes": false,
  4100. "datasource": "$version_one",
  4101. "fill": 1,
  4102. "gridPos": {
  4103. "h": 9,
  4104. "w": 12,
  4105. "x": 0,
  4106. "y": 22
  4107. },
  4108. "id": 42,
  4109. "legend": {
  4110. "avg": false,
  4111. "current": false,
  4112. "max": false,
  4113. "min": false,
  4114. "show": true,
  4115. "total": false,
  4116. "values": false
  4117. },
  4118. "lines": true,
  4119. "linewidth": 1,
  4120. "links": [],
  4121. "nullPointMode": "null",
  4122. "percentage": false,
  4123. "pointradius": 5,
  4124. "points": false,
  4125. "renderer": "flot",
  4126. "seriesOverrides": [],
  4127. "spaceLength": 10,
  4128. "stack": false,
  4129. "steppedLine": false,
  4130. "targets": [
  4131. {
  4132. "bucketAggs": [
  4133. {
  4134. "field": "@timestamp",
  4135. "id": "2",
  4136. "settings": {
  4137. "interval": "auto",
  4138. "min_doc_count": 0,
  4139. "trimEdges": 0
  4140. },
  4141. "type": "date_histogram"
  4142. }
  4143. ],
  4144. "metrics": [
  4145. {
  4146. "field": "@value",
  4147. "hide": true,
  4148. "id": "1",
  4149. "meta": {},
  4150. "settings": {},
  4151. "type": "sum"
  4152. },
  4153. {
  4154. "field": "1",
  4155. "id": "3",
  4156. "meta": {},
  4157. "pipelineAgg": "1",
  4158. "settings": {},
  4159. "type": "derivative"
  4160. }
  4161. ],
  4162. "refId": "A",
  4163. "target": "",
  4164. "timeField": "@timestamp"
  4165. }
  4166. ],
  4167. "thresholds": [],
  4168. "timeFrom": null,
  4169. "timeRegions": [],
  4170. "timeShift": null,
  4171. "title": "sum (version one) - interval auto",
  4172. "tooltip": {
  4173. "shared": true,
  4174. "sort": 0,
  4175. "value_type": "individual"
  4176. },
  4177. "type": "graph",
  4178. "xaxis": {
  4179. "buckets": null,
  4180. "mode": "time",
  4181. "name": null,
  4182. "show": true,
  4183. "values": []
  4184. },
  4185. "yaxes": [
  4186. {
  4187. "format": "short",
  4188. "label": null,
  4189. "logBase": 1,
  4190. "max": null,
  4191. "min": null,
  4192. "show": true
  4193. },
  4194. {
  4195. "format": "short",
  4196. "label": null,
  4197. "logBase": 1,
  4198. "max": null,
  4199. "min": null,
  4200. "show": true
  4201. }
  4202. ],
  4203. "yaxis": {
  4204. "align": false,
  4205. "alignLevel": null
  4206. }
  4207. },
  4208. {
  4209. "aliasColors": {},
  4210. "bars": false,
  4211. "dashLength": 10,
  4212. "dashes": false,
  4213. "datasource": "$version_two",
  4214. "fill": 1,
  4215. "gridPos": {
  4216. "h": 9,
  4217. "w": 12,
  4218. "x": 12,
  4219. "y": 22
  4220. },
  4221. "id": 43,
  4222. "legend": {
  4223. "avg": false,
  4224. "current": false,
  4225. "max": false,
  4226. "min": false,
  4227. "show": true,
  4228. "total": false,
  4229. "values": false
  4230. },
  4231. "lines": true,
  4232. "linewidth": 1,
  4233. "links": [],
  4234. "nullPointMode": "null",
  4235. "percentage": false,
  4236. "pointradius": 5,
  4237. "points": false,
  4238. "renderer": "flot",
  4239. "seriesOverrides": [],
  4240. "spaceLength": 10,
  4241. "stack": false,
  4242. "steppedLine": false,
  4243. "targets": [
  4244. {
  4245. "bucketAggs": [
  4246. {
  4247. "field": "@timestamp",
  4248. "id": "2",
  4249. "settings": {
  4250. "interval": "auto",
  4251. "min_doc_count": 0,
  4252. "trimEdges": 0
  4253. },
  4254. "type": "date_histogram"
  4255. }
  4256. ],
  4257. "metrics": [
  4258. {
  4259. "field": "@value",
  4260. "hide": true,
  4261. "id": "1",
  4262. "meta": {},
  4263. "settings": {},
  4264. "type": "sum"
  4265. },
  4266. {
  4267. "field": "1",
  4268. "id": "3",
  4269. "meta": {},
  4270. "pipelineAgg": "1",
  4271. "settings": {},
  4272. "type": "derivative"
  4273. }
  4274. ],
  4275. "refId": "A",
  4276. "target": "",
  4277. "timeField": "@timestamp"
  4278. }
  4279. ],
  4280. "thresholds": [],
  4281. "timeFrom": null,
  4282. "timeRegions": [],
  4283. "timeShift": null,
  4284. "title": "sum (version two) - interval auto",
  4285. "tooltip": {
  4286. "shared": true,
  4287. "sort": 0,
  4288. "value_type": "individual"
  4289. },
  4290. "type": "graph",
  4291. "xaxis": {
  4292. "buckets": null,
  4293. "mode": "time",
  4294. "name": null,
  4295. "show": true,
  4296. "values": []
  4297. },
  4298. "yaxes": [
  4299. {
  4300. "format": "short",
  4301. "label": null,
  4302. "logBase": 1,
  4303. "max": null,
  4304. "min": null,
  4305. "show": true
  4306. },
  4307. {
  4308. "format": "short",
  4309. "label": null,
  4310. "logBase": 1,
  4311. "max": null,
  4312. "min": null,
  4313. "show": true
  4314. }
  4315. ],
  4316. "yaxis": {
  4317. "align": false,
  4318. "alignLevel": null
  4319. }
  4320. },
  4321. {
  4322. "aliasColors": {},
  4323. "bars": false,
  4324. "dashLength": 10,
  4325. "dashes": false,
  4326. "datasource": "$version_one",
  4327. "fill": 1,
  4328. "gridPos": {
  4329. "h": 9,
  4330. "w": 12,
  4331. "x": 0,
  4332. "y": 31
  4333. },
  4334. "id": 44,
  4335. "legend": {
  4336. "avg": false,
  4337. "current": false,
  4338. "max": false,
  4339. "min": false,
  4340. "show": true,
  4341. "total": false,
  4342. "values": false
  4343. },
  4344. "lines": true,
  4345. "linewidth": 1,
  4346. "links": [],
  4347. "nullPointMode": "null",
  4348. "percentage": false,
  4349. "pointradius": 5,
  4350. "points": false,
  4351. "renderer": "flot",
  4352. "seriesOverrides": [],
  4353. "spaceLength": 10,
  4354. "stack": false,
  4355. "steppedLine": false,
  4356. "targets": [
  4357. {
  4358. "bucketAggs": [
  4359. {
  4360. "field": "@timestamp",
  4361. "id": "2",
  4362. "settings": {
  4363. "interval": "5m",
  4364. "min_doc_count": 0,
  4365. "trimEdges": 0
  4366. },
  4367. "type": "date_histogram"
  4368. }
  4369. ],
  4370. "metrics": [
  4371. {
  4372. "field": "@value",
  4373. "hide": true,
  4374. "id": "1",
  4375. "meta": {},
  4376. "settings": {},
  4377. "type": "max"
  4378. },
  4379. {
  4380. "field": "1",
  4381. "id": "3",
  4382. "meta": {},
  4383. "pipelineAgg": "1",
  4384. "settings": {},
  4385. "type": "derivative"
  4386. }
  4387. ],
  4388. "refId": "A",
  4389. "target": "",
  4390. "timeField": "@timestamp"
  4391. }
  4392. ],
  4393. "thresholds": [],
  4394. "timeFrom": null,
  4395. "timeRegions": [],
  4396. "timeShift": null,
  4397. "title": "max (version one) - interval 5m",
  4398. "tooltip": {
  4399. "shared": true,
  4400. "sort": 0,
  4401. "value_type": "individual"
  4402. },
  4403. "type": "graph",
  4404. "xaxis": {
  4405. "buckets": null,
  4406. "mode": "time",
  4407. "name": null,
  4408. "show": true,
  4409. "values": []
  4410. },
  4411. "yaxes": [
  4412. {
  4413. "format": "short",
  4414. "label": null,
  4415. "logBase": 1,
  4416. "max": null,
  4417. "min": null,
  4418. "show": true
  4419. },
  4420. {
  4421. "format": "short",
  4422. "label": null,
  4423. "logBase": 1,
  4424. "max": null,
  4425. "min": null,
  4426. "show": true
  4427. }
  4428. ],
  4429. "yaxis": {
  4430. "align": false,
  4431. "alignLevel": null
  4432. }
  4433. },
  4434. {
  4435. "aliasColors": {},
  4436. "bars": false,
  4437. "dashLength": 10,
  4438. "dashes": false,
  4439. "datasource": "$version_two",
  4440. "fill": 1,
  4441. "gridPos": {
  4442. "h": 9,
  4443. "w": 12,
  4444. "x": 12,
  4445. "y": 31
  4446. },
  4447. "id": 45,
  4448. "legend": {
  4449. "avg": false,
  4450. "current": false,
  4451. "max": false,
  4452. "min": false,
  4453. "show": true,
  4454. "total": false,
  4455. "values": false
  4456. },
  4457. "lines": true,
  4458. "linewidth": 1,
  4459. "links": [],
  4460. "nullPointMode": "null",
  4461. "percentage": false,
  4462. "pointradius": 5,
  4463. "points": false,
  4464. "renderer": "flot",
  4465. "seriesOverrides": [],
  4466. "spaceLength": 10,
  4467. "stack": false,
  4468. "steppedLine": false,
  4469. "targets": [
  4470. {
  4471. "bucketAggs": [
  4472. {
  4473. "field": "@timestamp",
  4474. "id": "2",
  4475. "settings": {
  4476. "interval": "5m",
  4477. "min_doc_count": 0,
  4478. "trimEdges": 0
  4479. },
  4480. "type": "date_histogram"
  4481. }
  4482. ],
  4483. "metrics": [
  4484. {
  4485. "field": "@value",
  4486. "hide": true,
  4487. "id": "1",
  4488. "meta": {},
  4489. "settings": {},
  4490. "type": "max"
  4491. },
  4492. {
  4493. "field": "1",
  4494. "id": "3",
  4495. "meta": {},
  4496. "pipelineAgg": "1",
  4497. "settings": {},
  4498. "type": "derivative"
  4499. }
  4500. ],
  4501. "refId": "A",
  4502. "target": "",
  4503. "timeField": "@timestamp"
  4504. }
  4505. ],
  4506. "thresholds": [],
  4507. "timeFrom": null,
  4508. "timeRegions": [],
  4509. "timeShift": null,
  4510. "title": "max (version two) - interval 5m",
  4511. "tooltip": {
  4512. "shared": true,
  4513. "sort": 0,
  4514. "value_type": "individual"
  4515. },
  4516. "type": "graph",
  4517. "xaxis": {
  4518. "buckets": null,
  4519. "mode": "time",
  4520. "name": null,
  4521. "show": true,
  4522. "values": []
  4523. },
  4524. "yaxes": [
  4525. {
  4526. "format": "short",
  4527. "label": null,
  4528. "logBase": 1,
  4529. "max": null,
  4530. "min": null,
  4531. "show": true
  4532. },
  4533. {
  4534. "format": "short",
  4535. "label": null,
  4536. "logBase": 1,
  4537. "max": null,
  4538. "min": null,
  4539. "show": true
  4540. }
  4541. ],
  4542. "yaxis": {
  4543. "align": false,
  4544. "alignLevel": null
  4545. }
  4546. },
  4547. {
  4548. "aliasColors": {},
  4549. "bars": false,
  4550. "dashLength": 10,
  4551. "dashes": false,
  4552. "datasource": "$version_one",
  4553. "fill": 1,
  4554. "gridPos": {
  4555. "h": 9,
  4556. "w": 12,
  4557. "x": 0,
  4558. "y": 40
  4559. },
  4560. "id": 46,
  4561. "legend": {
  4562. "avg": false,
  4563. "current": false,
  4564. "max": false,
  4565. "min": false,
  4566. "show": true,
  4567. "total": false,
  4568. "values": false
  4569. },
  4570. "lines": true,
  4571. "linewidth": 1,
  4572. "links": [],
  4573. "nullPointMode": "null",
  4574. "percentage": false,
  4575. "pointradius": 5,
  4576. "points": false,
  4577. "renderer": "flot",
  4578. "seriesOverrides": [],
  4579. "spaceLength": 10,
  4580. "stack": false,
  4581. "steppedLine": false,
  4582. "targets": [
  4583. {
  4584. "bucketAggs": [
  4585. {
  4586. "field": "@timestamp",
  4587. "id": "2",
  4588. "settings": {
  4589. "interval": "auto",
  4590. "min_doc_count": 0,
  4591. "trimEdges": 0
  4592. },
  4593. "type": "date_histogram"
  4594. }
  4595. ],
  4596. "metrics": [
  4597. {
  4598. "field": "@value",
  4599. "hide": true,
  4600. "id": "1",
  4601. "meta": {},
  4602. "settings": {},
  4603. "type": "min"
  4604. },
  4605. {
  4606. "field": "1",
  4607. "id": "3",
  4608. "meta": {},
  4609. "pipelineAgg": "1",
  4610. "settings": {},
  4611. "type": "derivative"
  4612. }
  4613. ],
  4614. "refId": "A",
  4615. "target": "",
  4616. "timeField": "@timestamp"
  4617. }
  4618. ],
  4619. "thresholds": [],
  4620. "timeFrom": null,
  4621. "timeRegions": [],
  4622. "timeShift": null,
  4623. "title": "min (version one) - interval auto",
  4624. "tooltip": {
  4625. "shared": true,
  4626. "sort": 0,
  4627. "value_type": "individual"
  4628. },
  4629. "type": "graph",
  4630. "xaxis": {
  4631. "buckets": null,
  4632. "mode": "time",
  4633. "name": null,
  4634. "show": true,
  4635. "values": []
  4636. },
  4637. "yaxes": [
  4638. {
  4639. "format": "short",
  4640. "label": null,
  4641. "logBase": 1,
  4642. "max": null,
  4643. "min": null,
  4644. "show": true
  4645. },
  4646. {
  4647. "format": "short",
  4648. "label": null,
  4649. "logBase": 1,
  4650. "max": null,
  4651. "min": null,
  4652. "show": true
  4653. }
  4654. ],
  4655. "yaxis": {
  4656. "align": false,
  4657. "alignLevel": null
  4658. }
  4659. },
  4660. {
  4661. "aliasColors": {},
  4662. "bars": false,
  4663. "dashLength": 10,
  4664. "dashes": false,
  4665. "datasource": "$version_two",
  4666. "fill": 1,
  4667. "gridPos": {
  4668. "h": 9,
  4669. "w": 12,
  4670. "x": 12,
  4671. "y": 40
  4672. },
  4673. "id": 47,
  4674. "legend": {
  4675. "avg": false,
  4676. "current": false,
  4677. "max": false,
  4678. "min": false,
  4679. "show": true,
  4680. "total": false,
  4681. "values": false
  4682. },
  4683. "lines": true,
  4684. "linewidth": 1,
  4685. "links": [],
  4686. "nullPointMode": "null",
  4687. "percentage": false,
  4688. "pointradius": 5,
  4689. "points": false,
  4690. "renderer": "flot",
  4691. "seriesOverrides": [],
  4692. "spaceLength": 10,
  4693. "stack": false,
  4694. "steppedLine": false,
  4695. "targets": [
  4696. {
  4697. "bucketAggs": [
  4698. {
  4699. "field": "@timestamp",
  4700. "id": "2",
  4701. "settings": {
  4702. "interval": "auto",
  4703. "min_doc_count": 0,
  4704. "trimEdges": 0
  4705. },
  4706. "type": "date_histogram"
  4707. }
  4708. ],
  4709. "metrics": [
  4710. {
  4711. "field": "@value",
  4712. "hide": true,
  4713. "id": "1",
  4714. "meta": {},
  4715. "settings": {},
  4716. "type": "min"
  4717. },
  4718. {
  4719. "field": "1",
  4720. "id": "3",
  4721. "meta": {},
  4722. "pipelineAgg": "1",
  4723. "settings": {},
  4724. "type": "derivative"
  4725. }
  4726. ],
  4727. "refId": "A",
  4728. "target": "",
  4729. "timeField": "@timestamp"
  4730. }
  4731. ],
  4732. "thresholds": [],
  4733. "timeFrom": null,
  4734. "timeRegions": [],
  4735. "timeShift": null,
  4736. "title": "min (version two) - interval auto",
  4737. "tooltip": {
  4738. "shared": true,
  4739. "sort": 0,
  4740. "value_type": "individual"
  4741. },
  4742. "type": "graph",
  4743. "xaxis": {
  4744. "buckets": null,
  4745. "mode": "time",
  4746. "name": null,
  4747. "show": true,
  4748. "values": []
  4749. },
  4750. "yaxes": [
  4751. {
  4752. "format": "short",
  4753. "label": null,
  4754. "logBase": 1,
  4755. "max": null,
  4756. "min": null,
  4757. "show": true
  4758. },
  4759. {
  4760. "format": "short",
  4761. "label": null,
  4762. "logBase": 1,
  4763. "max": null,
  4764. "min": null,
  4765. "show": true
  4766. }
  4767. ],
  4768. "yaxis": {
  4769. "align": false,
  4770. "alignLevel": null
  4771. }
  4772. },
  4773. {
  4774. "aliasColors": {},
  4775. "bars": false,
  4776. "dashLength": 10,
  4777. "dashes": false,
  4778. "datasource": "$version_one",
  4779. "fill": 1,
  4780. "gridPos": {
  4781. "h": 9,
  4782. "w": 12,
  4783. "x": 0,
  4784. "y": 49
  4785. },
  4786. "id": 48,
  4787. "legend": {
  4788. "avg": false,
  4789. "current": false,
  4790. "max": false,
  4791. "min": false,
  4792. "show": true,
  4793. "total": false,
  4794. "values": false
  4795. },
  4796. "lines": true,
  4797. "linewidth": 1,
  4798. "links": [],
  4799. "nullPointMode": "null",
  4800. "percentage": false,
  4801. "pointradius": 5,
  4802. "points": false,
  4803. "renderer": "flot",
  4804. "seriesOverrides": [],
  4805. "spaceLength": 10,
  4806. "stack": false,
  4807. "steppedLine": false,
  4808. "targets": [
  4809. {
  4810. "bucketAggs": [
  4811. {
  4812. "field": "@timestamp",
  4813. "id": "2",
  4814. "settings": {
  4815. "interval": "5m",
  4816. "min_doc_count": 0,
  4817. "trimEdges": 0
  4818. },
  4819. "type": "date_histogram"
  4820. }
  4821. ],
  4822. "metrics": [
  4823. {
  4824. "field": "@value",
  4825. "hide": true,
  4826. "id": "1",
  4827. "meta": {},
  4828. "settings": {},
  4829. "type": "cardinality"
  4830. },
  4831. {
  4832. "field": "1",
  4833. "id": "3",
  4834. "meta": {},
  4835. "pipelineAgg": "1",
  4836. "settings": {},
  4837. "type": "derivative"
  4838. }
  4839. ],
  4840. "refId": "A",
  4841. "target": "",
  4842. "timeField": "@timestamp"
  4843. }
  4844. ],
  4845. "thresholds": [],
  4846. "timeFrom": null,
  4847. "timeRegions": [],
  4848. "timeShift": null,
  4849. "title": "unique count (version one) - interval 5m",
  4850. "tooltip": {
  4851. "shared": true,
  4852. "sort": 0,
  4853. "value_type": "individual"
  4854. },
  4855. "type": "graph",
  4856. "xaxis": {
  4857. "buckets": null,
  4858. "mode": "time",
  4859. "name": null,
  4860. "show": true,
  4861. "values": []
  4862. },
  4863. "yaxes": [
  4864. {
  4865. "format": "short",
  4866. "label": null,
  4867. "logBase": 1,
  4868. "max": null,
  4869. "min": null,
  4870. "show": true
  4871. },
  4872. {
  4873. "format": "short",
  4874. "label": null,
  4875. "logBase": 1,
  4876. "max": null,
  4877. "min": null,
  4878. "show": true
  4879. }
  4880. ],
  4881. "yaxis": {
  4882. "align": false,
  4883. "alignLevel": null
  4884. }
  4885. },
  4886. {
  4887. "aliasColors": {},
  4888. "bars": false,
  4889. "dashLength": 10,
  4890. "dashes": false,
  4891. "datasource": "$version_two",
  4892. "fill": 1,
  4893. "gridPos": {
  4894. "h": 9,
  4895. "w": 12,
  4896. "x": 12,
  4897. "y": 49
  4898. },
  4899. "id": 49,
  4900. "legend": {
  4901. "avg": false,
  4902. "current": false,
  4903. "max": false,
  4904. "min": false,
  4905. "show": true,
  4906. "total": false,
  4907. "values": false
  4908. },
  4909. "lines": true,
  4910. "linewidth": 1,
  4911. "links": [],
  4912. "nullPointMode": "null",
  4913. "percentage": false,
  4914. "pointradius": 5,
  4915. "points": false,
  4916. "renderer": "flot",
  4917. "seriesOverrides": [],
  4918. "spaceLength": 10,
  4919. "stack": false,
  4920. "steppedLine": false,
  4921. "targets": [
  4922. {
  4923. "bucketAggs": [
  4924. {
  4925. "field": "@timestamp",
  4926. "id": "2",
  4927. "settings": {
  4928. "interval": "5m",
  4929. "min_doc_count": 0,
  4930. "trimEdges": 0
  4931. },
  4932. "type": "date_histogram"
  4933. }
  4934. ],
  4935. "metrics": [
  4936. {
  4937. "field": "@value",
  4938. "hide": true,
  4939. "id": "1",
  4940. "meta": {},
  4941. "settings": {},
  4942. "type": "cardinality"
  4943. },
  4944. {
  4945. "field": "1",
  4946. "id": "3",
  4947. "meta": {},
  4948. "pipelineAgg": "1",
  4949. "settings": {},
  4950. "type": "derivative"
  4951. }
  4952. ],
  4953. "refId": "A",
  4954. "target": "",
  4955. "timeField": "@timestamp"
  4956. }
  4957. ],
  4958. "thresholds": [],
  4959. "timeFrom": null,
  4960. "timeRegions": [],
  4961. "timeShift": null,
  4962. "title": "unique count (version two) - interval 5m",
  4963. "tooltip": {
  4964. "shared": true,
  4965. "sort": 0,
  4966. "value_type": "individual"
  4967. },
  4968. "type": "graph",
  4969. "xaxis": {
  4970. "buckets": null,
  4971. "mode": "time",
  4972. "name": null,
  4973. "show": true,
  4974. "values": []
  4975. },
  4976. "yaxes": [
  4977. {
  4978. "format": "short",
  4979. "label": null,
  4980. "logBase": 1,
  4981. "max": null,
  4982. "min": null,
  4983. "show": true
  4984. },
  4985. {
  4986. "format": "short",
  4987. "label": null,
  4988. "logBase": 1,
  4989. "max": null,
  4990. "min": null,
  4991. "show": true
  4992. }
  4993. ],
  4994. "yaxis": {
  4995. "align": false,
  4996. "alignLevel": null
  4997. }
  4998. }
  4999. ],
  5000. "title": "Basic date histogram with derivative aggregation",
  5001. "type": "row"
  5002. },
  5003. {
  5004. "collapsed": true,
  5005. "gridPos": {
  5006. "h": 1,
  5007. "w": 24,
  5008. "x": 0,
  5009. "y": 4
  5010. },
  5011. "id": 54,
  5012. "panels": [
  5013. {
  5014. "aliasColors": {},
  5015. "bars": false,
  5016. "dashLength": 10,
  5017. "dashes": false,
  5018. "datasource": "$version_one",
  5019. "decimals": 3,
  5020. "fill": 1,
  5021. "gridPos": {
  5022. "h": 9,
  5023. "w": 12,
  5024. "x": 0,
  5025. "y": 5
  5026. },
  5027. "id": 51,
  5028. "legend": {
  5029. "alignAsTable": true,
  5030. "avg": true,
  5031. "current": true,
  5032. "max": true,
  5033. "min": true,
  5034. "rightSide": true,
  5035. "show": true,
  5036. "sort": "min",
  5037. "sortDesc": true,
  5038. "total": true,
  5039. "values": true
  5040. },
  5041. "lines": true,
  5042. "linewidth": 1,
  5043. "links": [],
  5044. "nullPointMode": "null",
  5045. "percentage": false,
  5046. "pointradius": 5,
  5047. "points": false,
  5048. "renderer": "flot",
  5049. "seriesOverrides": [],
  5050. "spaceLength": 10,
  5051. "stack": true,
  5052. "steppedLine": false,
  5053. "targets": [
  5054. {
  5055. "alias": "{{@source}} - {{@hostname}} - {{@metric}} {{metric}}",
  5056. "bucketAggs": [
  5057. {
  5058. "fake": true,
  5059. "field": "@source",
  5060. "id": "4",
  5061. "settings": {
  5062. "min_doc_count": 1,
  5063. "order": "desc",
  5064. "orderBy": "_count",
  5065. "size": "10"
  5066. },
  5067. "type": "terms"
  5068. },
  5069. {
  5070. "fake": true,
  5071. "field": "@metric",
  5072. "id": "5",
  5073. "settings": {
  5074. "min_doc_count": 1,
  5075. "order": "desc",
  5076. "orderBy": "_term",
  5077. "size": "10"
  5078. },
  5079. "type": "terms"
  5080. },
  5081. {
  5082. "fake": true,
  5083. "field": "@hostname",
  5084. "id": "3",
  5085. "settings": {
  5086. "min_doc_count": 1,
  5087. "order": "desc",
  5088. "orderBy": "_term",
  5089. "size": "5"
  5090. },
  5091. "type": "terms"
  5092. },
  5093. {
  5094. "field": "@timestamp",
  5095. "id": "2",
  5096. "settings": {
  5097. "interval": "auto",
  5098. "min_doc_count": 0,
  5099. "trimEdges": 0
  5100. },
  5101. "type": "date_histogram"
  5102. }
  5103. ],
  5104. "metrics": [
  5105. {
  5106. "field": "select field",
  5107. "id": "1",
  5108. "type": "count"
  5109. },
  5110. {
  5111. "field": "@value",
  5112. "id": "6",
  5113. "meta": {},
  5114. "settings": {},
  5115. "type": "avg"
  5116. }
  5117. ],
  5118. "refId": "A",
  5119. "target": "",
  5120. "timeField": "@timestamp"
  5121. }
  5122. ],
  5123. "thresholds": [],
  5124. "timeFrom": null,
  5125. "timeRegions": [],
  5126. "timeShift": null,
  5127. "title": "count/average with triple terms agg (version one) - interval auto",
  5128. "tooltip": {
  5129. "shared": true,
  5130. "sort": 0,
  5131. "value_type": "individual"
  5132. },
  5133. "type": "graph",
  5134. "xaxis": {
  5135. "buckets": null,
  5136. "mode": "time",
  5137. "name": null,
  5138. "show": true,
  5139. "values": []
  5140. },
  5141. "yaxes": [
  5142. {
  5143. "format": "short",
  5144. "label": null,
  5145. "logBase": 1,
  5146. "max": null,
  5147. "min": null,
  5148. "show": true
  5149. },
  5150. {
  5151. "format": "short",
  5152. "label": null,
  5153. "logBase": 1,
  5154. "max": null,
  5155. "min": null,
  5156. "show": true
  5157. }
  5158. ],
  5159. "yaxis": {
  5160. "align": false,
  5161. "alignLevel": null
  5162. }
  5163. },
  5164. {
  5165. "aliasColors": {},
  5166. "bars": false,
  5167. "dashLength": 10,
  5168. "dashes": false,
  5169. "datasource": "$version_two",
  5170. "decimals": 3,
  5171. "fill": 1,
  5172. "gridPos": {
  5173. "h": 9,
  5174. "w": 12,
  5175. "x": 12,
  5176. "y": 5
  5177. },
  5178. "id": 52,
  5179. "legend": {
  5180. "alignAsTable": true,
  5181. "avg": true,
  5182. "current": true,
  5183. "max": true,
  5184. "min": true,
  5185. "rightSide": true,
  5186. "show": true,
  5187. "sort": "min",
  5188. "sortDesc": true,
  5189. "total": true,
  5190. "values": true
  5191. },
  5192. "lines": true,
  5193. "linewidth": 1,
  5194. "links": [],
  5195. "nullPointMode": "null",
  5196. "percentage": false,
  5197. "pointradius": 5,
  5198. "points": false,
  5199. "renderer": "flot",
  5200. "seriesOverrides": [],
  5201. "spaceLength": 10,
  5202. "stack": true,
  5203. "steppedLine": false,
  5204. "targets": [
  5205. {
  5206. "alias": "{{@source}} - {{@hostname}} - {{@metric}} {{metric}}",
  5207. "bucketAggs": [
  5208. {
  5209. "fake": true,
  5210. "field": "@source",
  5211. "id": "4",
  5212. "settings": {
  5213. "min_doc_count": 1,
  5214. "order": "desc",
  5215. "orderBy": "_count",
  5216. "size": "10"
  5217. },
  5218. "type": "terms"
  5219. },
  5220. {
  5221. "fake": true,
  5222. "field": "@metric",
  5223. "id": "5",
  5224. "settings": {
  5225. "min_doc_count": 1,
  5226. "order": "desc",
  5227. "orderBy": "_term",
  5228. "size": "10"
  5229. },
  5230. "type": "terms"
  5231. },
  5232. {
  5233. "fake": true,
  5234. "field": "@hostname",
  5235. "id": "3",
  5236. "settings": {
  5237. "min_doc_count": 1,
  5238. "order": "desc",
  5239. "orderBy": "_term",
  5240. "size": "5"
  5241. },
  5242. "type": "terms"
  5243. },
  5244. {
  5245. "field": "@timestamp",
  5246. "id": "2",
  5247. "settings": {
  5248. "interval": "auto",
  5249. "min_doc_count": 0,
  5250. "trimEdges": 0
  5251. },
  5252. "type": "date_histogram"
  5253. }
  5254. ],
  5255. "metrics": [
  5256. {
  5257. "field": "select field",
  5258. "id": "1",
  5259. "type": "count"
  5260. },
  5261. {
  5262. "field": "@value",
  5263. "id": "6",
  5264. "meta": {},
  5265. "settings": {},
  5266. "type": "avg"
  5267. }
  5268. ],
  5269. "refId": "A",
  5270. "target": "",
  5271. "timeField": "@timestamp"
  5272. }
  5273. ],
  5274. "thresholds": [],
  5275. "timeFrom": null,
  5276. "timeRegions": [],
  5277. "timeShift": null,
  5278. "title": "count/average with triple terms agg (version two) - interval auto",
  5279. "tooltip": {
  5280. "shared": true,
  5281. "sort": 0,
  5282. "value_type": "individual"
  5283. },
  5284. "type": "graph",
  5285. "xaxis": {
  5286. "buckets": null,
  5287. "mode": "time",
  5288. "name": null,
  5289. "show": true,
  5290. "values": []
  5291. },
  5292. "yaxes": [
  5293. {
  5294. "format": "short",
  5295. "label": null,
  5296. "logBase": 1,
  5297. "max": null,
  5298. "min": null,
  5299. "show": true
  5300. },
  5301. {
  5302. "format": "short",
  5303. "label": null,
  5304. "logBase": 1,
  5305. "max": null,
  5306. "min": null,
  5307. "show": true
  5308. }
  5309. ],
  5310. "yaxis": {
  5311. "align": false,
  5312. "alignLevel": null
  5313. }
  5314. }
  5315. ],
  5316. "title": "Multiple metrics and aggregations",
  5317. "type": "row"
  5318. }
  5319. ],
  5320. "refresh": false,
  5321. "schemaVersion": 16,
  5322. "style": "dark",
  5323. "tags": [
  5324. "gdev",
  5325. "elasticsearch"
  5326. ],
  5327. "templating": {
  5328. "list": [
  5329. {
  5330. "current": {
  5331. "text": "gdev-elasticsearch-v2-metrics",
  5332. "value": "gdev-elasticsearch-v2-metrics"
  5333. },
  5334. "hide": 0,
  5335. "label": "Version One",
  5336. "name": "version_one",
  5337. "options": [],
  5338. "query": "elasticsearch",
  5339. "refresh": 1,
  5340. "regex": "/^gdev.*metrics$/",
  5341. "skipUrlSync": false,
  5342. "type": "datasource"
  5343. },
  5344. {
  5345. "current": {
  5346. "text": "gdev-elasticsearch-v5-metrics",
  5347. "value": "gdev-elasticsearch-v5-metrics"
  5348. },
  5349. "hide": 0,
  5350. "label": "Version Two",
  5351. "name": "version_two",
  5352. "options": [],
  5353. "query": "elasticsearch",
  5354. "refresh": 1,
  5355. "regex": "/^gdev.*metrics$/",
  5356. "skipUrlSync": false,
  5357. "type": "datasource"
  5358. }
  5359. ]
  5360. },
  5361. "time": {
  5362. "from": "now-3h",
  5363. "to": "now"
  5364. },
  5365. "timepicker": {
  5366. "refresh_intervals": [
  5367. "5s",
  5368. "10s",
  5369. "30s",
  5370. "1m",
  5371. "5m",
  5372. "15m",
  5373. "30m",
  5374. "1h",
  5375. "2h",
  5376. "1d"
  5377. ],
  5378. "time_options": [
  5379. "5m",
  5380. "15m",
  5381. "1h",
  5382. "6h",
  5383. "12h",
  5384. "24h",
  5385. "2d",
  5386. "7d",
  5387. "30d"
  5388. ]
  5389. },
  5390. "timezone": "",
  5391. "title": "Datasource tests - Elasticsearch comparison",
  5392. "uid": "fuFWehBmk",
  5393. "version": 10
  5394. }