Hello Community,
I make some data table.
There is one problem: upload and login have the same count values.
I want to apply different filters to each column, but I don't fount how apply diiferent filters to each column
like this 
upload, login is different means.
so I want to make the upload and login count values into values in different fields.
like this:
upload column
{
"query": {
"match": {
"Operation": {
"query": "upload",
"type": "phrase"
}
}
}
}
login column
{
"query": {
"match": {
"Status": {
"query": "Login",
"type": "phrase"
}
}
}
}
Can anyone help me?
