NSClient data collection only reads the first <nsclient-collection> tag
Description
There's a bug in the search for the NSClientCollection that matches the desired name. The current code does the following:
public NsclientCollection getNSClientCollection(String collectionName) { NsclientCollection[] collections = m_config.getNsclientCollection(); NsclientCollection collection = null; for (NsclientCollection coll : collections) { if (coll.getName().equalsIgnoreCase(collectionName)) collection = coll; break; } if (collection == null) { throw new IllegalArgumentException("getNSClientCollection: collection name: " collectionName" specified in collectd configuration not found in nsclient collection configuration."); } return collection; }
What happens is that the break always executes after the first item in the collection array. Thus if the first item wasn't the one you were looking for, the method would fail indicating the item isn't in the collection array, even if it was one of the later items in the array. The following is a pretty obvious and trivial fix that should hopefully get approved quickly:
public NsclientCollection getNSClientCollection(String collectionName) { NsclientCollection[] collections = m_config.getNsclientCollection(); NsclientCollection collection = null; for (NsclientCollection coll : collections) { if (coll.getName().equalsIgnoreCase(collectionName)) { collection = coll; break; } } if (collection == null) { throw new IllegalArgumentException("getNSClientCollection: collection name: " collectionName" specified in collectd configuration not found in nsclient collection configuration."); } return collection; }
Environment
Windows, but should also apply with Linux
Acceptance / Success Criteria
None
Lucidchart Diagrams
Activity
Show:
Benjamin Reed March 10, 2011 at 8:16 AM
That is, indeed, a stupid and trivial bug. Good catch. Fixed.
There's a bug in the search for the NSClientCollection that matches the desired name.
The current code does the following:
public NsclientCollection getNSClientCollection(String collectionName) {
NsclientCollection[] collections = m_config.getNsclientCollection();
NsclientCollection collection = null;
for (NsclientCollection coll : collections) {
if (coll.getName().equalsIgnoreCase(collectionName)) collection = coll;
break;
}
if (collection == null) {
throw new IllegalArgumentException("getNSClientCollection: collection name: "
collectionName" specified in collectd configuration not found in nsclient collection configuration.");
}
return collection;
}
What happens is that the break always executes after the first item in the collection array. Thus if the first item wasn't the one you were looking for, the method would fail indicating the item isn't in the collection array, even if it was one of the later items in the array.
The following is a pretty obvious and trivial fix that should hopefully get approved quickly:
public NsclientCollection getNSClientCollection(String collectionName) {
NsclientCollection[] collections = m_config.getNsclientCollection();
NsclientCollection collection = null;
for (NsclientCollection coll : collections) {
if (coll.getName().equalsIgnoreCase(collectionName)) {
collection = coll;
break;
}
}
if (collection == null) {
throw new IllegalArgumentException("getNSClientCollection: collection name: "
collectionName" specified in collectd configuration not found in nsclient collection configuration.");
}
return collection;
}