-
Notifications
You must be signed in to change notification settings - Fork 278
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Vsphere Cluster Entity Golden Metrics/Tags (#53)
Add GM & Tags for several entity types
- Loading branch information
1 parent
9b74e9f
commit b4b4daa
Showing
16 changed files
with
101 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,22 @@ | ||
effectiveCpuAvailableToVmsMhz: | ||
title: Effective CPU available to VMs (MHz) | ||
|
||
hostsCount: | ||
title: Total Hosts in the Cluster | ||
query: | ||
select: average(cpu.totalEffectiveMHz) | ||
eventId: entityGuid | ||
select: latest(`hosts`) | ||
from: VSphereClusterSample | ||
facet: entityName | ||
eventId: entityGuid | ||
effectiveMemoryAvailableToVmsMb: | ||
title: Effective memory available to VMs (MB) | ||
totalEffectiveMHz: | ||
title: Total Effective CPU resources in MHz | ||
query: | ||
select: average(mem.effectiveSize) | ||
eventId: entityGuid | ||
select: latest(`cpu.totalEffectiveMHz`) | ||
from: VSphereClusterSample | ||
facet: entityName | ||
eventId: entityGuid | ||
numberOfEffectiveHosts: | ||
title: Number of effective hosts | ||
totalMHz: | ||
title: Aggregated CPU resources of all hosts in MHz | ||
query: | ||
select: average(effectiveHosts) | ||
eventId: entityGuid | ||
select: latest(`cpu.totalMHz`) | ||
from: VSphereClusterSample | ||
facet: entityName | ||
eventId: entityGuid |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters