Hello,
I am trying to perform a multiplication functions between two fields in different index in Kibana.
My first index looks like :
My first index :
{
"_index": "first_index",
"_type": "type_1",
"_id": "c7086175a8d312b47c62949f635f0c9164325ede973b09b9c3905ad7824bcc6d",
"_score": 1.0,
"_source": {
"amount": 0.43616541,
"date": "2020-10-12T20:28:05.000Z"
}
}
My seconde index
{
"_index": "second_index",
"_type": "type_2",
"_id": "id",
"_score": 1.0,
"_source": {
"rate": 0.43616541,
"date": "2020-10-12T20:28:05.000Z"
}
}
I created in Kibana an index pattern who regourps both indexes but i don"t know how to use both field rate and amount, to create a visualization that contains the amount with specified rate.
the multiplication should be based on date.
Thanks