Opensearch Dashboard Issues #8334
Replies: 1 comment 5 replies
-
hi Team, we have the same issue ... all other metric agents (metric beat, fluent bit) have a single field key/value for any metric value which work well with Kibana / elastic visualization ... or ... Opensearch Dashboard Visualization what i'm after to remap any of the metric events .. to 1 field need to do that on all metrics of any host_metric source ... the reason this is important to create any visualization with multi value logic ... can't be done as all values for any metric called gauge.value or count.value ... also try to fix this on the source ... |
Beta Was this translation helpful? Give feedback.
-
Hey Team,
We are using OpenSearch to monitor our servers and using the host metrics but we are unable to correlate the metric events because events per devices always resolve to gauge.value or counter.value, below is an example of the current log format,
{
"gauge": {
"value": 741896192.0
},
"kind": "absolute",
"name": "filesystem_free_bytes",
"namespace": "host",
"tags": {
"collector": "filesystem",
"device": "/dev/sda2",
"filesystem": "ext4",
"host": "demo.example.local",
"mountpoint": "/boot"
},
"timestamp": "2021-07-16T03:26:40.545460831Z"
}
What we would like to do is have it as follows to work within the constraints of Kibana/Opensearch Dashboard limitations,
{
"kind": "absolute",
"filesystem_free_bytes": 741896192.0
"namespace": "host",
"tags": {
"collector": "filesystem",
"device": "/dev/sda2",
"filesystem": "ext4",
"host": "demo01.example.local",
"mountpoint": "/boot"
},
"timestamp": "2021-07-16T03:26:40.545460831Z"
}
Is there a way to represent this data this way in VRL (we have tried but have not had any success) or is this a feature request we would need to submit.
Thanks
Tasty
Beta Was this translation helpful? Give feedback.
All reactions