Forum Discussion

Robert James Reber's avatar
Robert James Reber
Brass Contributor
Aug 21, 2019
Solved

Azure Log analytics

I am looking to get a list of computer names and all the add-ins on that computer. The canned query for this returns an aggregated list of add-ins which is helpful at viewing the complexity of this ta...
  • CliveWatson's avatar
    CliveWatson
    Aug 21, 2019

    Robert James Reber 

     

    Note: https://docs.microsoft.com/en-us/azure/kusto/query/makeset-aggfunction  you should always use make_set or make_list which have replaced makeset and makelist as the older functions have a 128 limit. 

    Make_set is probably the one to use - as it "Returns a dynamic (JSON) array of the set of distinct values that Expr takes in the group."

     

    The aim here is to get the row (record) count below 10,000, then you know you have all the data, if you have 441 then all should be ok.  Also look out for the 500 column limit, but I think you are a long way from that.