Skip to content

Commit 47e6b9c

Browse files
committed
InsightsMetrics table
1 parent 1d0a264 commit 47e6b9c

File tree

1 file changed

+44
-2
lines changed

1 file changed

+44
-2
lines changed

articles/azure-monitor/insights/vminsights-log-search.md

Lines changed: 44 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ Records with a type of *VMComputer* have inventory data for servers with the Dep
210210
|AzureServiceFabricClusterId | The unique identifer of the Azure Service Fabric cluster |
211211
|AzureServiceFabricClusterName | The name of the Azure Service Fabric cluster |
212212

213-
### VMProcess record
213+
### VMProcess records
214214

215215
Records with a type of *VMProcess* have inventory data for TCP-connected processes on servers with the Dependency agent. These records have the properties in the following table:
216216

@@ -243,7 +243,8 @@ Records with a type of *VMProcess* have inventory data for TCP-connected process
243243
|UserDomain | The domain under which the process is executing |
244244
|_ResourceId | The unique identifier for a process within the workspace |
245245

246-
## Sample log searches
246+
247+
## Sample map queries
247248

248249
### List all known machines
249250

@@ -425,6 +426,47 @@ let remoteMachines = remote | summarize by RemoteMachine;
425426
| summarize Remote=makeset(iff(isempty(RemoteMachine), todynamic('{}'), pack('Machine', RemoteMachine, 'Process', Process1, 'ProcessName', ProcessName1))) by ConnectionId, Direction, Machine, Process, ProcessName, SourceIp, DestinationIp, DestinationPort, Protocol
426427
```
427428

429+
## Performance records
430+
Records with a type of *InsightsMetrics* have performance data from the guest operating system of the virtual machine. These records have the properties in the following table:
431+
432+
433+
| Property | Description |
434+
|:--|:--|
435+
|TenantId | Unique identifier for the workspace |
436+
|SourceSystem | *Insights* |
437+
|TimeGenerated | Time the value was collected (UTC) |
438+
|Computer | The computer FQDN |
439+
|Origin | *vm.azm.ms* for records from Azure Monitor for VMs |
440+
|Namespace | Category of the performance counter |
441+
|Name | Name of the performance counter |
442+
|Val | Collected value |
443+
|Tags | Details about the |
444+
|AgentId | Unique identifier for each computer's agent |
445+
|Type | *InsightsMetrics* |
446+
|_ResourceId_ | Resource ID of the virtual machine |
447+
448+
The performance counters currently collected into the *InsightsMetrics* table are
449+
450+
| Namespace | Name | Display Name | Unit | Tags |
451+
|:---|:---|:---|:---|:---|
452+
| Computer | Heartbeat | Computer Heartbeat | | |
453+
| Memory | AvailableMB | Memory Available Bytes | Bytes | memorySizeMB - Total memory size|
454+
| Network | WriteBytesPerSecond | Network Write Bytes Per Second | BytesPerSecond | NetworkDeviceId - Id of the device<br>bytes - Total sent bytes |
455+
| Network | ReadBytesPerSecond | Network Read Bytes Per Second | BytesPerSecond | networkDeviceId - Id of the device<br>bytes - Total received bytes |
456+
| Processor | UtilizationPercentage | Processor Utilization Percentage | Percent | totalCpus - Total CPUs |
457+
| LogicalDisk | WritesPerSecond | Logical Disk Writes Per Second | CountPerSecond | mountId - Mount ID of the device |
458+
| LogicalDisk | WriteLatencyMs | Logical Disk Write Latency Millisecond | MilliSeconds | mountId - Mount ID of the device |
459+
| LogicalDisk | WriteBytesPerSecond | Logical Disk Write Bytes Per Second | BytesPerSecond | mountId - Mount ID of the device |
460+
| LogicalDisk | TransfersPerSecond | Logical Disk Transfers Per Second | CountPerSecond | mountId - Mount ID of the device |
461+
| LogicalDisk | TransferLatencyMs | Logical Disk Transfer Latency Millisecond | MilliSeconds | mountId - Mount ID of the device |
462+
| LogicalDisk | ReadsPerSecond | Logical Disk Reads Per Second | CountPerSecond | mountId - Mount ID of the device |
463+
| LogicalDisk | ReadLatencyMs | Logical Disk Read Latency Millisecond | MilliSeconds | mountId - Mount ID of the device |
464+
| LogicalDisk | ReadBytesPerSecond | Logical Disk Read Bytes Per Second | BytesPerSecond | mountId - Mount ID of the device |
465+
| LogicalDisk | FreeSpacePercentage | Logical Disk Free Space Percentage | Percent | mountId - Mount ID of the device |
466+
| LogicalDisk | FreeSpaceMB | Logical Disk Free Space Bytes | Bytes | mountId - Mount ID of the device<br>diskSizeMB - Total disk size |
467+
| LogicalDisk | BytesPerSecond | Logical Disk Bytes Per Second | BytesPerSecond | mountId - Mount ID of the device |
468+
469+
428470
## Next steps
429471

430472
* If you are new to writing log queries in Azure Monitor, review [how to use Log Analytics](../../azure-monitor/log-query/get-started-portal.md) in the Azure portal to write log queries.

0 commit comments

Comments
 (0)