Aruba EdgeConnect SD-WAN
Last updated on 11 November, 2024LogicMonitor’s Aruba EdgeConnect SD-WAN monitoring package leverages the appliance and orchestrator API to monitor EdgeConnect OS (ECOS) appliances. It is designed to monitor and alert on vital appliance SD-WAN health and performance metrics.
Fore more information about the Aruba EdgeConnect SD-WAN Appliance, see the REST API Monitoring Examples documentation from Aruba.
Compatibility
As of October 2023, LogicMonitor’s Aruba EdgeConnect SD-WAN package is known to be compatible with Appliance Version 9.0-9.3.
Requirements
- Collector version 32.400 or later
- Appliance username and password with read-only access set on the resource. For more information, see the Appliance User Accounts Tab documentation from Aruba.
Add Resources into Monitoring
The following methods are available for on-boarding Aruba EdgeConnect SD-WAN resources into monitoring:
- (Recommended) Advanced NetScan
For more information on NetScans, see What is a NetScan. - Manually Add Resources
Using the Advanced NetScan to add Resources
- Navigate to Modules > Exchange, and install the Aruba EdgeConnect SD-WAN modules. For a list of modules, see LogicModules in Package.
- Navigate to Resources > Add > Several Devices > Advanced NetScan.
The Add Advanced NetScan page is displayed. - Enter a name that you want to associate with this NetScan. For example, “Aruba SD-WAN Devices”.
- Select the Collector to run the NetScan.
For more information, see Collector Assignment in Enhanced Script Netscan. - Select Enhanced Script NetScan from the Method drop-down list.
- From the Enhanced Script section, select Device Credentials > Use custom credentials for this scan.
- Add the following properties that provide the NetScan with the required Aruba EdgeConnect SD-WAN credentials and change how and where the NetScan creates and organizes resources:
Property | Value | Required |
aruba.orchestrator.api.key | Orchestrator API Key with Read-Only permission. For more information, see to API Key Documentation | Yes |
aruba.orchestrator.host | Orchestrator IP OR FQDN. For more information, see to Locating Orchestrator Information | Yes |
lmaccess.id or logicmonitor.access.id | A LogicMonitor API access id to search for duplicate resources in the NetScan prior to adding them to the portal. For more information on portal monitoring, see LogicMonitor Portal Monitoring. | Yes |
lmaccess.key or logicmonitor.access.key | A LogicMonitor API key to search for duplicate resources in the NetScan prior to adding them to the portal. For more information on portal monitoring, see LogicMonitor Portal Monitoring. | Yes |
aruba.sdwan.org.folder | The name of the LogicMonitor Resource Group that this NetScan creates or uses if already existing. The value can be a nested child folder (for example, folder/folder/folder).This defaults to “Aruba EdgeConnect SDWAN”.This should not be assigned to a dynamic device group as those are not added by NetScans. For more information, see Device Groups Overview | No |
hostname.source | Allows for selection of the source of the hostname that is used by the NetScan. This is useful in preventing duplicate device creation when conflicts are found for existing resources. For more information, see NetScan Troubleshooting. | No |
- In the Filters section, use the following filter properties to omit specific Resources from discovery.
These filters behave the same way as Active Discovery filters. The following device level properties are automatically discovered and can be filtered on. Available filter operations include: Equal, NotEqual, GreaterThan, GreaterEqual, LessThan, LessEqual, Contain, NotContain, Exist, NotExist, RegexMatch, RegexNotMatch.
Recommendation:To verify desired functionality, start with a specific filter of some devices you want to monitor, then incrementally change the filter operations or values to onboard monitored resources in stages.
Warning:If you do not configure filters, NetScan attempts to add all discovered Aruba EdgeConnect SD-WAN Devices as discrete LogicMonitor Resources.
Property | Value |
aruba.appliance.serial.number | Appliance serial number. |
aruba.appliance.site | Appliance site name. |
aruba.appliance.device.name | Appliance device name. |
aruba.appliance.tags | Appliance tags. |
- Select Embed a Groovy script and embed the following script:
Warning: Do not edit the script. Edited Enhanced Script NetScans are not supported. If the LogicMonitor-provided script is edited, LogicMonitor Support can require you to overwrite your edits with the supported script if problems arise. The Enhanced Script NetScan limits LM Envision Resource creation to <= 600 per hour. To create more than 600 Resources, schedule the NetScan to recur each hour until all resources are added. 9. In the Schedule section, select Run this NetScan on a schedule. For dynamic environments, you can schedule the NetScan to run as frequently as hourly.
/*******************************************************************************
* © 2007-2024 - LogicMonitor, Inc. All rights reserved.
******************************************************************************/
import com.santaba.agent.groovy.utils.GroovyScriptHelper as GSH
import com.logicmonitor.mod.Snippets
import com.santaba.agent.AgentVersion
import java.text.DecimalFormat
import groovy.json.JsonOutput
import groovy.json.JsonSlurper
// To run in debug mode, set to true
Boolean debug = false
Boolean log = false
// Set props object based on whether or not we are running inside a netscan or debug console
def props
try {
hostProps.get("system.hostname")
props = hostProps
debug = true // set debug to true so that we can ensure we do not print sensitive properties
}
catch (MissingPropertyException) {
props = netscanProps
}
// Required properties
def creds = props.get("aruba.orchestrator.api.key")
def host = props.get("aruba.orchestrator.host")
// Optional properties
def rootFolder = props.get("aruba.sdwan.org.folder") ?: "Aruba EdgeConnect SDWAN"
Boolean skipDeviceDedupe = props.get("skip.device.dedupe", "false").toBoolean()
String hostnameSource = props.get("hostname.source")?.toLowerCase()?.trim() ?: ""
// Retrieve the collector version
Integer collectorVersion = AgentVersion.AGENT_VERSION.toInteger()
// Bail out early if we don't have the correct minimum collector version to ensure netscan runs properly
if (collectorVersion < 32400) {
def formattedVer = new DecimalFormat("00.000").format(collectorVersion / 1000)
throw new Exception(" Upgrade collector running netscan to 32.400 or higher to run full featured enhanced script netscan. Currently running version ${formattedVer}.")
}
if (!creds || !host) {
throw new Exception("Must provide aruba.orchestrator.api.key and aruba.orchestrator.host to run this script. Verify necessary fields have been provided in NetScan properties.")
}
// Load the snippets
def modLoader = GSH.getInstance(GroovySystem.version).getScript("Snippets", Snippets.getLoader()).withBinding(getBinding())
def lmEmit = modLoader.load("lm.emit", "1")
def lmDebug = modLoader.load("lm.debug", "1").debugSnippetFactory((PrintStream) out, debug, log, "aruba-sdwan")
def http = modLoader.load("proto.http", "0").httpSnippetFactory(props)
def cache = modLoader.load("lm.cache", "0").cacheSnippetFactory(lmDebug, "aruba-sdwan")
def arubaSnippet = modLoader.load("aruba.sdwan", "0").arubaSdwanFactory(props, lmDebug, cache, http)
// Only initialize lmApi snippet class if customer has not opted out
def lmApi
if (!skipDeviceDedupe) {
def lmApiSnippet = modLoader.load("lm.api", "0")
lmApi = lmApiSnippet.lmApiSnippetFactory(props, http, lmDebug)
}
// CSV file containing headers "Site ID" and "Site Name" to customize group names created
// Save in /usr/local/logicmonitor/agent/bin directory (Linux)
// or C:\Program Files\LogicMonitor\Agent\bin directory (Windows)
String csvFile = props.get("aruba.sdwan.sites.csv")
// Convert to map with site ID as key
Map siteInfo = null
if (csvFile) {
siteInfo = processCSV(csvFile)
}
// Get information about devices that already exist in LM portal
List fields = ["name", "currentCollectorId", "displayName"]
Map args = ["size": 1000, "fields": fields.join(",")]
def lmDevices
// But first determine if the portal size is within a range that allows us to get all devices at once
def pathFlag, portalInfo, timeLimitSec, timeLimitMs
if (!skipDeviceDedupe) {
portalInfo = lmApi.apiCallInfo("Devices", args)
timeLimitSec = props.get("lmapi.timelimit.sec", "60").toInteger()
timeLimitMs = (timeLimitSec) ? Math.min(Math.max(timeLimitSec, 30), 120) * 1000 : 60000
// Allow range 30-120 sec if configured; default to 60 sec
if (portalInfo.timeEstimateMs > timeLimitMs) {
lmDebug.LMDebugPrint("Estimate indicates LM API calls would take longer than time limit configured. Proceeding with individual queries by display name for each device to add.")
lmDebug.LMDebugPrint("\t${portalInfo}\n\tNOTE: Time limit is set to ${timeLimitSec} seconds. Adjust this limit by setting the property lmapi.timelimit.sec. Max 120 seconds, min 30 seconds.")
pathFlag = "ind"
} else {
lmDebug.LMDebugPrint("Response time indicates LM API calls will complete in a reasonable time range. Proceeding to collect info on all devices to cross reference and prevent duplicate device creation.\n\t${portalInfo}")
pathFlag = "all"
lmDevices = lmApi.getPortalDevices(args)
}
}
// Get your data and build your list of resources
List<Map> resources = []
def now = new Date()
def dateFormat = "yyyy-MM-dd'T'HH:mm:ss.s z"
TimeZone tz = TimeZone.getDefault()
Map duplicateResources = [
"date" : now.format(dateFormat, tz),
"message" : "Duplicate display names found within LogicMonitor portal wherein hostname in LM does not match hostname in Netscan output. Refer to documentation for how to resolve name collisions using 'hostname.source' netscan property.",
"total" : 0,
"resources": []
]
def appliancesData = arubaSnippet.httpGet("appliance")
def orchestratorInfo = arubaSnippet.httpGet("gmsserver/info")
appliancesData?.each { device ->
String displayName = device.hostName
def collectorId
def ip = device.ip
// Check for existing device in LM portal with this displayName; set to false initially and update to true when dupe found
def deviceMatch = false
// If customer has opted out of device deduplication checks, we skip the lookups where we determine if a match exists and proceed as false
if (!skipDeviceDedupe) {
if (pathFlag == "ind") {
deviceMatch = lmApi.findPortalDevice(displayName, args)
} else if (pathFlag == "all") {
deviceMatch = lmApi.checkExistingDevices(displayName, lmDevices)
}
}
if (deviceMatch) {
if (ip != deviceMatch.name) {
def collisionInfo = [
(displayName): [
"Netscan" : [
"hostname": ip
],
"LM" : [
"hostname" : deviceMatch.name,
"collectorId": deviceMatch.currentCollectorId
],
"Resolved": false
]
]
if (hostnameSource == "lm" || hostnameSource == "logicmonitor") {
ip = deviceMatch.name
collectorId = deviceMatch.currentCollectorId
deviceMatch = false
collisionInfo[displayName]["Resolved"] = true
} else if (hostnameSource == "netscan") {
collisionInfo[displayName]["Resolved"] = true
displayName = "${displayName} - ${ip}"
deviceMatch = false
}
duplicateResources["resources"].add(collisionInfo)
} else {
deviceMatch = false
}
}
def groupName
def site = device.site
if (siteInfo) {
if (siteInfo[site]) {
groupName = ["${rootFolder}/${siteInfo[site]["SiteFolder"]}"]
if (siteInfo[site]["CollectorId"]) {
collectorId = "${siteInfo[site]["CollectorId"]}"
}
}
} else {
groupName = device.site ? ["${rootFolder}/${device.site}"] : ["${rootFolder}"]
}
Map resource = [
"hostname" : ip,
"displayname": displayName,
"groupName" : groupName,
"hostProps" : [
"aruba.appliance.nepk" : device?.nePk,
"aruba.orchestrator.host" : host,
"aruba.orchestrator.api.key" : creds,
"aruba.orchestrator.serial.number" : orchestratorInfo?.serialNumber,
"aruba.orchestrator.model" : orchestratorInfo?.model,
"aruba.orchestrator.software.version": orchestratorInfo?.release,
"aruba.orchestrator.host.name" : orchestratorInfo?.hostName,
"aruba.orchestrator.platform" : orchestratorInfo?.platform,
"aruba.orchestrator.os" : orchestratorInfo?.osRev ?: orchestratorInfo?.release
]
]
def filterProps = [
"aruba.appliance.serial.number": device?.serial,
"aruba.appliance.site" : device?.site,
"aruba.appliance.device.name" : device?.hostName,
"aruba.appliance.tags" : device?.tagsList
]
filterProps.each { k, v ->
if (v) {
Map hostProps = resource.get("hostProps")
hostProps.put(k, v)
}
}
if (collectorId) {
resource["collectorId"] = collectorId
if (duplicateResources["resources"][displayName]["Netscan"][0]) {
duplicateResources["resources"][displayName]["Netscan"][0]["collectorId"] = collectorId
}
}
if (!deviceMatch) {
resources.add(resource)
}
}
// Output validated data in JSON format
lmEmit.resource(resources, debug)
// Report devices that already exist in LM via log file named after root folder
if (duplicateResources["resources"].size() > 0) {
def netscanDupLog = new File("../logs/NetscanDuplicates/${rootFolder.replaceAll(" ", "_")}.json")
new File(netscanDupLog.getParent()).mkdirs()
duplicateResources["total"] = duplicateResources["resources"].size()
def json = JsonOutput.prettyPrint(JsonOutput.toJson(duplicateResources))
netscanDupLog.write(json)
if (hostnameSource) {
lmDebug.LMDebug("${duplicateResources["resources"].size()} devices found that were resolved with hostname.source=${hostnameSource} in netscan output. See LogicMonitor/Agent/logs/NetscanDuplicates/${rootFolder.replaceAll(" ", "_")}.json for details.")
} else {
lmDebug.LMDebug("${duplicateResources["resources"].size()} devices found that were not reported in netscan output. See LogicMonitor/Agent/logs/NetscanDuplicates/${rootFolder.replaceAll(" ", "_")}.json for details.")
}
}
return 0
////////////////////////////////////////////////////////////// CSV PROCESSING METHODS ///////////////////////////////////////////////////////////
/**
* Sanitizes filepath and instantiates File object
* @param filename String
* @param fileExtension String
* @return File object using sanitized relative filepath
*/
File newFile(String filename, String fileExtension) {
// Ensure relative filepath is complete with extension type
def filepath
if (!filename.startsWith("./")) {
filepath = "./${filename}"
}
if (!filepath.endsWith(".${fileExtension}")) {
filepath = "${filepath}.${fileExtension}"
}
return new File(filepath)
}
/**
* Helper function to process CSV with site id and name info
* @param String filename Filename of the CSV containing user-defined site info
* @return Map siteInfo with site ID as the key and site name as the value
*/
Map processCSV(String filename) {
File cacheFile = newFile(filename, "csv")
def rows = cacheFile.readLines()*.split(",")
def siteInfo = [:]
// Verify whether headers are present and expected values
// Sanitize for casing and extra whitespaces while gathering headers
def maybeHeaders = rows[0]*.toLowerCase()*.trim()
if (maybeHeaders.contains("site folder name") && maybeHeaders.contains("site name")) {
Map headerIndices = [:]
maybeHeaders.eachWithIndex { val, i ->
headerIndices[val] = i
}
// Index values for headers to ensure we key the correct index regardless of order
def sn = headerIndices["site name"]
def colId = headerIndices["collector id"]
def sf = headerIndices["site folder name"]
// Remove headers from dataset
data = rows[1..-1]
// Build a map of common site names with site name as key
data.each { entry ->
siteInfo[entry[sn]] = [
"SiteFolder" : entry[sf],
"CollectorId": entry[colId]
]
}
}
// Bail out early if we don't have the expected headers in the provided CSV, we can't properly associate Site IDs with common names without clear headers
else {
throw new Exception(" Required headers not provided in CSV. Please provide \"Site Folder Name\" and \"Site Name\" (case insensitive). Headers provided: \"${rows[0]}\"")
}
return siteInfo
}
///////////////////////////////////////////////////////////////////// END //////////////////////////////////////////////////////////////////////
- Select Save or Save & Run.
After running the NetScan, review the history for the number of resources added, or for error messages if the NetScan does not create any resources.
Manually Adding Resources
- Create an Aruba EdgeConnect Organization device group.
For more information, see Adding Device Groups. - Add the devices to the Aruba Organization group.
- Add or verify that the following properties are set on the resources or under the Aruba EdgeConnect Organization Resource Group:
Property | Value |
aruba.appliance.user or silverpeak.user | Appliance username For more information, see the Appliance User Accounts Tab documentation from Aruba. |
aruba.appliance.pass or silverpeak.pass | Appliance password For more information, see the Appliance User Accounts Tab documentation from Aruba. |
system.hostname | The Appliance IP or FQDN |
For more information on setting properties, see Resource and Instance Properties.
Importing LogicModules
From the LogicMonitor public repository, import all Aruba EdgeConnect SD-WAN LogicModules.
If these LogicModules are already present, ensure you have the most recent versions.
After the LogicModules are imported (assuming all previous setup requirements have been met), data collection will automatically commence. For more information on importing modules, see LM Exchange.
Migration from Legacy LogicModules
These modules monitor Aruba EdgeConnect SD-WAN devices as discrete LogicMonitor Resources and are not in-place upgrades to Silver Peak (Legacy) modules. For more information, see Silver Peak Monitoring (Legacy).
Recommendation: Do not use these modules in parallel with Silver Peak (Legacy) modules (or other 3rd party monitoring solutions) to monitor the same Aruba EdgeConnect Devices in the same Aruba Networks. Doing so can cause errors and data gaps across both modules and third-party monitoring solutions. To mitigate risk, follow your organization’s change control processes.
Troubleshooting
- This package relies on collector script cache to continuously retrieve and store data from the Aruba EdgeConnect API module to minimize rate limiting constraints. For more information, see Collector Script Caching. If data gaps appear verify
Aruba_EdgeConnect_SDWAN_API
is running successfully and check script cache health in the LogicMonitor_Collector_ScriptCache DataSource. - This package requires access to each individual appliance to make API calls. If you are encountering 401 errors, verify that you are setting the appliance username and password. You do not need to add the orchestrator username and password. For more information, see the Appliance User Accounts Tab documentation from Aruba.
NetScan Troubleshooting
The NetScan for this suite can update existing devices in the portal to add relevant information retrieved from the Aruba API. It is also possible for the NetScan to create duplicate devices in the portal when a conflict exists where the display name is the same, but the value for system.hostname is different. To ensure devices are updated properly and duplicate devices are not created, this NetScan uses LogicMonitor’s API to query existing devices and report name conflicts discovered. This file can be accessed in the collector logs.
For more information on retrieving collector logs, see Collector Logging – Sending Logs to LogicMonitor.
The devices in this report are not reported to LogicMonitor as part of the NetScan output unless the NetScan has been configured with the property hostname.source. This property allows a user to resolve the name conflicts discovered by selecting the source of the hostname that is used in the NetScan output. Two possible hostname sources are determined by the following values:
- “lm” or “logicmonitor” Devices with name conflicts use the existing system.hostname in LogicMonitor to ensure a device in the portal is updated using the NetScan. This setting does not create a new device.
- “netscan” Devices with name conflicts maintain system.hostname determined in the NetScan script and update the display name reported to append –
<system.hostname>
to ensure it is unique and can be added to the portal. This option is beneficial if you do not have strict naming conventions and have multiple devices with the same display name.
Note:NetScans are not able to update the value of system.hostname
. NetScans can update display name, custom properties, and group assignments.
LogicModules in Package
LogicMonitor’s package for Aruba EdgeConnect SD-WAN consists of the following LogicModules. For full coverage, ensure all of the following LogicModules are imported into your LogicMonitor platform:
Display Name | Type | Description |
addCategory_ArubaEdgeConnectSDWAN | PropertySource | Adds system category ArubaEdgeConnectSDWANAppliance and auto properties with relevant device information. |
addERI_ArubaEdgeConnectSDWAN | PropertySource | Discover and add ERI’s for Aruba EdgeConnect SD-WAN resources. |
Aruba_EdgeConnect_SDWAN_Topology | TopologySource | Maps Aruba EdgeConnect SD-WAN tunnel topologies. |
EdgeConnect SDWAN API | DataSource | Handles all appliance level caching and API calls. |
EdgeConnect SDWAN BGP | DataSource | Monitors the status of an appliance’s BGP neighbors. |
EdgeConnect SDWAN Disk | DataSource | Monitors Aruba EdgeConnect Appliance disks at the appliance level. |
EdgeConnect SDWAN Health | DataSource | Monitors the health of each SD-WAN appliance. |
EdgeConnect SDWAN Interfaces | DataSource | Monitors the WAN/LAN interfaces of an appliance. |
EdgeConnect SDWAN Performance | DataSource | Monitors the performance of EdgeConnect SD-WAN appliances. |
EdgeConnect SDWAN Tunnels | DataSource | Monitor overlay tunnels for Aruba EdgeConnect SD-WAN Appliances. |
EdgeConnect Next Hops | DataSource | Monitors WAN next hops for Aruba Edge Connect SD-WAN Appliances. |
When setting static datapoint thresholds on the various metrics tracked by this package’s DataSources, LogicMonitor follows the technology owner’s best practice KPI recommendations.
Recommendation: If necessary, adjust these predefined thresholds to meet the unique needs of your environment. For more information on tuning datapoint thresholds, see Tuning Static Thresholds for Datapoints.