Hi, I wonder if it is possible to generate a CSV report from dev tool ?
The following is my query run on Kibana dev tool, it composed of query and aggregation.
I want to generate the query response to a csv.
if it is not possible, is there a way can let me generate a csv based on my query result
GET remo-traces-apm/_search
{
"size": 0,
"query": {
"bool": {
"must": [
{
"term": {
"function_id": "504"
}
},
{
"term": {
"deviceId": "0"
}
}
]
}
},
"aggs": {
"Project_id": {
"terms": {
"size": 50,
"field": "project_id"
},
"aggs": {
"Pa_key": {
"terms": {
"size": 10000,
"field": "pa_key"
}
}
}
}
}
}