Forum Discussion

Dave Franklyn's avatar
Nov 30, 2017
Solved

How to group computers based on where they reside: Azure VM or Datacenter

I used this basic query to find several computers that had the word LINK in their name:   Heartbeat | where Computer contains "LINK" | distinct Computer   It worked fine, just as I wanted.  M...
  • Hi Seems like you are just starting with Log Analytics so in this case I suggest to start with going trough the documentation: https://docs.microsoft.com/en-us/azure/log-analytics/ Also good way to learn is the documentation for the query language: https://docs.loganalytics.io/index There is also link to demo environment you can access to try out. There is also free OMS book available which was written when there was only the old search syntax but the concepts are the same: https://gallery.technet.microsoft.com/Inside-the-Operations-2928e342 To answer your question shortly: Data in Log Analytics is stored in tables. Those tables have different columns that could be string, integer, etc. The tables are filled with data by different solution by using different data sources. For example data source could be windows agent and performance counter or diagnostic logs from Azure Monitor. That is the short answer for more details you will have to do some readings on the links I've posted to you.