i am totally new to Kusto and would like somebody advice and help.
I have a file with a lot of data in it. this is a very short sample:
what I would like to do, is to compare the name,userID and count how many times those 2 column repeat themselves in a timespan of minutes (based on the timestamp) or days (just to make it easy I can convert the days in minutes).
The bit of code that I used so far it seems to consider only one of the columns and count, it doesn't check if they appeared before.
this is what I was using:
"| summarize count() by bin(_timestamp, 4320m), name, userID"
with the correct query, what I am expecting to receive back (assuming that the timestamp is 13:38:01) for all the column, is to have a extra column named count and value of 2 for value 1 and value 2
I hope I made my question clear enough, and please if you need more informations, just ask.
Thank you so so much guys

