Flow Datasource Cannot Be Filtered By Interface Resource ID
Activity

Jeff Gehlbach November 8, 2022 at 4:45 PM
Since GitHub does not seem to be hooked up to Jira for Helm yet, here's a link to the PR.

Alberto October 17, 2022 at 6:32 PM
Merged to Release-8.x

Alberto August 26, 2022 at 6:41 PM
Hi, I created this PR https://github.com/OpenNMS/opennms-helm/pull/499. I believe it resolves this issue with conflicts between datasources when using interfaceSnmp variables. I think some other conflicts are addressed in other PR's. But at least for this scenario it should handle it properly.

Will Keaney August 15, 2022 at 8:25 PM
Hi Alberto,
I need to be able to filter flows by interface without directly querying PostgreSQL for the ifIndex value.
I think that the Flows datasource filters should be able to accept the objects returned by the corresponding queries of itself and other Helm DS.
If the filter expects an Interface, then it should be able to accept the output of any Helm query that returns an Interface identifier.

Alberto August 15, 2022 at 8:14 PM
Hi
I'd like to confirm that what you need here is to be able to use the filter withIfIndex with snmpInterface snmpifindex and the snmpInterface name provided by the Performance DS and somehow map it to the corresponding ifindex for that particular node?
or there is more cases that need to be addressed?
The Flow Datasource's only interface-based filter is
withIfIndex(Integer ifIndex)
.None of the other Helm datasources return, or can be filtered to return, an ifIndex.
Flow DS filters should be able to accept entities returned by other Helm DS queries as template variables.
Steps to Reproduce:
Create a new dashboard with template variables for location, exporter, interfaceResource, exporterNodeId, and interfaceIfIndex
location is a query against Flow DS:
locations()
exporter is a nodeFilter query against Flow DS:
nodeFilter(location = '$location' and nodeLabel = '<label of exporter node>'
interfaceResource is a nodeResources query against Flow DS:
nodeResources($exporter, name, interfaceSnmp)
exporterNodeId is a postgresql query against the OpenNMS database for
SELECT nodeid FROM node WHERE foreignsource = split_part('$exporter',':',1) AND foreignid = split_part('$exporter',':',2);
interfaceIndex is a postgresql query against the OpenNMS database for
SELECT iface.snmpifindex FROM snmpinterface AS iface WHERE iface.nodeid = $exporterNodeId AND iface.snmpifname = '<name of interface>';
Create a Time Series graph panel with a query against the flow datasource for
applications includeOther() topN(0) withExporterNode($exporter) withGroupByInterval(1m) perSecond() toBits() withIfIndex($interfaceResource)
Observe that this query fails, because the flow datasource cannot resolve the interface from the resource name, id, or label.
Change the argument of
withIfIndex
to$interfaceIfIndex
Observe that the query works, because an integer ifIndex is supplied.