Hi Team,
I think either there is a bug or I'm doing something silly.
This is my rollup job GET /_xpack/rollup/job/my-job/?pretty
:
{
"jobs" : [
{
"config" : {
"id" : "my-job",
"index_pattern" : "my pattern",
"rollup_index" : "my rollup index",
"cron" : "0 * * * * ?",
"groups" : {
"date_histogram" : {
"interval" : "10m",
"field" : "@timestamp",
"delay" : "2d",
"time_zone" : "UTC"
},
"terms" : {
"fields" : [
"grid_instance",
"host",
"host_data_center",
"host_region"
]
}
},
"metrics" : [
{
"field" : "temperature",
"metrics" : [
"min",
"max",
"avg"
]
},
{
"field" : "memory_used_MB",
"metrics" : [
"min",
"max",
"avg"
]
},
{
"field" : "power_draw_W",
"metrics" : [
"min",
"max",
"avg"
]
},
{
"field" : "utilization_gpu_percent",
"metrics" : [
"min",
"max",
"avg"
]
}
],
"timeout" : "20s",
"page_size" : 100000
},
... ETC ...
}
]
}
But I can see the aggregated value for avg
looks like a sum?
Am I doing something wrong?
Thanks for your help,