Issues
- Remove R-core Reference from Installation Instructions - Jesse eliminated the need to do that part and it is confusing.NMS-17856Dino Yancey
- Note IcmpMonitor's repsonse time is in microsNMS-17855Dino Yancey
- CVE-2024-29736: Update cxf-core to 3.6.4 or higherNMS-17854Christian Pape
- Add ZenithConnect table to store registration infoNMS-17851
- Duplicate Trivy IssuesNMS-17768Muhammad Talha
- FE: Get Meridian system ID from Rest API and include in Zenith Connect auth flowNMS-17767Scott Theleman
- FE: Fix issue with item showing up in legacy menuNMS-17766Resolved issue: NMS-17766Scott Theleman
- Provisioning of a Maven caching serverNMS-17757
- Setting KAFKA_RPC_ and KAFKA_SINK_ variables insufficient to disable ActiveMQ for minion containerNMS-17756
- Make DCB tftp port examples consistentNMS-17755Dino Yancey
- Add documentation to enable/disable Zenith Connect in properties fileNMS-17754Resolved issue: NMS-17754Scott Theleman
- Coretex timeseries metatags broken in 33.1.4NMS-17753Resolved issue: NMS-17753Muhammad Junaid
- Update PagerDuty Build to support 2024/33NMS-17752Dino Yancey
- Get Meridian system ID and return in Monitoring System APINMS-17751Resolved issue: NMS-17751Scott Theleman
- Rest API for getting active Zenith registrations/connectionsNMS-17750
- FE: Display list of currently active Zenith registrationsNMS-17749
- Use saved Zenith/Keycloak initial token in gRPC ConnectionNMS-17748
- Store keycloak token received during Zenith registration in SCV or DBNMS-17747
- Make grpc exporter compatible to run using in process server.NMS-17746Junaid Khan
- Task ExperienceNMS-17745
- Server https://maven.opennms.org/ was unreachableNMS-17744Resolved issue: NMS-17744Ronny Trommer
- Update Drift / proportional_sum to support Elasticsearch > 7.xNMS-17743Muhammad Junaid
- Modernize ElasticSearch SupportNMS-17742Chandra Gorantla
- FlowQueryService as part of UsageStatisticsReporter is failing on MacNMS-17741Resolved issue: NMS-17741Muhammad Junaid
- UsageStatisticsReporter oshi code may be failing on MacNMS-17740Resolved issue: NMS-17740Shahid Munir
- Issues in Alarm and Event DAO (Null reference and BigInteger conversion)NMS-17739Resolved issue: NMS-17739Shahid Munir
- Add Heartbeat support for SPOG ( Single Pane of Glass)NMS-17738Resolved issue: NMS-17738Chandra Gorantla
- Update OSHI library to 6.7.0NMS-17737Resolved issue: NMS-17737Muhammad Junaid
- Add support for Heartbeat in grpc exporter ( SPOG)NMS-17736Resolved issue: NMS-17736Naeem Afzal
- Update the Base image for Opennms-core, Minion and sentinelNMS-17735Resolved issue: NMS-17735Muhammad Talha
- Changes in NMS-17726 are not properly merged in foundation-2023, foundation-2024 and horizon 33.xNMS-17734Umair Khalid
- Support Modifications to Elasticsearch Templates at RuntimeNMS-17733Muhammad Wajahat Abbasi
- gRPC messaging not working when Trapd is enabled on the Core serverNMS-17732Christian Pape
- Zenith Connect UI POC (Meridian side)NMS-17731Resolved issue: NMS-17731Scott Theleman
- Zenith Connect (Meridian side)NMS-17730Scott Theleman
- Improvements for Trivy Scan Circleci PipelineNMS-17729Resolved issue: NMS-17729Muhammad Talha
- OpenNMS KarafStartupMonitor hangs on startupNMS-17728Resolved issue: NMS-17728Scott Theleman
- Grpc Exporter : Ability to disable BSM/ NMS-Inventory modulesNMS-17727Resolved issue: NMS-17727Chandra Gorantla
- Java Heap settings are not applied when Minion is running in a containerNMS-17726Resolved issue: NMS-17726Ronny Trommer
- Java Heap settings are not applied when Minion is running in a containerNMS-17725Resolved issue: NMS-17725Christian Pape
- Check for Protocol Error Cause and ResolveNMS-17724Tahir Abbasi
- Create GRPC Client Side TestsNMS-17723
- Create GRPC server Side TestsNMS-17722Junaid Khan
- Don't load snmp-metadata-adapter-configuration.xml by defaultNMS-17721Resolved issue: NMS-17721Christian Pape
- Alarm not cleared after Path Outage Node came back UPNMS-17720
- The dash character shows up as a question mark in News Feed panelNMS-17603
- DevOps: Investigate arm64 docker build failure impacting Foundation-2023NMS-17379Resolved issue: NMS-17379Morteza
- End to end testing for Event updates from Meridian to SPoGNMS-17378Resolved issue: NMS-17378Naeem Afzal
- Add support for Heartbeat in grpc exporter ( bsm)NMS-17377Resolved issue: NMS-17377Chandra Gorantla
- Create a copy of iText dependency (part of Jasperreport)NMS-17376
Add more flexibility to the syslog alarm northbound implementation
Description
Acceptance / Success Criteria
blocks
Lucidchart Diagrams
Activity
Alejandro GalueApril 2, 2016 at 9:07 AM
Yes
Ronny TrommerApril 1, 2016 at 9:19 PM
Seems to be fixed can we delete this branch? https://github.com/OpenNMS/opennms/tree/jira/HZN-563
Alejandro GalueDecember 21, 2015 at 4:02 PM
Pending:
Create JUnit test to verify the registration/unregistration of the northbounders to be sure they work.
Possible Enhancement:
Check if the content of a destination was changed, and only re-register it, if the content was changed.
Alejandro GalueDecember 17, 2015 at 5:26 PM
Actually there are no benefits, you're right. I ended up by moving the filters inside the destination. You can still have multiple filters (which is a way to define multiple message format depending on the incoming alarm).
David HustaceDecember 17, 2015 at 3:52 PM
What are the benefits with it being outside of the destination? If I think about it like destination paths, that means the filters could be reused in other destinations but that additional functionality seems barely incremental.
The current implementation only allows to have a common message format and a set of destinations, for all the alarms that that match the supplied list of UEIs if exist, in order to forward the alarm as Syslog message.
I think that adding filtering capabilities, and the ability to change the message format per destination will make the syslog northbound interface more powerful and a lot more flexible.
That being said, the structure of syslog-northbounder-configuration.xml has to be changed. The idea is enhance the current structure to introduce the new features while preserving compatibility with the old structure.
We can introduce another main tag called filter. This tag is going to have the following attributes:
A boolean flag to specify if the filter is enabled
A name for the filter
A filter rule, which should be a SPEL expression built against the NorthboundAlarm class. The incoming northbound alarms have to match the filter in order to be forwarded.
An optional message-format. If it is supplied, it will be used as the format for the target message. Otherwise, the default message-format defined inside the syslog-northbounder-config will be used.
A destination name, the name of the configured destination to be used as a target for the Syslog message.
With this in mind, the new configuration is completely compatible with older versions of OpenNMS, and provides the ability to be fully customizable in order to have custom filters with multiple destination and target formats.
Example:
syslog-northbounder-config.xml
About the example:
There are no external UEI list, so the northbounder will match all the alarms.
There are 3 destination and 3 filters.
Each filter is associated with a particular destination.
The first two filters are going to share the default message format.
The third filter is going to have a custom format for the message (to show the functionality).
The third filter is disabled (to show the functionality).
All the rules are based on the content of a particular event parameter.
The incoming alarm can match multiple filters.
The syslog message will be sent if the filter is enabled and the rule is satisfied.
Because the filter rule will be parsed using SPEL it can be more elaborated and complex if needed.
Backword compatibility
If there are filters defined, they will determine the behavior of the syslog northbounder (even if they are disabled). Otherwise, it will work as it used to (i.e. filtering based on UEIs with multiple destination and a shared message format).