Robert Cain continues a series on KQL:
In this example we took the
Perf
table, and piped the dataset it generated into thetake
operator. We indicated we wanted to get10
rows, which it did as you can see.It is important to understand that
take
grabs these rows at random. Further, there is no consistency between each execution oftake
. You are likely to get a different set of rows with each execution. Let me run the exact same query again, so you can see the different data being returned.
Take if you want a slice, if you want a piece, if it feels alright.
Comments closed