Flow Datasource Cannot Be Filtered By Interface Resource ID

Description

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:

  1. Create a new dashboard with template variables for location, exporter, interfaceResource, exporterNodeId, and interfaceIfIndex

    1. location is a query against Flow DS: locations()

    2. exporter is a nodeFilter query against Flow DS: nodeFilter(location = '$location' and nodeLabel = '<label of exporter node>'

    3. interfaceResource is a nodeResources query against Flow DS: nodeResources($exporter, name, interfaceSnmp)

    4. 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);

    5. 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>';

  2. 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)

    1. Observe that this query fails, because the flow datasource cannot resolve the interface from the resource name, id, or label.

  3. Change the argument of withIfIndex to $interfaceIfIndex

    1. Observe that the query works, because an integer ifIndex is supplied.

Lucidchart Diagrams

Activity

Show:

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.

https://github.com/OpenNMS/opennms-helm/pull/543

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?

Done

Details

Assignee

Reporter

Fix versions

Sprint

HB Grooming Date

HB Backlog Status

Story Points

Components

Priority

PagerDuty

Created August 3, 2022 at 5:02 PM
Updated November 8, 2022 at 4:45 PM
Resolved October 17, 2022 at 6:32 PM
Loading...