OMS Log Analytics
4 TopicsCustom OMS dashboard chart with 4 columns
Hi, cannot figure out how to create custom dashboard chart with 4 columns. i already have query for this dashboard. Just simple view, maybe with threshold colors. Thanks. https://portal.loganalytics.io/Demo?q=H4sIAAAAAAAAA8WSQUvEMBCF7%2FkVQ0FoYC96VOphFUWwuqB4lWn6tmZtkpKk6Io%2F3mzVWlcWT2KObx7zXj6mRaRah8elBzp4BRsLWsAvxSs9PcCDbrXBOSw8R9R0TNy4fL%2BW4%2Fy6WkHFKzagoqDs0jVacXuadmbEtqYT19sIPxr26Cxl0U3HClnaEnpj2OsXUP4tajb4BtvivZgs2Df3hp%2B3jR8Rd9z2kFStk2C6PikzurAhslXYxI%2BVQ%2FQtbD6dydTtYOg7VUk5G1nbQNlhdiTaCaxy%2FsecBkolGq7WEeF3UuX83%2FlsHVLat3LailxQel%2FghBTO7u7QebchtcPw8yw%2Bvy%2FeAO%2BuQlfMAgAA let diskfreepercent= Perf | where TimeGenerated > ago(1d) | where ObjectName == "LogicalDisk" and CounterName == "% Free Space" | summarize (TimeGenerated, FreeSpacePercent)=arg_max(TimeGenerated, CounterValue) by Computer, InstanceName | where strlen(InstanceName) ==2 and InstanceName contains ":"; let diskfreeMB= Perf | where TimeGenerated > ago(1d) | where ObjectName == "LogicalDisk" and CounterName == "Free Megabytes" | summarize (TimeGenerated, FreeMB)=arg_max(TimeGenerated, CounterValue) by Computer, InstanceName | where strlen(InstanceName) ==2 and InstanceName contains ":"; diskfreepercent | join ( diskfreeMB ) on Computer, InstanceName | project Computer, InstanceName, FreeSpacePercent, FreeMBSolved4KViews0likes8Comments