Maps: Periods (.) (or Full Stops ) in NodeLabel subsequently cause the created map ElementLabel to truncate at the first period
Description
Environment
Acceptance / Success Criteria
Lucidchart Diagrams
Activity
Antonio Russo May 2, 2016 at 4:11 PM
SVG maps have been deleted. Use Topology Maps from Horizon 17
Patrick Tuite August 9, 2011 at 8:21 AM
This will always occur because of the code in MapProvisioningAdapter.java
<code>
private String getLabel(String FQDN) {
if (FQDN.indexOf(".")>0 && !validate(FQDN))
return FQDN.substring(0, FQDN.indexOf("."));
return FQDN;
}
private static final String IPADDRESS_PATTERN =
"^([01]?\\d\\d?|2[0-4]\\d|25[0-5])
." +
"([01]?\\d\\d?|2[0-4]\\d|25[0-5])
." +
"([01]?\\d\\d?|2[0-4]\\d|25[0-5])
." +
"([01]?\\d\\d?|2[0-4]
d|25[0-5])$";
/**
Validate ip address with regular expression
@param ip ip address for validation
@return true valid ip address, false invalid ip address
*/
private boolean validate(final String ip){
Pattern pattern = Pattern.compile(IPADDRESS_PATTERN);
Matcher matcher = pattern.matcher(ip);
return matcher.matches();
}
}
</code>
The method getLabel(FQDN) will truncate at the first "." unless the label is an IP address.
This is not particularly flexible though.
Any way of making this optional from opennms.properties?
Details
Assignee
UnassignedUnassignedReporter
Patrick TuitePatrick Tuite(Deactivated)Components
Affects versions
Priority
Major
Details
Details
Assignee
Reporter
Components
Affects versions
Priority
PagerDuty
PagerDuty Incident
PagerDuty
PagerDuty Incident
PagerDuty

Nodes added to their own Provisioning Groups.
Nodes are all names like: ptp.access.sitea-siteb, core.sitec.gw1, etc.
Map Provisioning Adapter will automatically add nodes to correct map but all Nodes show map display label as only ptp or core, etc.
The NodeLabel is being truncated at the first period when added to ElementLabel in element Table
Full NodeLabel shows for any node in map when cursor hovers over it.
sample from DB element Table
1006;1;"N";"access";"unspecified"
2212;3589;"N";"ptp";"switch"
2212;1;"N";"ptp";"unspecified"
2317;3590;"H";"ptp";"router"
2317;1;"N";"ptp";"unspecified"
1706;3590;"H";"ptp";"router"
1706;1;"N";"ptp";"unspecified"
2224;3590;"H";"ptp";"router"
2224;1;"N";"ptp";"unspecified"
2321;3590;"H";"ptp";"router"
2321;1;"N";"ptp";"unspecified"
889;3591;"N";"core";"switch"