Robert Cain continues a series on KQL:
In this example we took the
Perftable, and piped the dataset it generated into thetakeoperator. We indicated we wanted to get10rows, which it did as you can see.It is important to understand that
takegrabs 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