Maps: Periods (.) (or Full Stops ) in NodeLabel subsequently cause the created map ElementLabel to truncate at the first period

Description

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"

Environment

Version: 1.8.13-SNAPSHOT Server Time: Mon Aug 08 12:11:10 IST 2011 Client Time: Mon Aug 08 2011 12:11:10 GMT+0100 (IST) Java Version: 1.6.0_22 Sun Microsystems Inc. Java Virtual Machine: 20.0-b11 Sun Microsystems Inc. Operating System: Linux 2.6.37.6-0.5-desktop (amd64) Servlet Container: jetty/6.1.24 (Servlet Spec 2.5) User Agent: Mozilla/5.0 (X11; Linux x86_64; rv:5.0) Gecko/20100101 Firefox/5.0

Acceptance / Success Criteria

None

Lucidchart Diagrams

Activity

Show:

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?

Won't Fix

Details

Assignee

Reporter

Components

Affects versions

Priority

PagerDuty

Created August 8, 2011 at 7:15 AM
Updated June 23, 2016 at 3:49 PM
Resolved May 2, 2016 at 4:11 PM