datasource_tests_elasticsearch_compare.json 151 KB

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