LogicMonitor seeks to disrupt AI landscape with $800M strategic investment at $2.4B valuation to revolutionize data centers.

Learn More

v.212 Release Notes

Last updated on 21 October, 2024

Feature Highlights

  • Enhancement of Azure and AWS Resource Detection
  • Added Support for AWS Gateway Load Balancers
  • Editing LogicModule Tags

Monitoring Updates

  • Improved Cisco Meraki Monitoring NetScan
  • User Permissions for Running Reports
  • Support for EKS and Bedrock Logs for AWS Log Integration

Cloud Monitoring

Enhancement

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

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.

Enhancement

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

Known Issue

Collector Group Conversion

Unable to convert normal collector group to auto balance collector group.

Integrations

Enhancement

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.

Enhancement

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

Enhancement

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.

Removal

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

Enhancement

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.

Enhancement

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.

Enhancement

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.

Enhancement

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.

Enhancement

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.

Deprecation

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.

Deprecation

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.

Known Issue

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.

Known Issue

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:

Known Issue

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.

Known Issue

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.

Known Issue

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

Enhancement

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

Enhancement

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

Enhancement

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 NameDetails
2 DataSources:
  – AWS_GatewayELB
  – AWS_GatewayELB_TargetGroups
Added 2 new datasources for AWS Gateway Load Balancer.

Updated LogicModules

LogicModule NameDetails
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 NameIncompatible Versions
(earlier or equal to)
Compatible Version
(later than or equal to)
Cisco_ISE_ActiveSessions1.0.01.1.0
Cisco_ISE_PosturedEndpoints1.0.01.1.0
Cisco_ISE_ProfilerServiceSessions1.0.01.1.0
Cisco_ISE_ServerSessions1.0.01.1.0
Cisco_ISE_TotalActiveUsers1.0.01.1.0
HP_MSA_Controllers1.5.01.6.0
HP_MSA_Disks1.7.01.8.0
HP_MSA_Fans1.5.01.6.0
HP_MSA_FRU1.5.01.6.0
HP_MSA_Ports1.6.01.7.0
HP_MSA_PSU1.5.01.6.0
HP_MSA_Redundancy1.5.01.6.0
HP_MSA_SASLinkHealth1.5.01.6.0
HP_MSA_VirtualDisks1.8.01.9.0
HP_MSA_Volumes1.6.01.7.0
Apache_Hadoop_MapReduceJobs1.0.01.1.0
Cisco_CUCM_LBM1.2.01.3.0
Cisco_CUCM_MTPDeviceStatistics1.1.01.2.0
Cisco_CUCM_Replication1.1.01.2.0
Cisco_CUCM_Services1.2.01.3.0
Cisco_CUCM_SIP1.1.01.2.0
Cisco_CUCM_SystemPerformance1.1.01.2.0
Citrix_XenApp_ConnectionFailureTrends1.4.01.5.0
Citrix_XenApp_DeliveryGroups1.6.01.7.0
Citrix_XenApp_LogonPerformance1.7.01.8.0
Citrix_XenApp_MachineCatalogs1.3.01.4.0
Citrix_XenApp_MachineFailureTrends1.3.01.4.0
Citrix_XenApp_Machines1.4.01.5.0
ConnectWise_Service_Board_Statistics2.1.02.2.0
ConnectWise_Ticket_Resolution_Statistics_by_Representative2.1.02.2.0
ConnectWise_Ticket_Statistics_by_Representative2.1.02.2.0
ConnectWise_Ticket_Status_Statistics2.1.02.2.0
EMC_Avamar_Checkpoints1.2.01.3.0
EMC_Avamar_ClientBackups1.4.01.5.0
EMC_Avamar_DataDomains1.2.01.3.0
EMC_Avamar_Datasets1.1.01.2.0
EMC_Avamar_Groups1.1.01.2.0
EMC_Avamar_ServerGarbageCollection1.1.01.2.0
EMC_Avamar_ServerNodes1.1.01.2.0
EMC_Avamar_Servers1.1.01.2.0
EMC_Avamar_Troubleshooter1.1.01.2.0
NetApp_7mode_Aggregates1.4.01.5.0
NetApp_7mode_CableConnectors1.2.01.3.0
NetApp_7mode_ClusteringServices1.2.01.3.0
NetApp_7mode_CurrentSensors1.2.01.3.0
NetApp_7mode_Disks1.5.01.6.0
NetApp_7mode_Fans1.2.01.3.0
NetApp_7mode_GlobalPerformance1.2.01.3.0
NetApp_7mode_HostAdapters1.2.01.3.0
NetApp_7mode_iSCSI1.2.01.3.0
NetApp_7mode_LUNs1.2.01.3.0
NetApp_7mode_NFS1.3.01.4.0
NetApp_7mode_NIC1.2.01.3.0
NetApp_7mode_PowerSupplies1.2.01.3.0
NetApp_7mode_QTree1.2.01.3.0
NetApp_7mode_RAID1.2.01.3.0
NetApp_7mode_Snapmirror1.3.01.4.0
NetApp_7mode_Snapshots1.2.01.3.0
NetApp_7mode_SnapshotScheduler1.3.01.4.0
NetApp_7mode_Status1.2.01.3.0
NetApp_7mode_Targets1.2.01.3.0
NetApp_7mode_TemperatureSensors1.2.01.3.0
NetApp_7mode_VoltageSensors1.2.01.3.0
NetApp_7mode_Volumes1.6.01.7.0
NetApp_7mode_WAFL1.1.01.2.0
NetApp_Cluster_Aggregate2.6.02.7.0
NetApp_Cluster_BatteryLifeSensors1.3.01.4.0
NetApp_Cluster_CurrentSensors1.2.01.3.0
NetApp_Cluster_Disks1.9.01.10.0
NetApp_Cluster_Failover1.3.01.4.0
NetApp_Cluster_FanSensors1.1.01.2.0
NetApp_Cluster_FCPInitiators1.3.01.4.0
NetApp_Cluster_FibreChannel1.5.01.6.0
NetApp_Cluster_HAInterconnectPair1.2.01.3.0
NetApp_Cluster_HighAvailability1.3.01.4.0
NetApp_Cluster_iSCSI1.3.01.4.0
NetApp_Cluster_LUNs1.4.01.5.0
NetApp_Cluster_NFS1.4.01.5.0
NetApp_Cluster_Peer1.2.01.3.0
NetApp_Cluster_PolicyGroups1.2.01.3.0
NetApp_Cluster_Quotas1.3.01.4.0
NetApp_Cluster_RAID1.3.01.4.0
NetApp_Cluster_ShelfBayHealth1.2.01.3.0
NetApp_Cluster_SnapMirror1.3.01.4.0
NetApp_Cluster_Snapshots1.4.01.5.0
NetApp_Cluster_Status2.1.02.2.0
NetApp_Cluster_TemperatureSensors1.2.01.3.0
NetApp_Cluster_VoltageSensors1.2.01.3.0
PaloAlto_FW_BGP1.11.01.12.0
PaloAlto_FW_Certificates1.9.01.10.0
PaloAlto_FW_DataplaneCores1.8.01.9.0
PaloAlto_FW_Disk1.7.01.8.0
PaloAlto_FW_DroppedPackets1.8.01.8.0
PaloAlto_FW_Fans2.6.02.7.0
PaloAlto_FW_FilterActions1.4.01.5.0
PaloAlto_FW_GlobalPerformance1.6.01.7.0
PaloAlto_FW_HA_Interface1.7.01.8.0
PaloAlto_FW_IPSecTunnelOverview1.4.01.5.0
PaloAlto_FW_IPSecTunnelStats2.9.02.10.0
PaloAlto_FW_Licenses1.4.01.5.0
PaloAlto_FW_Logical_Interface1.7.01.8.0
PaloAlto_FW_OSPF1.9.01.10.0
PaloAlto_FW_Power1.9.01.10.0
PaloAlto_FW_QoS1.7.01.8.0
PaloAlto_FW_QoS_V8+1.5.01.6.0
PaloAlto_FW_QoS_V9+1.5.01.6.0
PaloAlto_FW_Reports_TopApplicationCategories1.4.01.5.0
PaloAlto_FW_Reports_TopApplications1.4.01.5.0
PaloAlto_FW_Reports_TopAttackers1.4.01.5.0
PaloAlto_FW_Reports_TopDestinationCountries1.5.01.6.0
PaloAlto_FW_Reports_TopDestinations1.4.01.5.0
PaloAlto_FW_Reports_TopEgressZones1.4.01.5.0
PaloAlto_FW_Reports_TopHTTPApplications1.4.01.5.0
PaloAlto_FW_Reports_TopIngressZones1.4.01.5.0
PaloAlto_FW_Reports_TopRules1.4.01.5.0
PaloAlto_FW_Reports_TopSourceCountries1.5.01.6.0
PaloAlto_FW_Reports_TopSources1.5.01.6.0
PaloAlto_FW_Reports_TopTechnologyCategories1.4.01.5.0
PaloAlto_FW_Reports_TopVictims1.4.01.5.0
PaloAlto_FW_SDWAN_Tunnel1.2.01.3.0
PaloAlto_FW_Spec_Interface1.7.01.8.0
PaloAlto_FW_SystemResources2.12.02.13.0
PaloAlto_FW_Temperature1.7.01.8.0
PaloAlto_FW_ThreatAnalysis1.8.01.9.0
PaloAlto_GlobalProtect_Sessions1.8.01.9.0
PaloAlto_Panorama_Devices1.8.01.9.0
APC_Environment_Monitor_Humidity-1.3.01.4.0
APC_Environment_Monitor_Temp-1.3.01.4.0
Aruba_ClearPass_AccessAuthorization1.3.01.4.0
Aruba_ClearPass_DiskMemoryUsage1.1.01.2.0
Aruba_ClearPass_NetworkTraffic1.2.01.3.0
Aruba_ClearPass_PolicyServer1.1.01.2.0
Aruba_ClearPass_ProtocolStats1.1.01.2.0
Aruba_ClearPass_SystemInfo1.0.01.1.0
Aruba_EdgeConnect_SDWAN_API1.2.01.3.0
Aruba_EdgeConnect_SDWAN_BGP1.0.01.1.0
Aruba_EdgeConnect_SDWAN_Disk1.0.01.1.0
Aruba_EdgeConnect_SDWAN_Health1.2.01.3.0
Aruba_EdgeConnect_SDWAN_Interfaces1.0.01.1.0
Aruba_EdgeConnect_SDWAN_NextHops1.1.01.2.0
Aruba_EdgeConnect_SDWAN_Performance1.1.01.2.0
Aruba_EdgeConnect_SDWAN_Tunnels1.1.01.2.0
BGP-1.8.01.9.0
Brocade_Switch_Ports1.0.01.1.0
Cato_SDWAN_API1.1.01.2.0
Cato_SDWAN_Health1.0.01.1.0
Cato_SDWAN_Interfaces1.1.01.2.0
Cato_SDWAN_Tunnels1.1.01.2.0
CDP_Neighbors1.4.01.5.0
Cisco_APIC_ApplicationProfiles1.2.01.3.0
Cisco_APIC_BGP1.2.01.3.0
Cisco_APIC_BridgeDomains1.2.01.3.0
Cisco_APIC_Capacity1.2.01.3.0
Cisco_APIC_ClusterStatus1.2.01.3.0
Cisco_APIC_CPU1.5.01.6.0
Cisco_APIC_EndpointGroups1.2.01.3.0
Cisco_APIC_FabricNodeHealth1.5.01.6.0
Cisco_APIC_FabricPodHealth1.5.01.6.0
Cisco_APIC_Fans1.2.01.3.0
Cisco_APIC_Hypervisor1.5.01.6.0
Cisco_APIC_Interfaces1.7.01.8.0
Cisco_APIC_Memory1.5.01.6.0
Cisco_APIC_ProcessesContainers1.5.01.6.0
Cisco_APIC_Storage1.5.01.6.0
Cisco_APIC_Tenants1.2.01.3.0
Cisco_Catalyst_AccessPointHealth1.2.01.3.0
Cisco_Catalyst_AccessPointPerformance1.1.01.2.0
Cisco_Catalyst_AccessPointRadios1.1.01.2.0
Cisco_Catalyst_Center_API1.1.01.2.0
Cisco_Catalyst_PowerOverEthernet1.5.01.6.0
Cisco_Catalyst_RouterHealth1.0.01.1.0
Cisco_Catalyst_RouterPerformance1.0.01.1.0
Cisco_Catalyst_SDWAN_API1.7.01.8.0
Cisco_Catalyst_SDWAN_ControlConnections1.2.01.3.0
Cisco_Catalyst_SDWAN_ControllerHealth1.6.01.7.0
Cisco_Catalyst_SDWAN_ControllerInterfaces1.2.01.3.0
Cisco_Catalyst_SDWAN_DeviceHealth1.5.01.6.0
Cisco_Catalyst_SDWAN_NetworkInterfaces1.2.01.3.0
Cisco_Catalyst_SDWAN_Performance1.1.01.2.0
Cisco_Catalyst_SDWAN_Tunnels1.2.01.3.0
Cisco_Catalyst_SwitchHealth1.0.01.1.0
Cisco_Catalyst_SwitchPerformance1.0.01.1.0
Cisco_Catalyst_WLCHealth1.1.01.2.0
Cisco_Catalyst_WLCPerformance1.1.01.2.0
Cisco_CPU_SNMP1.2.01.3.0
Cisco_DNAC_Clients1.4.01.5.0
Cisco_DNAC_Devices1.11.01.12.0
Cisco_DNAC_Networks1.5.01.6.0
Cisco_EIGRP_Peers3.7.03.8.0
Cisco_ISIS_Neighbors1.2.01.3.0
Cisco_MemoryPools_SNMP1.4.01.5.0
Cisco_Meraki_AccessPoint_Interfaces1.15.01.16.0
Cisco_Meraki_AccessPointHealth1.5.01.6.0
Cisco_Meraki_AccessPointPerformance1.5.01.6.0
Cisco_Meraki_AccessPointRadios1.5.01.6.0
Cisco_Meraki_AccessPoints1.18.01.19.0
Cisco_Meraki_AccessPointSSIDs1.1.01.2.0
Cisco_Meraki_API1.21.01.22.0
Cisco_Meraki_APIUsage1.7.01.8.0
Cisco_Meraki_CameraHealth1.3.01.4.0
Cisco_Meraki_CellularGatewayHealth1.3.01.4.0
Cisco_Meraki_CellularGatewayPerformance1.5.01.6.0
Cisco_Meraki_Coterm_Licensing1.0.01.2.0
Cisco_Meraki_DeviceCount1.13.01.14.0
Cisco_Meraki_DeviceInterfaces1.6.01.7.0
Cisco_Meraki_DoorSensor1.0.01.1.0
Cisco_Meraki_Gateway_Interfaces1.14.01.15.0
Cisco_Meraki_Gateways1.19.01.20.0
Cisco_Meraki_Licenses1.4.01.5.0
Cisco_Meraki_OrgDeviceCount1.4.01.5.0
Cisco_Meraki_PowerSensor1.0.01.1.0
Cisco_Meraki_SecurityAppliance_Interfaces1.14.01.15.0
Cisco_Meraki_SecurityApplianceHealth1.5.01.6.0
Cisco_Meraki_SecurityAppliancePerformance1.3.01.4.0
Cisco_Meraki_SecurityAppliances1.19.01.20.0
Cisco_Meraki_SecurityApplianceTunnels1.4.01.5.0
Cisco_Meraki_SecurityApplianceUnderlay1.7.01.8.0
Cisco_Meraki_Switches1.16.01.17.0
Cisco_Meraki_SwitchHealth1.4.01.5.0
Cisco_Meraki_SwitchInterfaces1.5.01.6.0
Cisco_Meraki_SwitchPerformance1.4.01.5.0
Cisco_Meraki_TemperatureSensor1.0.01.1.0
Cisco_Meraki_Troubleshooter1.4.01.5.0
Cisco_Meraki_UplinkApplianceStatus1.7.01.8.0
Cisco_Meraki_UplinkLossAndLatency1.9.01.10.0
Cisco_Meraki_WaterSensor1.0.01.1.0
Cisco_Multicast_Groups2.4.02.5.0
Cisco_Multicast_Interfaces2.3.02.4.0
Cisco_Multicast_Routes2.3.02.4.0
Cisco_Transceiver_Sensors1.14.01.15.0
Cisco_UCS_BladeServerComponents1.5.01.6.0
Cisco_UCS_BladeServers1.9.01.10.0
Cisco_UCS_Chassis1.9.01.10.0
Cisco_UCS_ChassisPorts1.6.01.7.0
Cisco_UCS_ChassisUtilization1.9.01.10.0
Cisco_UCS_Disks1.9.01.10.0
Cisco_UCS_FabricExtender1.10.01.11.0
Cisco_UCS_FabricInterconnect1.6.01.7.0
Cisco_UCS_Fans1.5.01.6.0
Cisco_UCS_Faults1.7.01.8.0
Cisco_UCS_FEXPorts1.6.01.7.0
Cisco_UCS_FIStoragePartitions1.5.01.6.0
Cisco_UCS_IMCDisks1.4.01.5.0
Cisco_UCS_IOCards1.6.01.7.0
Cisco_UCS_Ports1.8.01.9.0
Cisco_UCS_PSUs1.9.01.10.0
Cisco_UCS_RackServerComponents1.5.01.6.0
Cisco_UCS_RackServers1.11.01.12.0
Cisco_UCS_SANPortChannels1.6.01.7.0
Cisco_UCS_ServerInterfaces1.6.01.7.0
Cisco_UCS_ServiceProfiles1.5.01.6.0
Cisco_UCS_Sessions1.7.01.8.0
Cisco_UCS_VLANs1.5.01.6.0
Cisco_UCS_VSANs1.5.01.6.0
Cisco_vManage_Alarms2.1.02.2.0
Cisco_vManage_ApplicationAwareRoutingSLAClasses2.1.02.2.0
Cisco_vManage_BFDDeviceSummary2.1.02.2.0
Cisco_vManage_BFDPerTLOC2.1.02.2.0
Cisco_vManage_CertificateSummary2.1.02.2.0
Cisco_vManage_ControlWANInterfaces2.1.02.2.0
Cisco_vManage_Devices2.2.02.3.0
Cisco_vManage_IPv4Interfaces2.1.02.2.0
Cisco_vManage_OMP2.1.02.2.0
Cisco_vManage_OMPPeers2.1.02.2.0
Cisco_vManage_Sessions2.1.02.2.0
Cisco_vManage_Sites2.1.02.2.0
Cisco_vManage_TransportHealth2.1.02.2.0
Cisco_vManage_WANEdgeInventory2.1.02.2.0
Cisco_Wireless_AP2.3.02.4.0
CiscoQoS-3.4.03.5.0
Citrix_VAD_Services1.1.01.2.0
Cohesity_DataPlatform_BasicStorage1.3.01.4.0
Cohesity_DataPlatform_ClusterStatus1.3.01.4.0
Cohesity_DataPlatform_ConsumersStats1.3.01.4.0
Cohesity_DataPlatform_NodeStatistics1.3.01.4.0
Cohesity_DataPlatform_NodeStatus1.3.01.4.0
Cohesity_DataPlatform_NodeStatus_V6.31.3.01.4.0
Cohesity_DataPlatform_ProtectedObjects1.3.01.4.0
Cohesity_DataPlatform_ProtectionJobs1.7.01.8.0
Cohesity_DataPlatform_Troubleshooter1.4.01.5.0
Cohesity_DataPlatform_Views1.3.01.4.0
DellEMC_PowerStore_ClusterCapacity1.3.01.4.0
DellEMC_PowerStore_FibreChannelPort1.3.01.4.0
DellEMC_PowerStore_Nodes1.2.01.3.0
DellEMC_PowerStore_VolumeCapacity1.4.01.5.0
DellEMC_PowerSwitchNSeries_CPUProcessUtilization1.1.01.2.0
DellEMC_PowerSwitchNSeries_ResourceMetrics1.1.01.2.0
DellEMC_XtremIO_BBU1.1.01.2.0
DellEMC_XtremIO_Clusters1.3.01.4.0
DellEMC_XtremIO_ConsistencyGroups1.2.01.3.0
DellEMC_XtremIO_DAEControllers1.2.01.3.0
DellEMC_XtremIO_DAEPSU1.3.01.4.0
DellEMC_XtremIO_DataProtectionGroups1.2.01.3.0
DellEMC_XtremIO_Initiators1.2.01.3.0
DellEMC_XtremIO_Snapshots1.1.01.2.0
DellEMC_XtremIO_SSD1.3.01.4.0
DellEMC_XtremIO_StorageControllerLocalDisks1.2.01.3.0
DellEMC_XtremIO_Targets1.3.01.4.0
DellEMC_XtremIO_Volumes1.6.01.7.0
DellEMC_XtremIO_XEnvironments1.2.01.3.0
DellEMC_XtremIO_XMS1.4.01.5.0
EMC_DiskPerformance_NaviSecCli2.6.02.7.0
EMC_EnclosureEnvironment_NaviSecCli2.6.02.7.0
EMC_FastCache_NaviSecCli2.3.02.4.0
EMC_PowerMax_Array2.2.02.3.0
EMC_PowerMax_BEDirectors2.2.02.3.0
EMC_PowerMax_BEEmulation2.2.02.3.0
EMC_PowerMax_BEPort2.2.02.3.0
EMC_PowerMax_Board2.2.02.3.0
EMC_PowerMax_Core2.2.02.3.0
EMC_PowerMax_Disk2.2.02.3.0
EMC_PowerMax_DiskGroup2.2.02.3.0
EMC_PowerMax_DSEPool2.2.02.3.0
EMC_PowerMax_EDSDirector2.2.02.3.0
EMC_PowerMax_EDSEmulation2.2.02.3.0
DellEMC_PowerStore_EthernetPort1.2.01.3.0
DellEMC_XtremIO_InfiniBandSwitches1.2.01.3.0
DellEMC_XtremIO_StorageControllerPowerSupplies1.2.01.3.0
DellEMC_XtremIO_StorageControllerStats1.2.01.3.0
EMC_PowerMax_FEDirectors2.2.02.3.0
EMC_PowerMax_FEEmulation2.2.02.3.0
EMC_PowerMax_FEPort2.2.02.3.0
EMC_PowerMax_FICONEmulation2.2.02.3.0
EMC_PowerMax_IMDirector2.2.02.3.0
EMC_PowerMax_IMEmulation2.2.02.3.0
EMC_PowerMax_RDFDirector2.2.02.3.0
EMC_PowerMax_RDFEmulation2.2.02.3.0
EMC_PowerMax_RDFPort2.2.02.3.0
EMC_PowerMax_RDFS2.2.02.3.0
EMC_PowerMax_StorageGroup2.2.02.3.0
EMC_PowerMax_ThinPoolLUN2.2.02.3.0
EMC_SPCache_NaviSecCli2.6.02.7.0
EMC_SPPerformance_NaviSecCli2.5.02.6.0
EMC_SPStatus_NaviSecCli1.6.01.7.0
EMC_StoragePool_NaviSecCli2.9.02.10.0
EMC_SystemPower_NaviSecCli2.5.02.6.0
Fortinet_FortiGate_IPSecVPNTunnels1.2.01.3.0
Google_Analytics_PageViews1.1.01.2.0
HP_3PAR_Controller1.5.01.6.0
HP_3PAR_CPG2.6.02.7.0
HP_3PAR_Disk1.10.01.11.0
HP_3PAR_HardwareHealth1.8.01.9.0
HP_3PAR_iSCSI1.6.01.7.0
HP_3PAR_Port1.5.01.6.0
HP_3PAR_VLUN_by_Host1.6.01.7.0
HP_3PAR_VLUN_by_Volume1.7.01.8.0
HP_3PAR_Volumes1.7.01.8.0
ISIS_Neighbors1.2.01.3.0
Jenkins_BuildStatistics1.2.01.3.0
Jenkins_Metrics1.2.01.3.0
Jenkins_Troubleshooter1.2.01.3.0
Juniper_Mist_AP_Beacon1.2.01.3.0
Juniper_Mist_AP_Health1.4.01.5.0
Juniper_Mist_AP_Interfaces1.3.01.4.0
Juniper_Mist_AP_Performance1.3.01.4.0
Juniper_Mist_AP_Radios1.2.01.3.0
Juniper_Mist_API1.3.01.4.0
Juniper_Mist_SDWAN_Edge_Health1.6.01.7.0
Juniper_Mist_SDWAN_Edge_Performance1.6.01.7.0
Juniper_Mist_Switch_Health1.3.01.4.0
Juniper_Mist_Switch_Performance1.3.01.4.0
Kubernetes_Nginx_IngressController1.1.01.2.0
Linux_OpenMetrics_CPU1.2.01.3.0
Linux_OpenMetrics_Disks1.1.01.2.0
Linux_OpenMetrics_Filesystems1.1.01.2.0
Linux_OpenMetrics_Memory1.1.01.2.0
Linux_OpenMetrics_NetworkInterfaces1.1.01.2.0
Linux_OpenMetrics_System1.2.01.3.0
Linux_OpenMetrics_Watchdog1.1.01.2.0
Linux_PSI1.4.01.5.0
Linux_SSH_BlockDevicePerformance1.9.01.10.0
Linux_SSH_CGroups1.4.01.5.0
Linux_SSH_CPUCores1.8.01.9.0
Linux_SSH_CPUMemory2.1.02.2.0
Linux_SSH_Filesystems1.13.01.14.0
Linux_SSH_NetworkInterfaces1.11.01.12.0
Linux_SSH_ServiceStatus1.10.01.11.0
Linux_SSH_TCPUDP1.4.01.5.0
Linux_SSH_Uptime1.8.01.9.0
LLDP_Neighbors1.5.01.6.0
LogicMonitor_Collector_Snippets1.7.01.8.0
Microsoft_SQLServer_AlwaysOnAvailabilityGroups2.9.02.10.0
Microsoft_SQLServer_AlwaysOnAvailabilityReplicas2.9.02.10.0
Microsoft_SQLServer_AlwaysOnDatabaseReplicaCluster2.8.02.9.0
Microsoft_SQLServer_AlwaysOnDatabaseReplicas2.8.02.9.0
Microsoft_SQLServer_AlwaysOnDatabaseStatus1.3.01.4.0
Microsoft_SQLServer_BackupAge1.4.01.5.0
Microsoft_SQLServer_ConnectionStatus1.2.01.3.0
Microsoft_SQLServer_DatabaseFiles1.5.01.6.0
Microsoft_SQLServer_Databases2.15.02.16.0
Microsoft_SQLServer_DatabaseStorage1.6.01.7.0
Microsoft_SQLServer_MonitorUser1.3.01.4.0
Microsoft_SQLServer_SystemJobs3.14.03.15.0
Microsoft_SQLServer_Troubleshooter1.13.01.14.0
Microsoft_Windows_Cluster_Resources1.4.01.5.0
MongoDB_Server_Databases1.6.01.7.0
MongoDB_Server_Overview1.5.01.6.0
MongoDB_Server_Replication1.6.01.7.0
NetApp_Cluster_CIFS3.2.03.3.0
NetApp_Cluster_GlobalPerformance3.3.03.4.0
NetApp_Cluster_Interfaces3.2.03.3.0
NetApp_Cluster_Nodes3.2.03.3.0
NetApp_Cluster_PSU3.2.03.3.0
NetApp_Cluster_QTree3.2.03.3.0
NetApp_Cluster_StorageAdapters3.2.03.3.0
NetApp_Cluster_SVM3.3.03.4.0
NetApp_Cluster_SVMPeers3.2.03.3.0
NetApp_Cluster_Volumes3.2.03.3.0
Nimble_SSH_VolumeUsage1.0.01.1.0
Nimble_Volume_Latency1.8.01.9.0
Oracle_Database_ASMStorage1.3.01.4.0
Oracle_Database_BlockedSessionOverview1.7.01.8.0
Oracle_Database_BlockedSessions1.5.01.6.0
Oracle_Database_ConnectionStatus1.4.01.5.0
Oracle_Database_DatafileStatus1.2.01.3.0
Oracle_Database_DiskUsage1.1.01.2.0
Oracle_Database_FRAUtilization1.1.01.2.0
Oracle_Database_IndividualSchemaSize1.5.01.6.0
Oracle_Database_LibraryCache1.6.01.7.0
Oracle_Database_LongOperations1.6.01.7.0
Oracle_Database_MonitorUser1.5.01.6.0
Oracle_Database_ResourceLimits1.6.01.7.0
Oracle_Database_RMANBackupAsyncIOByType1.7.01.8.0
Oracle_Database_RMANBackupSetsAge1.3.01.4.0
Oracle_Database_RMANBackupSyncIOByType1.7.01.8.0
Oracle_Database_RMANLatestBackupFiles1.7.01.8.0
Oracle_Database_RMANLatestBackupJobByType1.8.01.9.0
Oracle_Database_SessionsWaiting_LockRelease1.5.01.6.0
Oracle_Database_SystemMetrics1.4.01.5.0
Oracle_Database_SystemStats1.7.01.8.0
Oracle_Database_TableSpaceStatus1.5.01.6.0
Oracle_Database_TableSpaceUsageMaxGrowth1.5.01.6.0
Oracle_Database_Troubleshooter1.5.01.6.0
Oracle_MySQL_ConnectionStatus1.3.01.4.0
Oracle_MySQL_Databases1.0.01.1.0
Oracle_MySQL_Innodb1.1.01.2.0
Oracle_MySQL_ReplicaStatus1.0.01.1.0
Oracle_MySQL_Source1.0.01.1.0
Oracle_MySQL_Status1.1.01.2.0
Oracle_MySQL_TableSizes1.0.01.1.0
Oracle_MySQL_Troubleshooter1.0.01.1.0
OSPF_Neighbors1.13.01.14.0
PaloAlto_Prisma_SDWAN_EdgeHealth1.4.01.5.0
PaloAlto_Prisma_SDWAN_EdgePerformance1.1.01.2.0
PaloAlto_Prisma_SDWAN_Overlay1.3.01.4.0
PaloAlto_Prisma_SDWAN_Underlay1.4.01.5.0
Puppet_Agent_LastRunMetrics1.2.01.3.0
Puppet_Profiler_Statistics1.1.01.2.0
Puppet_Server_JRuby_Statistics1.1.01.2.0
Puppet_Server_JVM_GC1.1.01.2.0
Puppet_Server_JVM_MemoryPools1.1.01.2.0
Puppet_Server_JVM_NIOBufferPools1.1.01.2.0
Puppet_Server_JVM_Resources1.1.01.2.0
Puppet_Server_Routes_Statistics1.1.01.2.0
SAP_HANA_BackupAge1.4.01.5.0
SAP_HANA_Connections1.4.01.5.0
SAP_HANA_DatabaseMemoryUse1.4.01.5.0
SAP_HANA_DiskUsage1.4.01.5.0
SAP_HANA_HostResourceUtilization1.4.01.5.0
SAP_HANA_ServiceStatus1.4.01.5.0
SAP_HANA_SystemDatabaseAvailability1.3.01.4.0
SAP_HANA_TableSizeOnDisk1.4.01.5.0
SAP_HANA_Troubleshooter1.3.01.4.0
SilverPeak_Orchestrator_Appliances2.1.02.2.0
SilverPeak_Orchestrator_Disks2.1.02.2.0
SilverPeak_Orchestrator_DiskUsage2.1.02.2.0
SilverPeak_Orchestrator_Info2.2.02.3.0
SilverPeak_Orchestrator_Tunnels2.2.02.3.0
SSL_Certificate_Chains1.3.01.4.0
SSL_Certificates1.12.01.13.0
Ubiquiti_UniFiAP_Performance1.0.01.1.0
Ubiquiti_UniFiAP_Radios1.0.01.1.0
Ubiquiti_UniFiAP_SSIDs1.1.01.2.0
Versa_SDWAN_API1.0.01.1.0
Versa_SDWAN_ApplianceHealth1.0.01.1.0
Versa_SDWAN_ApplianceInterfaces1.0.01.1.0
Versa_SDWAN_AppliancePerformance1.0.01.1.0
Versa_SDWAN_Tunnels1.0.01.1.0
Viptela_OSPF_Neighbors1.0.01.1.0
VMware_ESXi_CPU1.4.01.5.0
VMware_ESXi_DatastoreThroughput1.2.01.3.0
VMware_ESXi_DatastoreUsage1.2.01.3.0
VMware_ESXi_Disks1.2.01.3.0
VMware_ESXi_HardwareHealthSensor1.4.01.5.0
VMware_ESXi_LogicalProcessors1.2.01.3.0
VMware_ESXi_Memory1.2.01.3.0
VMware_ESXi_NetworkInterfaces1.3.01.4.0
VMware_ESXi_NetworkState1.3.01.4.0
VMware_ESXi_Power1.2.01.3.0
VMware_ESXi_SystemHealthSensor1.3.01.4.0
VMware_ESXi_VirtualMachineDiskCapacity1.1.01.2.0
VMware_ESXi_VirtualMachinePerformance1.3.01.4.0
VMware_ESXi_VirtualMachineSnapshots1.1.01.2.0
VMware_ESXi_VirtualMachineStatus1.4.01.5.0
VMware_LM_Troubleshooter3.3.03.4.0
VMware_SDWAN_BGP_Sessions1.1.01.2.0
VMware_SDWAN_Health1.2.01.3.0
VMware_SDWAN_Interfaces1.6.01.7.0
VMware_SDWAN_Performance1.1.01.2.0
VMware_SDWAN_Tunnels1.3.01.4.0
VMware_vCenterAppliance_Backup1.3.01.4.0
VMware_vCenterAppliance_CPU1.3.01.4.0
VMware_vCenterAppliance_DiskPerformance1.3.01.4.0
VMware_vCenterAppliance_FileSystemPartitions1.3.01.4.0
VMware_vCenterAppliance_FileSystemSwap1.3.01.4.0
VMware_vCenterAppliance_HealthStatus1.3.01.4.0
VMware_vCenterAppliance_HighAvailability1.1.01.2.0
VMware_vCenterAppliance_Memory1.3.01.4.0
VMware_vCenterAppliance_NetworkInterfaces1.3.01.4.0
VMware_vCenterAppliance_Power1.1.01.2.0
VMware_vCenterAppliance_Services1.2.01.3.0
VMware_VeloCloud_EdgeLinkEventQuality1.10.01.11.0
VMware_vSphere_Clusters1.1.01.2.0
VMware_vSphere_DatastoreClusters1.1.01.2.0
VMware_vSphere_DatastoreStatus1.2.01.3.0
VMware_vSphere_DatastoreThroughput1.2.01.3.0
VMware_vSphere_DatastoreUsage1.5.01.6.0
VMware_vSphere_HighAvailability1.2.01.3.0
VMware_vSphere_HostStatus1.3.01.4.0
VMware_vSphere_NetworkState1.2.01.3.0
VMware_vSphere_ResourcePools1.1.01.2.0
VMware_vSphere_VirtualMachineDiskCapacity1.2.01.3.0
VMware_vSphere_VirtualMachineNetworkInterface1.2.01.3.0
VMware_vSphere_VirtualMachinePerformance1.4.01.5.0
VMware_vSphere_VirtualMachineSnapshots1.4.01.5.0
VMware_vSphere_VirtualMachineStatus1.4.01.5.0
WinIf-1.6.01.7.0

PropertySource Modules

PropertySource NameIncompatible Versions
(earlier than or equal to)
Compatible Version
(later than or equal to)
addCategory_Aruba_ClearPass1.0.01.1.0
addCategory_ArubaEdgeConnectSDWAN1.2.01.3.0
addCategory_Cato_SDWAN1.1.01.2.0
addCategory_Cisco_Catalyst_Center_Device1.2.01.3.0
addCategory_Cisco_Catalyst_SDWAN1.2.01.3.0
addCategory_CiscoCUCMAPI1.2.01.3.0
addCategory_Cisco_DNAC1.3.01.4.0
addCategory_Cisco_Meraki_Device1.12.01.13.0
addCategory_Cisco_UCS1.9.01.10.0
addCategory_Cisco_vManage2.1.02.2.0
addCategory_Cohesity1.8.01.9.0
addCategory_DellEMC_PowerStore1.2.01.3.0
addCategory_EMC_Avamar1.1.01.2.0
addCategory_EMC_VNX1.0.01.1.0
addCategory_Jenkins1.2.01.3.0
addCategory_Juniper_Mist_Device1.4.01.5.0
addCategory_Linux_SSH1.13.01.14.0
addCategory_LinuxOpenMetrics1.3.01.4.0
addCategory_LinuxPSI1.4.01.5.0
addCategory_Meraki_API1.16.01.17.0
addCategory_MongoDB1.4.01.5.0
addCategory_NetApp3.3.03.4.0
addCategory_OracleMySQL1.1.01.2.0
addCategory_PaloAlto_PrismaSDWAN1.3.01.4.0
addCategory_PowerMax2.2.02.3.0
addCategory_PowerSwitchNSeries1.1.01.2.0
addCategory_Puppet1.2.01.3.0
addCategory_SAP_HANA1.3.01.3.0
addCategory_TopoSwitch2.10.02.11.0
addCategory_UbiquitiUniFiAP1.0.01.1.0
addCategory_vCenter1.1.01.0.0
addCategory_Versa_SDWAN_Appliance1.1.01.2.0
addCategory_VMwareSDWAN1.2.01.3.0
addERI_ArubaEdgeConnectSDWAN1.1.01.2.0
addERI_BarracudaLoadBalancer2.1.02.2.0
addERI_BGP2.4.02.5.0
addERI_Cato_SDWAN1.0.01.1.0
addERI_Cisco3.14.03.13.0
addERI_Cisco_ASA2.2.02.3.0
addERI_Cisco_Catalyst_Center_Device1.1.01.2.0
addERI_Cisco_Catalyst_SDWAN1.1.01.2.0
addERI_Cisco_DNAC2.1.02.2.0
addERI_Cisco_EIGRP2.4.02.5.0
addERI_Cisco_HyperFlex2.1.02.2.0
addCategory_Cisco_ISE_MNT1.1.01.2.0
addERI_Cisco_ISIS1.5.01.6.0
addERI_Cisco_Meraki_Device1.5.01.6.0
addERI_Cisco_SDWAN2.1.02.2.0
addERI_Cisco_UCS2.7.02.8.0
addERI_Cisco_vManage3.1.03.2.0
addERI_Device2.13.02.14.0
addERI_DockerCollector1.1.01.2.0
addERI_EMC_ECS_Cluster2.1.02.2.0
addERI_EMC_ECS_Node2.1.02.2.0
addERI_ESXi3.1.03.2.0
addERI_F52.2.02.3.0
addERI_Fortinet_FortiGate2.3.02.4.0
addERI_HyperV2.1.02.2.0
addERI_ISIS2.6.02.7.0
addERI_Juniper_Mist_Device1.3.01.4.0
addERI_Kubernetes1.2.01.3.0
addERI_Kubernetes_ClusterRole1.2.01.3.0
addERI_Kubernetes_Node2.4.02.5.0
addERI_Kubernetes_Pod2.3.02.4.0
addERI_Kubernetes_Role1.2.01.3.0
addERI_Kubernetes_Service2.3.02.4.0
addERI_Kubernetes_ServiceAccount1.2.01.3.0
addERI_Linux2.15.02.16.0
addERI_Meraki3.1.03.2.0
addERI_Meraki_Device1.0.01.1.0
addERI_Meraki_Org1.1.01.2.0
addERI_NetApp2.3.02.4.0
addERI_Netscaler2.2.02.3.0
addERI_OSPF2.3.02.4.0
addERI_PaloAlto2.4.02.5.0
addERI_PaloAlto_PrismaSDWAN1.1.01.2.0
addERI_PureStorage2.3.02.4.0
addERI_SilverPeak_Orchestrator1.3.01.4.0
addERI_Ubiquiti2.3.02.4.0
addERI_vCenter3.1.03.2.0
addERI_Versa_SDWAN1.1.01.2.0
addERI_VMware_NSXT1.1.01.2.0
addERI_VMware_SDWAN1.0.01.1.0
addERI_VMware_VeloCloud2.1.02.2.0
addERI_Windows2.8.02.9.0
ConfigCheck_1_SFTP3.5.03.6.0
ConfigCheck_2_SCP3.5.03.6.0
ConfigCheck_3_Exec3.8.03.9.0
Linux_OpenMetrics_BasicInfo1.2.01.3.0
Linux_SSH_Info1.10.01.11.0
Microsoft_SQLServer_Connections1.25.01.26.0
NetApp_System_Info1.5.01.6.0
Oracle_Database_Names1.10.01.11.0
VMware_vSphere_Info1.2.01.3.0

TopologySource Modules

TopologySource NameIncompatible Versions
(earlier than or equal to)
Compatible Version
(later than or equal to)
Aruba_EdgeConnect_SDWAN_Topology1.0.01.1.0
BarracudaLoadBalancer_HA1.5.01.6.0
BGP_Topology1.11.01.12.0
Cisco_ASA_L2_HA1.6.01.7.0
Cisco_Catalyst_Center_Topology1.2.01.3.0
Cisco_Catalyst_SDWAN_Topology1.1.01.2.0
Cisco_DNAC_Topology1.6.01.7.0
Cisco_EIGRP1.6.01.7.0
Cisco_HSRP_L2_HA1.8.01.9.0
Cisco_HyperFlex_Topology1.6.01.7.0
Cisco_ISIS_Topology1.3.01.4.0
Cisco_Meraki_Topology1.8.01.9.0
Cisco_Multicast_Topology2.3.02.4.0
Cisco_SDWAN_Topology2.2.02.3.0
Cisco_UCS_Topology1.11.01.12.0
Cisco_Wireless1.10.01.11.0
Docker_Topology1.2.01.3.0
EMC_ECS_Topology1.5.01.6.0
F5_L2_HA1.6.01.7.0
Fortinet_FortiGate_HA1.4.01.5.0
Fortinet_FortiGate_SDWAN1.6.01.7.0
ISIS_Topology1.5.01.6.0
Juniper_Mist_Topology1.2.01.3.0
Kubernetes_ClusterRoleBinding_Topology1.4.01.5.0
Kubernetes_ConfigMap_Topology1.0.01.1.0
Kubernetes_Helm_Topology1.1.01.2.0
Kubernetes_Netpol_Topology1.4.01.5.0
Kubernetes_Node_KSM_Topology1.3.01.4.0
Kubernetes_Node_Topology1.10.01.11.0
Kubernetes_PDB_Topology1.4.01.5.0
Kubernetes_Pod_KSM_Topology1.3.01.4.0
Kubernetes_Pod_Topology1.10.01.11.0
Kubernetes_PV_Topology1.4.01.5.0
Kubernetes_PVC_Topology1.4.01.5.0
Kubernetes_RoleBinding_Topology1.3.01.4.0
Kubernetes_Secret_Topology1.0.01.1.0
Kubernetes_Service_Topology1.12.01.13.0
Kubernetes_ServiceAccount_Topology1.0.01.1.0
Meraki_Cloud_Topology2.10.02.11.0
Meraki_Org_Topology1.1.01.2.0
NetApp_7mode_Topology1.9.01.10.0
NetApp_Cluster_Topology1.8.01.9.0
Netscaler_HA1.6.01.7.0
Networking_L2_snmpSwitch2.48.02.49.0
Networking_L2_snmpSwitch_Peak1.6.01.7.0
OSPF_Topology1.12.01.13.0
PaloAlto_L2_HA1.13.01.14.0
PaloAlto_PrismaSDWAN_Topology1.1.01.2.0
PureStorage_Topology1.5.01.6.0
SilverPeak_Orchestrator_Topology1.3.01.4.0
Ubiquiti_UniFi_Wireless1.7.01.8.0
Versa_SDWAN_Topology1.0.01.1.0
VMware_NSXT_Topology1.1.01.2.0
VMware_SDWAN_Topology1.0.01.1.0
VMware_vCenter_Cluster_Topology2.2.02.3.0
VMware_vCenter_Datastore_Topology2.2.02.3.0
VMware_VeloCloud_Topology1.5.01.6.0
VMware_vSphere_Network_Topology1.1.01.2.0
VMware_vSphere_VirtualMachine_Topology1.1.01.2.0

ConfigSources Modules

ConfigSource NameIncompatible Versions
(less than or equal to)
Compatible Version
(greater than or equal to)
Microsoft_SQLServer_DatabaseNames1.2.01.3.0
SCP_Dynamic2.6.02.7.0
SCP_Standard2.10.02.11.0
SFTP_Dynamic2.6.02.7.0
SFTP_Files1.5.01.6.0
SFTP_Standard2.10.02.11.0
SSH_Exec_Dynamic2.9.02.10.0
SSH_Exec_Standard2.14.02.15.0

LogSources Modules

LogSource NameIncompatible Versions
(earlier than or equal to)
Compatible Version
(later than or equal to)
Cisco Catalyst SDWAN Alarms1.2.01.3.0
Cisco_Catalyst_Center_Issues1.2.01.3.0
Meraki Assurance Alerts1.1.01.2.0
Meraki Network Events1.4.01.3.0
Meraki Security Appliance Events1.2.01.3.0
VMware SDWAN Alerts1.1.01.2.0

EventSources Modules

EventSource NameIncompatible Versions
(earlier than or equal to)
Compatible Version
(later than or equal to)
Cisco DNAC Issues1.6.01.7.0
Cohesity_DataPlatform_Alerts1.7.01.8.0
Jenkins Health1.2.01.3.0
PaloAlto_FW_ThreatAnalysis_Events1.3.01.4.0
PowerStore Alerts1.4.01.5.0