Hey,
bit of a weird one here. all my visualizations that do a split series aggregation seem to have stopped working.
this happened about the same time that i had to rebuild my main node, so i suspected it was corrupted data. However, even recreating the searches it still doesn't seem to be working quite right.
if i remove the split series aggregation, all works well again.
Visualization is as follows:
{
"title": "Modem Speeds",
"type": "line",
"params": {
"addTooltip": true,
"addLegend": true,
"legendPosition": "right",
"showCircles": true,
"interpolate": "linear",
"scale": "linear",
"drawLinesBetweenPoints": true,
"radiusRatio": 9,
"times": [],
"addTimeMarker": false,
"defaultYExtents": false,
"setYExtents": false,
"grid": {
"categoryLines": false,
"style": {
"color": "#eee"
}
},
"categoryAxes": [
{
"id": "CategoryAxis-1",
"type": "category",
"position": "bottom",
"show": true,
"style": {},
"scale": {
"type": "linear"
},
"labels": {
"show": true,
"truncate": 100
},
"title": {
"text": "@timestamp per 10 minutes"
}
}
],
"valueAxes": [
{
"id": "ValueAxis-1",
"name": "LeftAxis-1",
"type": "value",
"position": "left",
"show": true,
"style": {},
"scale": {
"type": "linear",
"mode": "normal",
"setYExtents": false,
"defaultYExtents": false
},
"labels": {
"show": true,
"rotate": 0,
"filter": false,
"truncate": 100
},
"title": {
"text": "Kbit"
}
}
],
"seriesParams": [
{
"show": "true",
"type": "line",
"mode": "normal",
"data": {
"label": "Downstream Speed",
"id": "1"
},
"valueAxis": "ValueAxis-1",
"drawLinesBetweenPoints": true,
"showCircles": true,
"interpolate": "linear",
"radiusRatio": 9
},
{
"show": true,
"mode": "normal",
"type": "line",
"drawLinesBetweenPoints": true,
"showCircles": true,
"interpolate": "linear",
"data": {
"id": "3",
"label": "Upstream Speed"
},
"valueAxis": "ValueAxis-1"
},
{
"show": true,
"mode": "normal",
"type": "line",
"drawLinesBetweenPoints": true,
"showCircles": true,
"interpolate": "linear",
"data": {
"id": "5",
"label": "Attainable Downstream Speeds"
},
"valueAxis": "ValueAxis-1"
},
{
"show": true,
"mode": "normal",
"type": "line",
"drawLinesBetweenPoints": true,
"showCircles": true,
"interpolate": "linear",
"data": {
"id": "6",
"label": "Attainable Upstream Speeds"
},
"valueAxis": "ValueAxis-1"
}
],
"type": "line"
},
"aggs": [
{
"id": "2",
"enabled": true,
"type": "date_histogram",
"schema": "segment",
"params": {
"field": "@timestamp",
"interval": "auto",
"customInterval": "2h",
"min_doc_count": 1,
"extended_bounds": {}
}
},
{
"id": "4",
"enabled": true,
"type": "significant_terms",
"schema": "group",
"params": {
"field": "DataSource.raw",
"size": 4
}
},
{
"id": "1",
"enabled": true,
"type": "avg",
"schema": "metric",
"params": {
"field": "DownstreamSync",
"customLabel": "Downstream Speed"
}
},
{
"id": "3",
"enabled": true,
"type": "avg",
"schema": "metric",
"params": {
"field": "UpstreamSync",
"customLabel": "Upstream Speed"
}
},
{
"id": "5",
"enabled": true,
"type": "avg",
"schema": "metric",
"params": {
"field": "AttainableDownstream",
"customLabel": "Attainable Downstream Speeds"
}
},
{
"id": "6",
"enabled": true,
"type": "avg",
"schema": "metric",
"params": {
"field": "AttainableUpstream",
"customLabel": "Attainable Upstream Speeds"
}
}
],
"listeners": {}
}
The search on the data is very simple, Type:broadcombeat. Which is the datasource for all the data I'm trying to graph.
Visualization is set to do the split series on DataSource.raw, which previously worked.
Data is still structured in the way inwhich it should handle nicely.
i suspect there may have been some query logic changes that i'm hitting, but nothing in change logs or anything stick out at me.