In azure search I have documents with the following format which comes from IoT realm:
device identifier: string
event_level: int
I'd like to facet(group) the count by device identifier and event level together. I can do basic facet at each individual level, but can't figure out multiple fields. Basically I'm looking for a count of the different event_level
per device_identifier
. So result would be
device_identifier 1 - event_level 2 - count 100
device_identifier 1 - event_level 1 - count 00
...
Any help would be appreciated.