v.212 Release Notes
Last updated on 21 October, 2024Cloud Monitoring
Enhancement of Azure and AWS Resource Detection
LogicMonitor now offers an Enhanced Detection feature for AWS EC2 instances and Azure Virtual Machines. This new feature decreases latency of detecting new devices, and status changes of existing devices.
You must enable Enhanced Detection in Resources. For more information, see AWS Monitoring Setup and Adding Microsoft Azure Cloud Monitoring.
Enhancement to Azure Ingestion Cost Exports
Cost exports from Azure now capture non-partitioned data. Previously, only partitioned cost export data that included manifest files was captured. This enhancement allows for ingestion of data without partitioning or manifest data present.
Added Support for AWS Gateway Load Balancers
LogicMonitor now supports AWS Gateway Load Balancers. For more information on supported cloud resources, see Cloud Services and Resource Units.
Collector Settings
Collector Group Conversion
Unable to convert normal collector group to auto balance collector group.
Integrations
Moving from SOAP API to REST API in Autotask Integration
Autotask has stopped support for SOAP API. Hence, in Autotask integration, users will not be able to use SOAP API while creating a new Autotask integration. Use REST API for Alert Data in for your Autotask integration. When you create an Autotask integration with REST API, LogicMonitor provides default alert data. You can customize the alert data as per your need. For more information, see Autotask Integration in the product documentation.
For your existing Autotask integrations, to move from SOAP API to REST API, select Manage integration, select REST API option, and save the integration. You need to perform this step only once. After moving to REST API, it is not possible to move back to SOAP API. Selecting REST API option will not load existing customized XML alert data, but will provide default alert data and you can customise it as per your need. Before moving to REST API, if you need any support regarding your customized XML alert data, contact your Customer Support Manager.
To know more about Autotask end-of-lifecycle support for SOAP API, see SOAP API lifecycle FAQ from Autotask.
Support for Client Credential grant type while using OAuth 2.0 in ServiceNow Integration
LogicMonitor now supports client_credentials grant type while using OAuth 2.0 in ServiceNow Integration. For more information, see ServiceNow (Incident Management) Integration in the product documentation
LM Logs
Support for EKS and Bedrock Logs for AWS Log Integration
LogicMonitor now supports EKS and Bedrock logs for AWS log integration. For more information, see Sending AWS Logs in the product documentation.
Removed “In” comparison operator from Level filters in Windows Event Logsource
The In operator has been removed from the Windows Event Logsource type. The In operator is no longer available to use to filter the Level attribute. For more information, see Windows Event Logging LogSource Configuration in the product documentation.
Modules
Improved Cisco Meraki Monitoring NetScan
The updated Enhanced Script NetScan for Cisco Meraki adds support for collecting device model information using a new API endpoint.
For more information, see Cisco Meraki Monitoring in the product documentation.
Note: This feature is only available for customized modules.
Improved VMware SD-WAN NetScan
The updated Enhanced Script NetScan for VMware SD-WAN validates that a serial number exists before adding the property to devices.
For more information, see VMware SD-WAN Monitoring in the product documentation.
Improved Palo Alto Prisma SD-WAN NetScan
The updated Enhanced Script NetScan for Palo Alto Prisma SD-WAN now supports filtering on serial number, site, and tags. For more information, see Palo Alto Prisma SD-WAN in the product documentation.
Updating Core LogicModules Management
Moving forward, users must use the new Modules page to update core LogicModules, as the Import from Repository function is no longer available for this purpose.
For more information, see Modules Management in the product documentation.
Editing LogicModule Tags
Users can now edit LogicModule tags and preserve them when updating LogicModules.
For more information, see Modules Management in the product documentation.
LogicModules Migrating to Modules
In a future release, LogicModules will no longer be available from Settings. You can access the Exchange, My Module Toolbox, and all settings for managing modules from Modules in the navigation bar.
For more information, see Modules Overview in the product documentation.
Apache Groovy 4 Support for all LogicMonitor-Provided LogicModules
In a future release, LogicMonitor Collectors will no longer support Apache Groovy 2. All official LogicMonitor-provided modules will be compatible with Apache Groovy 4. To support this migration, LogicMonitor will be releasing updates to official LogicModules to be compatible with Groovy 4.
As a result of this migration, you must do the following:
- Validate any customized or community-provided modules to ensure compatibility
For more information about validating your customized modules, see Custom Module Groovy Migration Validation in the product documentation. - Install a module update for LogicMonitor-provided modules that have compatibility changes released. The released updated modules are listed in the LogicModules Release section.
For more information, see LogicMonitor Provided Modules Groovy 4 Migration in the product documentation.
The LogicMonitor EA Collector 34.500 or later is compatible with Groovy 2 and Groovy 4. For more information about the EA Collector release, see the EA Collector 34.500 Release Notes.
When running a module using Apache Groovy 4, and using the groovy.json.JsonSlurper()
, the following exception is thrown:
exception:groovy.lang.RunTimeException: Unable to load FastStringService
Important: This issue is fixed with the LogicMonitor Collector version 36.200 or later. To mitigate this issue when running a module using Apache Groovy 4, ensure you upgrade to the LogicMonitor Collector version 36.200 or later.
When running a module using Apache Groovy 4, and the module includes an invalid type parameter for a data structure, the module throws the following exception:
java.lang.RuntimeException: org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed:
Note:
When running a module using Apache Groovy 4, the following exception can be thrown when using the GroovyScriptHelper to incorporate LogicMonitor snippets in your script:
exception:groovy.lang.MissingPropertyException: No such property:
To mitigate this issue, adjust the way the class is imported, similar to the following:
import com.santaba.agent.groovy.utils.GroovyScriptHelper
import com.logicmonitor.mod.Snippets
def modLoader = GroovyScriptHelper.getInstance(GroovySystem.version).getScript("Snippets", Snippets.getLoader()).withBinding(getBinding())
Important: LogicMonitor is releasing updates to official LogicModules to mitigate this issue for LogicMonitor-provided modules. If you are leveraging customized or community-provided modules, you must update the module to pass valid parameters into all data structures.
When running a module using Apache Groovy 4 with legacy classes in your script, the following exception can be thrown:
java.lang.RuntimeException: org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed
To mitigate this issue, migrate to JPMS-compliant package names. Making this change does not break backward compatibility with Groovy 2.
For example, the following script uses legacy classes:
import groovy.util.XmlSlurper
import groovy.util.XmlParser
def xmlSlurper = new XmlSlurper()
def xmlParser = new XmlParser()
You can replace the legacy classes with JPMS-compliant package names in Groovy 4 to resolve the exception, similar to the following:
import groovy.xml.XmlSlurper
import groovy.xml.XmlParser
def xmlSlurper = new XmlSlurper()
def xmlParser = new XmlParser()
Important: LogicMonitor is releasing updates to LogicModules to mitigate this issue for official LogicMonitor-provided modules. If you are leveraging customized or community-provided modules, you must update the module to pass valid parameters into all data structures.
When running a module using Apache Groovy 4, and using java.util.Date.format(), the following exception is thrown:
exception:groovy.lang.MissingMethodException: No signature of method: java.util.Date.format() is applicable for argument types: (String) values: [yyyy-MM-dd'T'HH:mm:ss z]
Important: This issue is fixed with the LogicMonitor Collector version 35.400 or later. To mitigate this issue when running a module using Apache Groovy 4, ensure you upgrade to the LogicMonitor Collector version 35.400 or later
Product Documentation
Product Documentation Restructure
The LogicMonitor product documentation is now restructured to elevate the documentation that pertains to UIv4. The key updates are as follows:
- Improved Navigation—An intuitive structure that is product-centric to help you find the applicable information
- Updated Content Organization—Documentation is now grouped by UIv4 and Legacy UI documentation. All product documentation that pertains to the Legacy UI is collectively organized as “Legacy UI” content.
- Improved Search Capabilities—The documentation now has refined indexing for more precise results.
To access the product documentation, navigate to the Product Documentation landing page, and use the bookmarks panel to browse through the documentation.
Reports
User Permissions for Running Reports
You must enable the User Access permissions to run the reports and view existing reports.
To enable the access, navigate to Settings > User and Roles > Permissions > Reports.
For more information, see Reports Role Permissions in our product documentation.
Security Settings
Navigation using Security Recommendations
Now, you can select these security recommendations and navigate to the screen where you can see the details.
- Remove LMV1 tokens associated with OOB Administrator role
- Remove Bearer Tokens associated to Users with OOB Administrator role
- Remove API tokens LMV1/Bearer tokens associated to the lmsupport support user
- Update your Windows Collectors to run as non-administrator
- Update your Linux Collectors to run as non-root
LogicMonitor displays all the recommended actions at the top of the Security page. For more information, see LogicMonitor Security Recommended Actions in the product documentation.
LogicModule Releases
New and updated LogicModules are available for you directly in your LogicMonitor portal. You can install new modules from the Exchange and update existing modules in My Module Toolbox. For more information, see Modules Installation and Modules Management in the product documentation.
This section lists the LogicModules that are new in this release, updated in this release, or will be removed in a future release.
New LogicModules
LogicModule Name | Details |
2 DataSources: – AWS_GatewayELB – AWS_GatewayELB_TargetGroups | Added 2 new datasources for AWS Gateway Load Balancer. |
Updated LogicModules
LogicModule Name | Details |
1 PropertySources: – addERI_Cisco | Added UAW-AP Wireless Cisco Switch and Router, and Eltek UPS ERT detection and removed Cisco VPC walk, as timeout to the interface walk. |
1 DataSources: – LogicMonitor_ConfigSource_Metrics | Fixed an issue for stat age with latest common configs. |
1 DataSources: – Cisco_Meraki_SecurityApplianceTunnels | Fixed an issue where alerts were not being created when tunnels were unreachable. Now the “unreachable” datapoint alerts when tunnel goes from reachable to unreachable. Alert will clear after tunnel is reachable again. |
1 DataSources: – Cisco_Meraki_API 1 PropertySources: – addCategory_Cisco_Meraki_Device | Added support for collecting device model information using new API. |
1 DataSources: – Cisco_Meraki_DeviceCount | Added new switch and AP detection regex. |
1 DataSources: – AWS_GlobalNetwork_Edge | Fixed an issue with AWS_GlobalNetwork_Edge datapoints path. |
1 DataSources: – Kubernetes_Service | Updated Kubernetes Services to account for expected number of replicas. |
1 EventSources: – Dell Drac Event Log | Updated to use latest snippets and resolved references to non existent variables. |
1 DataSources: – Cisco_Wireless_AP | Fixed issue with instances being filtered out from discovery due to MAC address being invalid. |
1 DataSources: – Kubernetes_Ingress | Updated ingress class. |
1 DataSources: – Veeam_BackupAndReplication_Jobs_Backups | Enabled wild value as unique identifier to discover all instances. Wild alias was causing instance to not display. |
1 DataSources: – Fortinet_FortiGate_IPSecVPNTunnels 1 TopologySources: – Fortinet_FortiGate_SDWAN | Add up to date endpoint mapping for RCA. |
1 DataSources: – CommVault_ManagementConsole | Updated module to use consistent CommVault method with other modules. |
1 DataSources: – APC UPS- | Modified datapoint TimeOnBattery to the correct output type. |
7 DataSources: – Nutanix_Cluster_GlobalStats – Nutanix_Containers – Nutanix_Controller_VMs – Nutanix_Disks – Nutanix_Hypervisors – Nutanix_StoragePools – Nutanix_VirtualMachines | Introduces official support for Nutanix AOS 6.8. |
1 DataSources: – Cisco_Firepower_FMCDeviceHealth | Fixed issues with instances not being created if health policy was not set or if there was ‘&’ or ‘$null’ appended to the health policy name. |
1 DataSources: – Cisco_Meraki_Coterm_Licensing | Added monitoring for license status. |
Groovy 4 LogicModule Compatibility Updates
To mitigate risk of Groovy 4 incompatibility and loss of functionality, update the following modules to the listed compatible version.
For more information, see Custom Module Groovy Migration Validation.
DataSource Modules
DataSource Name | Incompatible Versions (earlier or equal to) | Compatible Version (later than or equal to) |
Cisco_ISE_ActiveSessions | 1.0.0 | 1.1.0 |
Cisco_ISE_PosturedEndpoints | 1.0.0 | 1.1.0 |
Cisco_ISE_ProfilerServiceSessions | 1.0.0 | 1.1.0 |
Cisco_ISE_ServerSessions | 1.0.0 | 1.1.0 |
Cisco_ISE_TotalActiveUsers | 1.0.0 | 1.1.0 |
HP_MSA_Controllers | 1.5.0 | 1.6.0 |
HP_MSA_Disks | 1.7.0 | 1.8.0 |
HP_MSA_Fans | 1.5.0 | 1.6.0 |
HP_MSA_FRU | 1.5.0 | 1.6.0 |
HP_MSA_Ports | 1.6.0 | 1.7.0 |
HP_MSA_PSU | 1.5.0 | 1.6.0 |
HP_MSA_Redundancy | 1.5.0 | 1.6.0 |
HP_MSA_SASLinkHealth | 1.5.0 | 1.6.0 |
HP_MSA_VirtualDisks | 1.8.0 | 1.9.0 |
HP_MSA_Volumes | 1.6.0 | 1.7.0 |
Apache_Hadoop_MapReduceJobs | 1.0.0 | 1.1.0 |
Cisco_CUCM_LBM | 1.2.0 | 1.3.0 |
Cisco_CUCM_MTPDeviceStatistics | 1.1.0 | 1.2.0 |
Cisco_CUCM_Replication | 1.1.0 | 1.2.0 |
Cisco_CUCM_Services | 1.2.0 | 1.3.0 |
Cisco_CUCM_SIP | 1.1.0 | 1.2.0 |
Cisco_CUCM_SystemPerformance | 1.1.0 | 1.2.0 |
Citrix_XenApp_ConnectionFailureTrends | 1.4.0 | 1.5.0 |
Citrix_XenApp_DeliveryGroups | 1.6.0 | 1.7.0 |
Citrix_XenApp_LogonPerformance | 1.7.0 | 1.8.0 |
Citrix_XenApp_MachineCatalogs | 1.3.0 | 1.4.0 |
Citrix_XenApp_MachineFailureTrends | 1.3.0 | 1.4.0 |
Citrix_XenApp_Machines | 1.4.0 | 1.5.0 |
ConnectWise_Service_Board_Statistics | 2.1.0 | 2.2.0 |
ConnectWise_Ticket_Resolution_Statistics_by_Representative | 2.1.0 | 2.2.0 |
ConnectWise_Ticket_Statistics_by_Representative | 2.1.0 | 2.2.0 |
ConnectWise_Ticket_Status_Statistics | 2.1.0 | 2.2.0 |
EMC_Avamar_Checkpoints | 1.2.0 | 1.3.0 |
EMC_Avamar_ClientBackups | 1.4.0 | 1.5.0 |
EMC_Avamar_DataDomains | 1.2.0 | 1.3.0 |
EMC_Avamar_Datasets | 1.1.0 | 1.2.0 |
EMC_Avamar_Groups | 1.1.0 | 1.2.0 |
EMC_Avamar_ServerGarbageCollection | 1.1.0 | 1.2.0 |
EMC_Avamar_ServerNodes | 1.1.0 | 1.2.0 |
EMC_Avamar_Servers | 1.1.0 | 1.2.0 |
EMC_Avamar_Troubleshooter | 1.1.0 | 1.2.0 |
NetApp_7mode_Aggregates | 1.4.0 | 1.5.0 |
NetApp_7mode_CableConnectors | 1.2.0 | 1.3.0 |
NetApp_7mode_ClusteringServices | 1.2.0 | 1.3.0 |
NetApp_7mode_CurrentSensors | 1.2.0 | 1.3.0 |
NetApp_7mode_Disks | 1.5.0 | 1.6.0 |
NetApp_7mode_Fans | 1.2.0 | 1.3.0 |
NetApp_7mode_GlobalPerformance | 1.2.0 | 1.3.0 |
NetApp_7mode_HostAdapters | 1.2.0 | 1.3.0 |
NetApp_7mode_iSCSI | 1.2.0 | 1.3.0 |
NetApp_7mode_LUNs | 1.2.0 | 1.3.0 |
NetApp_7mode_NFS | 1.3.0 | 1.4.0 |
NetApp_7mode_NIC | 1.2.0 | 1.3.0 |
NetApp_7mode_PowerSupplies | 1.2.0 | 1.3.0 |
NetApp_7mode_QTree | 1.2.0 | 1.3.0 |
NetApp_7mode_RAID | 1.2.0 | 1.3.0 |
NetApp_7mode_Snapmirror | 1.3.0 | 1.4.0 |
NetApp_7mode_Snapshots | 1.2.0 | 1.3.0 |
NetApp_7mode_SnapshotScheduler | 1.3.0 | 1.4.0 |
NetApp_7mode_Status | 1.2.0 | 1.3.0 |
NetApp_7mode_Targets | 1.2.0 | 1.3.0 |
NetApp_7mode_TemperatureSensors | 1.2.0 | 1.3.0 |
NetApp_7mode_VoltageSensors | 1.2.0 | 1.3.0 |
NetApp_7mode_Volumes | 1.6.0 | 1.7.0 |
NetApp_7mode_WAFL | 1.1.0 | 1.2.0 |
NetApp_Cluster_Aggregate | 2.6.0 | 2.7.0 |
NetApp_Cluster_BatteryLifeSensors | 1.3.0 | 1.4.0 |
NetApp_Cluster_CurrentSensors | 1.2.0 | 1.3.0 |
NetApp_Cluster_Disks | 1.9.0 | 1.10.0 |
NetApp_Cluster_Failover | 1.3.0 | 1.4.0 |
NetApp_Cluster_FanSensors | 1.1.0 | 1.2.0 |
NetApp_Cluster_FCPInitiators | 1.3.0 | 1.4.0 |
NetApp_Cluster_FibreChannel | 1.5.0 | 1.6.0 |
NetApp_Cluster_HAInterconnectPair | 1.2.0 | 1.3.0 |
NetApp_Cluster_HighAvailability | 1.3.0 | 1.4.0 |
NetApp_Cluster_iSCSI | 1.3.0 | 1.4.0 |
NetApp_Cluster_LUNs | 1.4.0 | 1.5.0 |
NetApp_Cluster_NFS | 1.4.0 | 1.5.0 |
NetApp_Cluster_Peer | 1.2.0 | 1.3.0 |
NetApp_Cluster_PolicyGroups | 1.2.0 | 1.3.0 |
NetApp_Cluster_Quotas | 1.3.0 | 1.4.0 |
NetApp_Cluster_RAID | 1.3.0 | 1.4.0 |
NetApp_Cluster_ShelfBayHealth | 1.2.0 | 1.3.0 |
NetApp_Cluster_SnapMirror | 1.3.0 | 1.4.0 |
NetApp_Cluster_Snapshots | 1.4.0 | 1.5.0 |
NetApp_Cluster_Status | 2.1.0 | 2.2.0 |
NetApp_Cluster_TemperatureSensors | 1.2.0 | 1.3.0 |
NetApp_Cluster_VoltageSensors | 1.2.0 | 1.3.0 |
PaloAlto_FW_BGP | 1.11.0 | 1.12.0 |
PaloAlto_FW_Certificates | 1.9.0 | 1.10.0 |
PaloAlto_FW_DataplaneCores | 1.8.0 | 1.9.0 |
PaloAlto_FW_Disk | 1.7.0 | 1.8.0 |
PaloAlto_FW_DroppedPackets | 1.8.0 | 1.8.0 |
PaloAlto_FW_Fans | 2.6.0 | 2.7.0 |
PaloAlto_FW_FilterActions | 1.4.0 | 1.5.0 |
PaloAlto_FW_GlobalPerformance | 1.6.0 | 1.7.0 |
PaloAlto_FW_HA_Interface | 1.7.0 | 1.8.0 |
PaloAlto_FW_IPSecTunnelOverview | 1.4.0 | 1.5.0 |
PaloAlto_FW_IPSecTunnelStats | 2.9.0 | 2.10.0 |
PaloAlto_FW_Licenses | 1.4.0 | 1.5.0 |
PaloAlto_FW_Logical_Interface | 1.7.0 | 1.8.0 |
PaloAlto_FW_OSPF | 1.9.0 | 1.10.0 |
PaloAlto_FW_Power | 1.9.0 | 1.10.0 |
PaloAlto_FW_QoS | 1.7.0 | 1.8.0 |
PaloAlto_FW_QoS_V8+ | 1.5.0 | 1.6.0 |
PaloAlto_FW_QoS_V9+ | 1.5.0 | 1.6.0 |
PaloAlto_FW_Reports_TopApplicationCategories | 1.4.0 | 1.5.0 |
PaloAlto_FW_Reports_TopApplications | 1.4.0 | 1.5.0 |
PaloAlto_FW_Reports_TopAttackers | 1.4.0 | 1.5.0 |
PaloAlto_FW_Reports_TopDestinationCountries | 1.5.0 | 1.6.0 |
PaloAlto_FW_Reports_TopDestinations | 1.4.0 | 1.5.0 |
PaloAlto_FW_Reports_TopEgressZones | 1.4.0 | 1.5.0 |
PaloAlto_FW_Reports_TopHTTPApplications | 1.4.0 | 1.5.0 |
PaloAlto_FW_Reports_TopIngressZones | 1.4.0 | 1.5.0 |
PaloAlto_FW_Reports_TopRules | 1.4.0 | 1.5.0 |
PaloAlto_FW_Reports_TopSourceCountries | 1.5.0 | 1.6.0 |
PaloAlto_FW_Reports_TopSources | 1.5.0 | 1.6.0 |
PaloAlto_FW_Reports_TopTechnologyCategories | 1.4.0 | 1.5.0 |
PaloAlto_FW_Reports_TopVictims | 1.4.0 | 1.5.0 |
PaloAlto_FW_SDWAN_Tunnel | 1.2.0 | 1.3.0 |
PaloAlto_FW_Spec_Interface | 1.7.0 | 1.8.0 |
PaloAlto_FW_SystemResources | 2.12.0 | 2.13.0 |
PaloAlto_FW_Temperature | 1.7.0 | 1.8.0 |
PaloAlto_FW_ThreatAnalysis | 1.8.0 | 1.9.0 |
PaloAlto_GlobalProtect_Sessions | 1.8.0 | 1.9.0 |
PaloAlto_Panorama_Devices | 1.8.0 | 1.9.0 |
APC_Environment_Monitor_Humidity- | 1.3.0 | 1.4.0 |
APC_Environment_Monitor_Temp- | 1.3.0 | 1.4.0 |
Aruba_ClearPass_AccessAuthorization | 1.3.0 | 1.4.0 |
Aruba_ClearPass_DiskMemoryUsage | 1.1.0 | 1.2.0 |
Aruba_ClearPass_NetworkTraffic | 1.2.0 | 1.3.0 |
Aruba_ClearPass_PolicyServer | 1.1.0 | 1.2.0 |
Aruba_ClearPass_ProtocolStats | 1.1.0 | 1.2.0 |
Aruba_ClearPass_SystemInfo | 1.0.0 | 1.1.0 |
Aruba_EdgeConnect_SDWAN_API | 1.2.0 | 1.3.0 |
Aruba_EdgeConnect_SDWAN_BGP | 1.0.0 | 1.1.0 |
Aruba_EdgeConnect_SDWAN_Disk | 1.0.0 | 1.1.0 |
Aruba_EdgeConnect_SDWAN_Health | 1.2.0 | 1.3.0 |
Aruba_EdgeConnect_SDWAN_Interfaces | 1.0.0 | 1.1.0 |
Aruba_EdgeConnect_SDWAN_NextHops | 1.1.0 | 1.2.0 |
Aruba_EdgeConnect_SDWAN_Performance | 1.1.0 | 1.2.0 |
Aruba_EdgeConnect_SDWAN_Tunnels | 1.1.0 | 1.2.0 |
BGP- | 1.8.0 | 1.9.0 |
Brocade_Switch_Ports | 1.0.0 | 1.1.0 |
Cato_SDWAN_API | 1.1.0 | 1.2.0 |
Cato_SDWAN_Health | 1.0.0 | 1.1.0 |
Cato_SDWAN_Interfaces | 1.1.0 | 1.2.0 |
Cato_SDWAN_Tunnels | 1.1.0 | 1.2.0 |
CDP_Neighbors | 1.4.0 | 1.5.0 |
Cisco_APIC_ApplicationProfiles | 1.2.0 | 1.3.0 |
Cisco_APIC_BGP | 1.2.0 | 1.3.0 |
Cisco_APIC_BridgeDomains | 1.2.0 | 1.3.0 |
Cisco_APIC_Capacity | 1.2.0 | 1.3.0 |
Cisco_APIC_ClusterStatus | 1.2.0 | 1.3.0 |
Cisco_APIC_CPU | 1.5.0 | 1.6.0 |
Cisco_APIC_EndpointGroups | 1.2.0 | 1.3.0 |
Cisco_APIC_FabricNodeHealth | 1.5.0 | 1.6.0 |
Cisco_APIC_FabricPodHealth | 1.5.0 | 1.6.0 |
Cisco_APIC_Fans | 1.2.0 | 1.3.0 |
Cisco_APIC_Hypervisor | 1.5.0 | 1.6.0 |
Cisco_APIC_Interfaces | 1.7.0 | 1.8.0 |
Cisco_APIC_Memory | 1.5.0 | 1.6.0 |
Cisco_APIC_ProcessesContainers | 1.5.0 | 1.6.0 |
Cisco_APIC_Storage | 1.5.0 | 1.6.0 |
Cisco_APIC_Tenants | 1.2.0 | 1.3.0 |
Cisco_Catalyst_AccessPointHealth | 1.2.0 | 1.3.0 |
Cisco_Catalyst_AccessPointPerformance | 1.1.0 | 1.2.0 |
Cisco_Catalyst_AccessPointRadios | 1.1.0 | 1.2.0 |
Cisco_Catalyst_Center_API | 1.1.0 | 1.2.0 |
Cisco_Catalyst_PowerOverEthernet | 1.5.0 | 1.6.0 |
Cisco_Catalyst_RouterHealth | 1.0.0 | 1.1.0 |
Cisco_Catalyst_RouterPerformance | 1.0.0 | 1.1.0 |
Cisco_Catalyst_SDWAN_API | 1.7.0 | 1.8.0 |
Cisco_Catalyst_SDWAN_ControlConnections | 1.2.0 | 1.3.0 |
Cisco_Catalyst_SDWAN_ControllerHealth | 1.6.0 | 1.7.0 |
Cisco_Catalyst_SDWAN_ControllerInterfaces | 1.2.0 | 1.3.0 |
Cisco_Catalyst_SDWAN_DeviceHealth | 1.5.0 | 1.6.0 |
Cisco_Catalyst_SDWAN_NetworkInterfaces | 1.2.0 | 1.3.0 |
Cisco_Catalyst_SDWAN_Performance | 1.1.0 | 1.2.0 |
Cisco_Catalyst_SDWAN_Tunnels | 1.2.0 | 1.3.0 |
Cisco_Catalyst_SwitchHealth | 1.0.0 | 1.1.0 |
Cisco_Catalyst_SwitchPerformance | 1.0.0 | 1.1.0 |
Cisco_Catalyst_WLCHealth | 1.1.0 | 1.2.0 |
Cisco_Catalyst_WLCPerformance | 1.1.0 | 1.2.0 |
Cisco_CPU_SNMP | 1.2.0 | 1.3.0 |
Cisco_DNAC_Clients | 1.4.0 | 1.5.0 |
Cisco_DNAC_Devices | 1.11.0 | 1.12.0 |
Cisco_DNAC_Networks | 1.5.0 | 1.6.0 |
Cisco_EIGRP_Peers | 3.7.0 | 3.8.0 |
Cisco_ISIS_Neighbors | 1.2.0 | 1.3.0 |
Cisco_MemoryPools_SNMP | 1.4.0 | 1.5.0 |
Cisco_Meraki_AccessPoint_Interfaces | 1.15.0 | 1.16.0 |
Cisco_Meraki_AccessPointHealth | 1.5.0 | 1.6.0 |
Cisco_Meraki_AccessPointPerformance | 1.5.0 | 1.6.0 |
Cisco_Meraki_AccessPointRadios | 1.5.0 | 1.6.0 |
Cisco_Meraki_AccessPoints | 1.18.0 | 1.19.0 |
Cisco_Meraki_AccessPointSSIDs | 1.1.0 | 1.2.0 |
Cisco_Meraki_API | 1.21.0 | 1.22.0 |
Cisco_Meraki_APIUsage | 1.7.0 | 1.8.0 |
Cisco_Meraki_CameraHealth | 1.3.0 | 1.4.0 |
Cisco_Meraki_CellularGatewayHealth | 1.3.0 | 1.4.0 |
Cisco_Meraki_CellularGatewayPerformance | 1.5.0 | 1.6.0 |
Cisco_Meraki_Coterm_Licensing | 1.0.0 | 1.2.0 |
Cisco_Meraki_DeviceCount | 1.13.0 | 1.14.0 |
Cisco_Meraki_DeviceInterfaces | 1.6.0 | 1.7.0 |
Cisco_Meraki_DoorSensor | 1.0.0 | 1.1.0 |
Cisco_Meraki_Gateway_Interfaces | 1.14.0 | 1.15.0 |
Cisco_Meraki_Gateways | 1.19.0 | 1.20.0 |
Cisco_Meraki_Licenses | 1.4.0 | 1.5.0 |
Cisco_Meraki_OrgDeviceCount | 1.4.0 | 1.5.0 |
Cisco_Meraki_PowerSensor | 1.0.0 | 1.1.0 |
Cisco_Meraki_SecurityAppliance_Interfaces | 1.14.0 | 1.15.0 |
Cisco_Meraki_SecurityApplianceHealth | 1.5.0 | 1.6.0 |
Cisco_Meraki_SecurityAppliancePerformance | 1.3.0 | 1.4.0 |
Cisco_Meraki_SecurityAppliances | 1.19.0 | 1.20.0 |
Cisco_Meraki_SecurityApplianceTunnels | 1.4.0 | 1.5.0 |
Cisco_Meraki_SecurityApplianceUnderlay | 1.7.0 | 1.8.0 |
Cisco_Meraki_Switches | 1.16.0 | 1.17.0 |
Cisco_Meraki_SwitchHealth | 1.4.0 | 1.5.0 |
Cisco_Meraki_SwitchInterfaces | 1.5.0 | 1.6.0 |
Cisco_Meraki_SwitchPerformance | 1.4.0 | 1.5.0 |
Cisco_Meraki_TemperatureSensor | 1.0.0 | 1.1.0 |
Cisco_Meraki_Troubleshooter | 1.4.0 | 1.5.0 |
Cisco_Meraki_UplinkApplianceStatus | 1.7.0 | 1.8.0 |
Cisco_Meraki_UplinkLossAndLatency | 1.9.0 | 1.10.0 |
Cisco_Meraki_WaterSensor | 1.0.0 | 1.1.0 |
Cisco_Multicast_Groups | 2.4.0 | 2.5.0 |
Cisco_Multicast_Interfaces | 2.3.0 | 2.4.0 |
Cisco_Multicast_Routes | 2.3.0 | 2.4.0 |
Cisco_Transceiver_Sensors | 1.14.0 | 1.15.0 |
Cisco_UCS_BladeServerComponents | 1.5.0 | 1.6.0 |
Cisco_UCS_BladeServers | 1.9.0 | 1.10.0 |
Cisco_UCS_Chassis | 1.9.0 | 1.10.0 |
Cisco_UCS_ChassisPorts | 1.6.0 | 1.7.0 |
Cisco_UCS_ChassisUtilization | 1.9.0 | 1.10.0 |
Cisco_UCS_Disks | 1.9.0 | 1.10.0 |
Cisco_UCS_FabricExtender | 1.10.0 | 1.11.0 |
Cisco_UCS_FabricInterconnect | 1.6.0 | 1.7.0 |
Cisco_UCS_Fans | 1.5.0 | 1.6.0 |
Cisco_UCS_Faults | 1.7.0 | 1.8.0 |
Cisco_UCS_FEXPorts | 1.6.0 | 1.7.0 |
Cisco_UCS_FIStoragePartitions | 1.5.0 | 1.6.0 |
Cisco_UCS_IMCDisks | 1.4.0 | 1.5.0 |
Cisco_UCS_IOCards | 1.6.0 | 1.7.0 |
Cisco_UCS_Ports | 1.8.0 | 1.9.0 |
Cisco_UCS_PSUs | 1.9.0 | 1.10.0 |
Cisco_UCS_RackServerComponents | 1.5.0 | 1.6.0 |
Cisco_UCS_RackServers | 1.11.0 | 1.12.0 |
Cisco_UCS_SANPortChannels | 1.6.0 | 1.7.0 |
Cisco_UCS_ServerInterfaces | 1.6.0 | 1.7.0 |
Cisco_UCS_ServiceProfiles | 1.5.0 | 1.6.0 |
Cisco_UCS_Sessions | 1.7.0 | 1.8.0 |
Cisco_UCS_VLANs | 1.5.0 | 1.6.0 |
Cisco_UCS_VSANs | 1.5.0 | 1.6.0 |
Cisco_vManage_Alarms | 2.1.0 | 2.2.0 |
Cisco_vManage_ApplicationAwareRoutingSLAClasses | 2.1.0 | 2.2.0 |
Cisco_vManage_BFDDeviceSummary | 2.1.0 | 2.2.0 |
Cisco_vManage_BFDPerTLOC | 2.1.0 | 2.2.0 |
Cisco_vManage_CertificateSummary | 2.1.0 | 2.2.0 |
Cisco_vManage_ControlWANInterfaces | 2.1.0 | 2.2.0 |
Cisco_vManage_Devices | 2.2.0 | 2.3.0 |
Cisco_vManage_IPv4Interfaces | 2.1.0 | 2.2.0 |
Cisco_vManage_OMP | 2.1.0 | 2.2.0 |
Cisco_vManage_OMPPeers | 2.1.0 | 2.2.0 |
Cisco_vManage_Sessions | 2.1.0 | 2.2.0 |
Cisco_vManage_Sites | 2.1.0 | 2.2.0 |
Cisco_vManage_TransportHealth | 2.1.0 | 2.2.0 |
Cisco_vManage_WANEdgeInventory | 2.1.0 | 2.2.0 |
Cisco_Wireless_AP | 2.3.0 | 2.4.0 |
CiscoQoS- | 3.4.0 | 3.5.0 |
Citrix_VAD_Services | 1.1.0 | 1.2.0 |
Cohesity_DataPlatform_BasicStorage | 1.3.0 | 1.4.0 |
Cohesity_DataPlatform_ClusterStatus | 1.3.0 | 1.4.0 |
Cohesity_DataPlatform_ConsumersStats | 1.3.0 | 1.4.0 |
Cohesity_DataPlatform_NodeStatistics | 1.3.0 | 1.4.0 |
Cohesity_DataPlatform_NodeStatus | 1.3.0 | 1.4.0 |
Cohesity_DataPlatform_NodeStatus_V6.3 | 1.3.0 | 1.4.0 |
Cohesity_DataPlatform_ProtectedObjects | 1.3.0 | 1.4.0 |
Cohesity_DataPlatform_ProtectionJobs | 1.7.0 | 1.8.0 |
Cohesity_DataPlatform_Troubleshooter | 1.4.0 | 1.5.0 |
Cohesity_DataPlatform_Views | 1.3.0 | 1.4.0 |
DellEMC_PowerStore_ClusterCapacity | 1.3.0 | 1.4.0 |
DellEMC_PowerStore_FibreChannelPort | 1.3.0 | 1.4.0 |
DellEMC_PowerStore_Nodes | 1.2.0 | 1.3.0 |
DellEMC_PowerStore_VolumeCapacity | 1.4.0 | 1.5.0 |
DellEMC_PowerSwitchNSeries_CPUProcessUtilization | 1.1.0 | 1.2.0 |
DellEMC_PowerSwitchNSeries_ResourceMetrics | 1.1.0 | 1.2.0 |
DellEMC_XtremIO_BBU | 1.1.0 | 1.2.0 |
DellEMC_XtremIO_Clusters | 1.3.0 | 1.4.0 |
DellEMC_XtremIO_ConsistencyGroups | 1.2.0 | 1.3.0 |
DellEMC_XtremIO_DAEControllers | 1.2.0 | 1.3.0 |
DellEMC_XtremIO_DAEPSU | 1.3.0 | 1.4.0 |
DellEMC_XtremIO_DataProtectionGroups | 1.2.0 | 1.3.0 |
DellEMC_XtremIO_Initiators | 1.2.0 | 1.3.0 |
DellEMC_XtremIO_Snapshots | 1.1.0 | 1.2.0 |
DellEMC_XtremIO_SSD | 1.3.0 | 1.4.0 |
DellEMC_XtremIO_StorageControllerLocalDisks | 1.2.0 | 1.3.0 |
DellEMC_XtremIO_Targets | 1.3.0 | 1.4.0 |
DellEMC_XtremIO_Volumes | 1.6.0 | 1.7.0 |
DellEMC_XtremIO_XEnvironments | 1.2.0 | 1.3.0 |
DellEMC_XtremIO_XMS | 1.4.0 | 1.5.0 |
EMC_DiskPerformance_NaviSecCli | 2.6.0 | 2.7.0 |
EMC_EnclosureEnvironment_NaviSecCli | 2.6.0 | 2.7.0 |
EMC_FastCache_NaviSecCli | 2.3.0 | 2.4.0 |
EMC_PowerMax_Array | 2.2.0 | 2.3.0 |
EMC_PowerMax_BEDirectors | 2.2.0 | 2.3.0 |
EMC_PowerMax_BEEmulation | 2.2.0 | 2.3.0 |
EMC_PowerMax_BEPort | 2.2.0 | 2.3.0 |
EMC_PowerMax_Board | 2.2.0 | 2.3.0 |
EMC_PowerMax_Core | 2.2.0 | 2.3.0 |
EMC_PowerMax_Disk | 2.2.0 | 2.3.0 |
EMC_PowerMax_DiskGroup | 2.2.0 | 2.3.0 |
EMC_PowerMax_DSEPool | 2.2.0 | 2.3.0 |
EMC_PowerMax_EDSDirector | 2.2.0 | 2.3.0 |
EMC_PowerMax_EDSEmulation | 2.2.0 | 2.3.0 |
DellEMC_PowerStore_EthernetPort | 1.2.0 | 1.3.0 |
DellEMC_XtremIO_InfiniBandSwitches | 1.2.0 | 1.3.0 |
DellEMC_XtremIO_StorageControllerPowerSupplies | 1.2.0 | 1.3.0 |
DellEMC_XtremIO_StorageControllerStats | 1.2.0 | 1.3.0 |
EMC_PowerMax_FEDirectors | 2.2.0 | 2.3.0 |
EMC_PowerMax_FEEmulation | 2.2.0 | 2.3.0 |
EMC_PowerMax_FEPort | 2.2.0 | 2.3.0 |
EMC_PowerMax_FICONEmulation | 2.2.0 | 2.3.0 |
EMC_PowerMax_IMDirector | 2.2.0 | 2.3.0 |
EMC_PowerMax_IMEmulation | 2.2.0 | 2.3.0 |
EMC_PowerMax_RDFDirector | 2.2.0 | 2.3.0 |
EMC_PowerMax_RDFEmulation | 2.2.0 | 2.3.0 |
EMC_PowerMax_RDFPort | 2.2.0 | 2.3.0 |
EMC_PowerMax_RDFS | 2.2.0 | 2.3.0 |
EMC_PowerMax_StorageGroup | 2.2.0 | 2.3.0 |
EMC_PowerMax_ThinPoolLUN | 2.2.0 | 2.3.0 |
EMC_SPCache_NaviSecCli | 2.6.0 | 2.7.0 |
EMC_SPPerformance_NaviSecCli | 2.5.0 | 2.6.0 |
EMC_SPStatus_NaviSecCli | 1.6.0 | 1.7.0 |
EMC_StoragePool_NaviSecCli | 2.9.0 | 2.10.0 |
EMC_SystemPower_NaviSecCli | 2.5.0 | 2.6.0 |
Fortinet_FortiGate_IPSecVPNTunnels | 1.2.0 | 1.3.0 |
Google_Analytics_PageViews | 1.1.0 | 1.2.0 |
HP_3PAR_Controller | 1.5.0 | 1.6.0 |
HP_3PAR_CPG | 2.6.0 | 2.7.0 |
HP_3PAR_Disk | 1.10.0 | 1.11.0 |
HP_3PAR_HardwareHealth | 1.8.0 | 1.9.0 |
HP_3PAR_iSCSI | 1.6.0 | 1.7.0 |
HP_3PAR_Port | 1.5.0 | 1.6.0 |
HP_3PAR_VLUN_by_Host | 1.6.0 | 1.7.0 |
HP_3PAR_VLUN_by_Volume | 1.7.0 | 1.8.0 |
HP_3PAR_Volumes | 1.7.0 | 1.8.0 |
ISIS_Neighbors | 1.2.0 | 1.3.0 |
Jenkins_BuildStatistics | 1.2.0 | 1.3.0 |
Jenkins_Metrics | 1.2.0 | 1.3.0 |
Jenkins_Troubleshooter | 1.2.0 | 1.3.0 |
Juniper_Mist_AP_Beacon | 1.2.0 | 1.3.0 |
Juniper_Mist_AP_Health | 1.4.0 | 1.5.0 |
Juniper_Mist_AP_Interfaces | 1.3.0 | 1.4.0 |
Juniper_Mist_AP_Performance | 1.3.0 | 1.4.0 |
Juniper_Mist_AP_Radios | 1.2.0 | 1.3.0 |
Juniper_Mist_API | 1.3.0 | 1.4.0 |
Juniper_Mist_SDWAN_Edge_Health | 1.6.0 | 1.7.0 |
Juniper_Mist_SDWAN_Edge_Performance | 1.6.0 | 1.7.0 |
Juniper_Mist_Switch_Health | 1.3.0 | 1.4.0 |
Juniper_Mist_Switch_Performance | 1.3.0 | 1.4.0 |
Kubernetes_Nginx_IngressController | 1.1.0 | 1.2.0 |
Linux_OpenMetrics_CPU | 1.2.0 | 1.3.0 |
Linux_OpenMetrics_Disks | 1.1.0 | 1.2.0 |
Linux_OpenMetrics_Filesystems | 1.1.0 | 1.2.0 |
Linux_OpenMetrics_Memory | 1.1.0 | 1.2.0 |
Linux_OpenMetrics_NetworkInterfaces | 1.1.0 | 1.2.0 |
Linux_OpenMetrics_System | 1.2.0 | 1.3.0 |
Linux_OpenMetrics_Watchdog | 1.1.0 | 1.2.0 |
Linux_PSI | 1.4.0 | 1.5.0 |
Linux_SSH_BlockDevicePerformance | 1.9.0 | 1.10.0 |
Linux_SSH_CGroups | 1.4.0 | 1.5.0 |
Linux_SSH_CPUCores | 1.8.0 | 1.9.0 |
Linux_SSH_CPUMemory | 2.1.0 | 2.2.0 |
Linux_SSH_Filesystems | 1.13.0 | 1.14.0 |
Linux_SSH_NetworkInterfaces | 1.11.0 | 1.12.0 |
Linux_SSH_ServiceStatus | 1.10.0 | 1.11.0 |
Linux_SSH_TCPUDP | 1.4.0 | 1.5.0 |
Linux_SSH_Uptime | 1.8.0 | 1.9.0 |
LLDP_Neighbors | 1.5.0 | 1.6.0 |
LogicMonitor_Collector_Snippets | 1.7.0 | 1.8.0 |
Microsoft_SQLServer_AlwaysOnAvailabilityGroups | 2.9.0 | 2.10.0 |
Microsoft_SQLServer_AlwaysOnAvailabilityReplicas | 2.9.0 | 2.10.0 |
Microsoft_SQLServer_AlwaysOnDatabaseReplicaCluster | 2.8.0 | 2.9.0 |
Microsoft_SQLServer_AlwaysOnDatabaseReplicas | 2.8.0 | 2.9.0 |
Microsoft_SQLServer_AlwaysOnDatabaseStatus | 1.3.0 | 1.4.0 |
Microsoft_SQLServer_BackupAge | 1.4.0 | 1.5.0 |
Microsoft_SQLServer_ConnectionStatus | 1.2.0 | 1.3.0 |
Microsoft_SQLServer_DatabaseFiles | 1.5.0 | 1.6.0 |
Microsoft_SQLServer_Databases | 2.15.0 | 2.16.0 |
Microsoft_SQLServer_DatabaseStorage | 1.6.0 | 1.7.0 |
Microsoft_SQLServer_MonitorUser | 1.3.0 | 1.4.0 |
Microsoft_SQLServer_SystemJobs | 3.14.0 | 3.15.0 |
Microsoft_SQLServer_Troubleshooter | 1.13.0 | 1.14.0 |
Microsoft_Windows_Cluster_Resources | 1.4.0 | 1.5.0 |
MongoDB_Server_Databases | 1.6.0 | 1.7.0 |
MongoDB_Server_Overview | 1.5.0 | 1.6.0 |
MongoDB_Server_Replication | 1.6.0 | 1.7.0 |
NetApp_Cluster_CIFS | 3.2.0 | 3.3.0 |
NetApp_Cluster_GlobalPerformance | 3.3.0 | 3.4.0 |
NetApp_Cluster_Interfaces | 3.2.0 | 3.3.0 |
NetApp_Cluster_Nodes | 3.2.0 | 3.3.0 |
NetApp_Cluster_PSU | 3.2.0 | 3.3.0 |
NetApp_Cluster_QTree | 3.2.0 | 3.3.0 |
NetApp_Cluster_StorageAdapters | 3.2.0 | 3.3.0 |
NetApp_Cluster_SVM | 3.3.0 | 3.4.0 |
NetApp_Cluster_SVMPeers | 3.2.0 | 3.3.0 |
NetApp_Cluster_Volumes | 3.2.0 | 3.3.0 |
Nimble_SSH_VolumeUsage | 1.0.0 | 1.1.0 |
Nimble_Volume_Latency | 1.8.0 | 1.9.0 |
Oracle_Database_ASMStorage | 1.3.0 | 1.4.0 |
Oracle_Database_BlockedSessionOverview | 1.7.0 | 1.8.0 |
Oracle_Database_BlockedSessions | 1.5.0 | 1.6.0 |
Oracle_Database_ConnectionStatus | 1.4.0 | 1.5.0 |
Oracle_Database_DatafileStatus | 1.2.0 | 1.3.0 |
Oracle_Database_DiskUsage | 1.1.0 | 1.2.0 |
Oracle_Database_FRAUtilization | 1.1.0 | 1.2.0 |
Oracle_Database_IndividualSchemaSize | 1.5.0 | 1.6.0 |
Oracle_Database_LibraryCache | 1.6.0 | 1.7.0 |
Oracle_Database_LongOperations | 1.6.0 | 1.7.0 |
Oracle_Database_MonitorUser | 1.5.0 | 1.6.0 |
Oracle_Database_ResourceLimits | 1.6.0 | 1.7.0 |
Oracle_Database_RMANBackupAsyncIOByType | 1.7.0 | 1.8.0 |
Oracle_Database_RMANBackupSetsAge | 1.3.0 | 1.4.0 |
Oracle_Database_RMANBackupSyncIOByType | 1.7.0 | 1.8.0 |
Oracle_Database_RMANLatestBackupFiles | 1.7.0 | 1.8.0 |
Oracle_Database_RMANLatestBackupJobByType | 1.8.0 | 1.9.0 |
Oracle_Database_SessionsWaiting_LockRelease | 1.5.0 | 1.6.0 |
Oracle_Database_SystemMetrics | 1.4.0 | 1.5.0 |
Oracle_Database_SystemStats | 1.7.0 | 1.8.0 |
Oracle_Database_TableSpaceStatus | 1.5.0 | 1.6.0 |
Oracle_Database_TableSpaceUsageMaxGrowth | 1.5.0 | 1.6.0 |
Oracle_Database_Troubleshooter | 1.5.0 | 1.6.0 |
Oracle_MySQL_ConnectionStatus | 1.3.0 | 1.4.0 |
Oracle_MySQL_Databases | 1.0.0 | 1.1.0 |
Oracle_MySQL_Innodb | 1.1.0 | 1.2.0 |
Oracle_MySQL_ReplicaStatus | 1.0.0 | 1.1.0 |
Oracle_MySQL_Source | 1.0.0 | 1.1.0 |
Oracle_MySQL_Status | 1.1.0 | 1.2.0 |
Oracle_MySQL_TableSizes | 1.0.0 | 1.1.0 |
Oracle_MySQL_Troubleshooter | 1.0.0 | 1.1.0 |
OSPF_Neighbors | 1.13.0 | 1.14.0 |
PaloAlto_Prisma_SDWAN_EdgeHealth | 1.4.0 | 1.5.0 |
PaloAlto_Prisma_SDWAN_EdgePerformance | 1.1.0 | 1.2.0 |
PaloAlto_Prisma_SDWAN_Overlay | 1.3.0 | 1.4.0 |
PaloAlto_Prisma_SDWAN_Underlay | 1.4.0 | 1.5.0 |
Puppet_Agent_LastRunMetrics | 1.2.0 | 1.3.0 |
Puppet_Profiler_Statistics | 1.1.0 | 1.2.0 |
Puppet_Server_JRuby_Statistics | 1.1.0 | 1.2.0 |
Puppet_Server_JVM_GC | 1.1.0 | 1.2.0 |
Puppet_Server_JVM_MemoryPools | 1.1.0 | 1.2.0 |
Puppet_Server_JVM_NIOBufferPools | 1.1.0 | 1.2.0 |
Puppet_Server_JVM_Resources | 1.1.0 | 1.2.0 |
Puppet_Server_Routes_Statistics | 1.1.0 | 1.2.0 |
SAP_HANA_BackupAge | 1.4.0 | 1.5.0 |
SAP_HANA_Connections | 1.4.0 | 1.5.0 |
SAP_HANA_DatabaseMemoryUse | 1.4.0 | 1.5.0 |
SAP_HANA_DiskUsage | 1.4.0 | 1.5.0 |
SAP_HANA_HostResourceUtilization | 1.4.0 | 1.5.0 |
SAP_HANA_ServiceStatus | 1.4.0 | 1.5.0 |
SAP_HANA_SystemDatabaseAvailability | 1.3.0 | 1.4.0 |
SAP_HANA_TableSizeOnDisk | 1.4.0 | 1.5.0 |
SAP_HANA_Troubleshooter | 1.3.0 | 1.4.0 |
SilverPeak_Orchestrator_Appliances | 2.1.0 | 2.2.0 |
SilverPeak_Orchestrator_Disks | 2.1.0 | 2.2.0 |
SilverPeak_Orchestrator_DiskUsage | 2.1.0 | 2.2.0 |
SilverPeak_Orchestrator_Info | 2.2.0 | 2.3.0 |
SilverPeak_Orchestrator_Tunnels | 2.2.0 | 2.3.0 |
SSL_Certificate_Chains | 1.3.0 | 1.4.0 |
SSL_Certificates | 1.12.0 | 1.13.0 |
Ubiquiti_UniFiAP_Performance | 1.0.0 | 1.1.0 |
Ubiquiti_UniFiAP_Radios | 1.0.0 | 1.1.0 |
Ubiquiti_UniFiAP_SSIDs | 1.1.0 | 1.2.0 |
Versa_SDWAN_API | 1.0.0 | 1.1.0 |
Versa_SDWAN_ApplianceHealth | 1.0.0 | 1.1.0 |
Versa_SDWAN_ApplianceInterfaces | 1.0.0 | 1.1.0 |
Versa_SDWAN_AppliancePerformance | 1.0.0 | 1.1.0 |
Versa_SDWAN_Tunnels | 1.0.0 | 1.1.0 |
Viptela_OSPF_Neighbors | 1.0.0 | 1.1.0 |
VMware_ESXi_CPU | 1.4.0 | 1.5.0 |
VMware_ESXi_DatastoreThroughput | 1.2.0 | 1.3.0 |
VMware_ESXi_DatastoreUsage | 1.2.0 | 1.3.0 |
VMware_ESXi_Disks | 1.2.0 | 1.3.0 |
VMware_ESXi_HardwareHealthSensor | 1.4.0 | 1.5.0 |
VMware_ESXi_LogicalProcessors | 1.2.0 | 1.3.0 |
VMware_ESXi_Memory | 1.2.0 | 1.3.0 |
VMware_ESXi_NetworkInterfaces | 1.3.0 | 1.4.0 |
VMware_ESXi_NetworkState | 1.3.0 | 1.4.0 |
VMware_ESXi_Power | 1.2.0 | 1.3.0 |
VMware_ESXi_SystemHealthSensor | 1.3.0 | 1.4.0 |
VMware_ESXi_VirtualMachineDiskCapacity | 1.1.0 | 1.2.0 |
VMware_ESXi_VirtualMachinePerformance | 1.3.0 | 1.4.0 |
VMware_ESXi_VirtualMachineSnapshots | 1.1.0 | 1.2.0 |
VMware_ESXi_VirtualMachineStatus | 1.4.0 | 1.5.0 |
VMware_LM_Troubleshooter | 3.3.0 | 3.4.0 |
VMware_SDWAN_BGP_Sessions | 1.1.0 | 1.2.0 |
VMware_SDWAN_Health | 1.2.0 | 1.3.0 |
VMware_SDWAN_Interfaces | 1.6.0 | 1.7.0 |
VMware_SDWAN_Performance | 1.1.0 | 1.2.0 |
VMware_SDWAN_Tunnels | 1.3.0 | 1.4.0 |
VMware_vCenterAppliance_Backup | 1.3.0 | 1.4.0 |
VMware_vCenterAppliance_CPU | 1.3.0 | 1.4.0 |
VMware_vCenterAppliance_DiskPerformance | 1.3.0 | 1.4.0 |
VMware_vCenterAppliance_FileSystemPartitions | 1.3.0 | 1.4.0 |
VMware_vCenterAppliance_FileSystemSwap | 1.3.0 | 1.4.0 |
VMware_vCenterAppliance_HealthStatus | 1.3.0 | 1.4.0 |
VMware_vCenterAppliance_HighAvailability | 1.1.0 | 1.2.0 |
VMware_vCenterAppliance_Memory | 1.3.0 | 1.4.0 |
VMware_vCenterAppliance_NetworkInterfaces | 1.3.0 | 1.4.0 |
VMware_vCenterAppliance_Power | 1.1.0 | 1.2.0 |
VMware_vCenterAppliance_Services | 1.2.0 | 1.3.0 |
VMware_VeloCloud_EdgeLinkEventQuality | 1.10.0 | 1.11.0 |
VMware_vSphere_Clusters | 1.1.0 | 1.2.0 |
VMware_vSphere_DatastoreClusters | 1.1.0 | 1.2.0 |
VMware_vSphere_DatastoreStatus | 1.2.0 | 1.3.0 |
VMware_vSphere_DatastoreThroughput | 1.2.0 | 1.3.0 |
VMware_vSphere_DatastoreUsage | 1.5.0 | 1.6.0 |
VMware_vSphere_HighAvailability | 1.2.0 | 1.3.0 |
VMware_vSphere_HostStatus | 1.3.0 | 1.4.0 |
VMware_vSphere_NetworkState | 1.2.0 | 1.3.0 |
VMware_vSphere_ResourcePools | 1.1.0 | 1.2.0 |
VMware_vSphere_VirtualMachineDiskCapacity | 1.2.0 | 1.3.0 |
VMware_vSphere_VirtualMachineNetworkInterface | 1.2.0 | 1.3.0 |
VMware_vSphere_VirtualMachinePerformance | 1.4.0 | 1.5.0 |
VMware_vSphere_VirtualMachineSnapshots | 1.4.0 | 1.5.0 |
VMware_vSphere_VirtualMachineStatus | 1.4.0 | 1.5.0 |
WinIf- | 1.6.0 | 1.7.0 |
PropertySource Modules
PropertySource Name | Incompatible Versions (earlier than or equal to) | Compatible Version (later than or equal to) |
addCategory_Aruba_ClearPass | 1.0.0 | 1.1.0 |
addCategory_ArubaEdgeConnectSDWAN | 1.2.0 | 1.3.0 |
addCategory_Cato_SDWAN | 1.1.0 | 1.2.0 |
addCategory_Cisco_Catalyst_Center_Device | 1.2.0 | 1.3.0 |
addCategory_Cisco_Catalyst_SDWAN | 1.2.0 | 1.3.0 |
addCategory_CiscoCUCMAPI | 1.2.0 | 1.3.0 |
addCategory_Cisco_DNAC | 1.3.0 | 1.4.0 |
addCategory_Cisco_Meraki_Device | 1.12.0 | 1.13.0 |
addCategory_Cisco_UCS | 1.9.0 | 1.10.0 |
addCategory_Cisco_vManage | 2.1.0 | 2.2.0 |
addCategory_Cohesity | 1.8.0 | 1.9.0 |
addCategory_DellEMC_PowerStore | 1.2.0 | 1.3.0 |
addCategory_EMC_Avamar | 1.1.0 | 1.2.0 |
addCategory_EMC_VNX | 1.0.0 | 1.1.0 |
addCategory_Jenkins | 1.2.0 | 1.3.0 |
addCategory_Juniper_Mist_Device | 1.4.0 | 1.5.0 |
addCategory_Linux_SSH | 1.13.0 | 1.14.0 |
addCategory_LinuxOpenMetrics | 1.3.0 | 1.4.0 |
addCategory_LinuxPSI | 1.4.0 | 1.5.0 |
addCategory_Meraki_API | 1.16.0 | 1.17.0 |
addCategory_MongoDB | 1.4.0 | 1.5.0 |
addCategory_NetApp | 3.3.0 | 3.4.0 |
addCategory_OracleMySQL | 1.1.0 | 1.2.0 |
addCategory_PaloAlto_PrismaSDWAN | 1.3.0 | 1.4.0 |
addCategory_PowerMax | 2.2.0 | 2.3.0 |
addCategory_PowerSwitchNSeries | 1.1.0 | 1.2.0 |
addCategory_Puppet | 1.2.0 | 1.3.0 |
addCategory_SAP_HANA | 1.3.0 | 1.3.0 |
addCategory_TopoSwitch | 2.10.0 | 2.11.0 |
addCategory_UbiquitiUniFiAP | 1.0.0 | 1.1.0 |
addCategory_vCenter | 1.1.0 | 1.0.0 |
addCategory_Versa_SDWAN_Appliance | 1.1.0 | 1.2.0 |
addCategory_VMwareSDWAN | 1.2.0 | 1.3.0 |
addERI_ArubaEdgeConnectSDWAN | 1.1.0 | 1.2.0 |
addERI_BarracudaLoadBalancer | 2.1.0 | 2.2.0 |
addERI_BGP | 2.4.0 | 2.5.0 |
addERI_Cato_SDWAN | 1.0.0 | 1.1.0 |
addERI_Cisco | 3.14.0 | 3.13.0 |
addERI_Cisco_ASA | 2.2.0 | 2.3.0 |
addERI_Cisco_Catalyst_Center_Device | 1.1.0 | 1.2.0 |
addERI_Cisco_Catalyst_SDWAN | 1.1.0 | 1.2.0 |
addERI_Cisco_DNAC | 2.1.0 | 2.2.0 |
addERI_Cisco_EIGRP | 2.4.0 | 2.5.0 |
addERI_Cisco_HyperFlex | 2.1.0 | 2.2.0 |
addCategory_Cisco_ISE_MNT | 1.1.0 | 1.2.0 |
addERI_Cisco_ISIS | 1.5.0 | 1.6.0 |
addERI_Cisco_Meraki_Device | 1.5.0 | 1.6.0 |
addERI_Cisco_SDWAN | 2.1.0 | 2.2.0 |
addERI_Cisco_UCS | 2.7.0 | 2.8.0 |
addERI_Cisco_vManage | 3.1.0 | 3.2.0 |
addERI_Device | 2.13.0 | 2.14.0 |
addERI_DockerCollector | 1.1.0 | 1.2.0 |
addERI_EMC_ECS_Cluster | 2.1.0 | 2.2.0 |
addERI_EMC_ECS_Node | 2.1.0 | 2.2.0 |
addERI_ESXi | 3.1.0 | 3.2.0 |
addERI_F5 | 2.2.0 | 2.3.0 |
addERI_Fortinet_FortiGate | 2.3.0 | 2.4.0 |
addERI_HyperV | 2.1.0 | 2.2.0 |
addERI_ISIS | 2.6.0 | 2.7.0 |
addERI_Juniper_Mist_Device | 1.3.0 | 1.4.0 |
addERI_Kubernetes | 1.2.0 | 1.3.0 |
addERI_Kubernetes_ClusterRole | 1.2.0 | 1.3.0 |
addERI_Kubernetes_Node | 2.4.0 | 2.5.0 |
addERI_Kubernetes_Pod | 2.3.0 | 2.4.0 |
addERI_Kubernetes_Role | 1.2.0 | 1.3.0 |
addERI_Kubernetes_Service | 2.3.0 | 2.4.0 |
addERI_Kubernetes_ServiceAccount | 1.2.0 | 1.3.0 |
addERI_Linux | 2.15.0 | 2.16.0 |
addERI_Meraki | 3.1.0 | 3.2.0 |
addERI_Meraki_Device | 1.0.0 | 1.1.0 |
addERI_Meraki_Org | 1.1.0 | 1.2.0 |
addERI_NetApp | 2.3.0 | 2.4.0 |
addERI_Netscaler | 2.2.0 | 2.3.0 |
addERI_OSPF | 2.3.0 | 2.4.0 |
addERI_PaloAlto | 2.4.0 | 2.5.0 |
addERI_PaloAlto_PrismaSDWAN | 1.1.0 | 1.2.0 |
addERI_PureStorage | 2.3.0 | 2.4.0 |
addERI_SilverPeak_Orchestrator | 1.3.0 | 1.4.0 |
addERI_Ubiquiti | 2.3.0 | 2.4.0 |
addERI_vCenter | 3.1.0 | 3.2.0 |
addERI_Versa_SDWAN | 1.1.0 | 1.2.0 |
addERI_VMware_NSXT | 1.1.0 | 1.2.0 |
addERI_VMware_SDWAN | 1.0.0 | 1.1.0 |
addERI_VMware_VeloCloud | 2.1.0 | 2.2.0 |
addERI_Windows | 2.8.0 | 2.9.0 |
ConfigCheck_1_SFTP | 3.5.0 | 3.6.0 |
ConfigCheck_2_SCP | 3.5.0 | 3.6.0 |
ConfigCheck_3_Exec | 3.8.0 | 3.9.0 |
Linux_OpenMetrics_BasicInfo | 1.2.0 | 1.3.0 |
Linux_SSH_Info | 1.10.0 | 1.11.0 |
Microsoft_SQLServer_Connections | 1.25.0 | 1.26.0 |
NetApp_System_Info | 1.5.0 | 1.6.0 |
Oracle_Database_Names | 1.10.0 | 1.11.0 |
VMware_vSphere_Info | 1.2.0 | 1.3.0 |
TopologySource Modules
TopologySource Name | Incompatible Versions (earlier than or equal to) | Compatible Version (later than or equal to) |
Aruba_EdgeConnect_SDWAN_Topology | 1.0.0 | 1.1.0 |
BarracudaLoadBalancer_HA | 1.5.0 | 1.6.0 |
BGP_Topology | 1.11.0 | 1.12.0 |
Cisco_ASA_L2_HA | 1.6.0 | 1.7.0 |
Cisco_Catalyst_Center_Topology | 1.2.0 | 1.3.0 |
Cisco_Catalyst_SDWAN_Topology | 1.1.0 | 1.2.0 |
Cisco_DNAC_Topology | 1.6.0 | 1.7.0 |
Cisco_EIGRP | 1.6.0 | 1.7.0 |
Cisco_HSRP_L2_HA | 1.8.0 | 1.9.0 |
Cisco_HyperFlex_Topology | 1.6.0 | 1.7.0 |
Cisco_ISIS_Topology | 1.3.0 | 1.4.0 |
Cisco_Meraki_Topology | 1.8.0 | 1.9.0 |
Cisco_Multicast_Topology | 2.3.0 | 2.4.0 |
Cisco_SDWAN_Topology | 2.2.0 | 2.3.0 |
Cisco_UCS_Topology | 1.11.0 | 1.12.0 |
Cisco_Wireless | 1.10.0 | 1.11.0 |
Docker_Topology | 1.2.0 | 1.3.0 |
EMC_ECS_Topology | 1.5.0 | 1.6.0 |
F5_L2_HA | 1.6.0 | 1.7.0 |
Fortinet_FortiGate_HA | 1.4.0 | 1.5.0 |
Fortinet_FortiGate_SDWAN | 1.6.0 | 1.7.0 |
ISIS_Topology | 1.5.0 | 1.6.0 |
Juniper_Mist_Topology | 1.2.0 | 1.3.0 |
Kubernetes_ClusterRoleBinding_Topology | 1.4.0 | 1.5.0 |
Kubernetes_ConfigMap_Topology | 1.0.0 | 1.1.0 |
Kubernetes_Helm_Topology | 1.1.0 | 1.2.0 |
Kubernetes_Netpol_Topology | 1.4.0 | 1.5.0 |
Kubernetes_Node_KSM_Topology | 1.3.0 | 1.4.0 |
Kubernetes_Node_Topology | 1.10.0 | 1.11.0 |
Kubernetes_PDB_Topology | 1.4.0 | 1.5.0 |
Kubernetes_Pod_KSM_Topology | 1.3.0 | 1.4.0 |
Kubernetes_Pod_Topology | 1.10.0 | 1.11.0 |
Kubernetes_PV_Topology | 1.4.0 | 1.5.0 |
Kubernetes_PVC_Topology | 1.4.0 | 1.5.0 |
Kubernetes_RoleBinding_Topology | 1.3.0 | 1.4.0 |
Kubernetes_Secret_Topology | 1.0.0 | 1.1.0 |
Kubernetes_Service_Topology | 1.12.0 | 1.13.0 |
Kubernetes_ServiceAccount_Topology | 1.0.0 | 1.1.0 |
Meraki_Cloud_Topology | 2.10.0 | 2.11.0 |
Meraki_Org_Topology | 1.1.0 | 1.2.0 |
NetApp_7mode_Topology | 1.9.0 | 1.10.0 |
NetApp_Cluster_Topology | 1.8.0 | 1.9.0 |
Netscaler_HA | 1.6.0 | 1.7.0 |
Networking_L2_snmpSwitch | 2.48.0 | 2.49.0 |
Networking_L2_snmpSwitch_Peak | 1.6.0 | 1.7.0 |
OSPF_Topology | 1.12.0 | 1.13.0 |
PaloAlto_L2_HA | 1.13.0 | 1.14.0 |
PaloAlto_PrismaSDWAN_Topology | 1.1.0 | 1.2.0 |
PureStorage_Topology | 1.5.0 | 1.6.0 |
SilverPeak_Orchestrator_Topology | 1.3.0 | 1.4.0 |
Ubiquiti_UniFi_Wireless | 1.7.0 | 1.8.0 |
Versa_SDWAN_Topology | 1.0.0 | 1.1.0 |
VMware_NSXT_Topology | 1.1.0 | 1.2.0 |
VMware_SDWAN_Topology | 1.0.0 | 1.1.0 |
VMware_vCenter_Cluster_Topology | 2.2.0 | 2.3.0 |
VMware_vCenter_Datastore_Topology | 2.2.0 | 2.3.0 |
VMware_VeloCloud_Topology | 1.5.0 | 1.6.0 |
VMware_vSphere_Network_Topology | 1.1.0 | 1.2.0 |
VMware_vSphere_VirtualMachine_Topology | 1.1.0 | 1.2.0 |
ConfigSources Modules
ConfigSource Name | Incompatible Versions (less than or equal to) | Compatible Version (greater than or equal to) |
Microsoft_SQLServer_DatabaseNames | 1.2.0 | 1.3.0 |
SCP_Dynamic | 2.6.0 | 2.7.0 |
SCP_Standard | 2.10.0 | 2.11.0 |
SFTP_Dynamic | 2.6.0 | 2.7.0 |
SFTP_Files | 1.5.0 | 1.6.0 |
SFTP_Standard | 2.10.0 | 2.11.0 |
SSH_Exec_Dynamic | 2.9.0 | 2.10.0 |
SSH_Exec_Standard | 2.14.0 | 2.15.0 |
LogSources Modules
LogSource Name | Incompatible Versions (earlier than or equal to) | Compatible Version (later than or equal to) |
Cisco Catalyst SDWAN Alarms | 1.2.0 | 1.3.0 |
Cisco_Catalyst_Center_Issues | 1.2.0 | 1.3.0 |
Meraki Assurance Alerts | 1.1.0 | 1.2.0 |
Meraki Network Events | 1.4.0 | 1.3.0 |
Meraki Security Appliance Events | 1.2.0 | 1.3.0 |
VMware SDWAN Alerts | 1.1.0 | 1.2.0 |
EventSources Modules
EventSource Name | Incompatible Versions (earlier than or equal to) | Compatible Version (later than or equal to) |
Cisco DNAC Issues | 1.6.0 | 1.7.0 |
Cohesity_DataPlatform_Alerts | 1.7.0 | 1.8.0 |
Jenkins Health | 1.2.0 | 1.3.0 |
PaloAlto_FW_ThreatAnalysis_Events | 1.3.0 | 1.4.0 |
PowerStore Alerts | 1.4.0 | 1.5.0 |