-
Notifications
You must be signed in to change notification settings - Fork 588
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into mwa/jira/NMS-16986
- Loading branch information
Showing
53 changed files
with
1,550 additions
and
130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
core/snmp/impl-joesnmp/src/test/java/org/opennms/netmgt/snmp/joesnmp/NMS16395Test.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
core/snmp/impl-snmp4j/src/test/java/org/opennms/netmgt/snmp/snmp4j/NMS16395Test.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...nmp/proxy-rpc-impl/src/main/java/org/opennms/netmgt/snmp/proxy/common/SNMPSetBuilder.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
.../proxy-rpc-impl/src/main/java/org/opennms/netmgt/snmp/proxy/common/SnmpSetRequestDTO.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
opennms (33.1.2-1) stable; urgency=medium | ||
|
||
* Release 33.1.2 contains a bug fix and a new feature. | ||
|
||
For details on what has changed, see: | ||
https://docs.opennms.com/horizon/33.1.2/index.html | ||
|
||
-- OpenNMS Release Manager <[email protected]> Tue, 07 Jan 2024 10:30:00 -0500 | ||
|
||
opennms (33.1.1-1) stable; urgency=medium | ||
|
||
* Release 33.1.1 contains bug fixes, security updates and new features. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
docs/modules/operation/pages/deep-dive/grpc-exporter/grpc-exporter.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
= Grpc Exporter | ||
:description: Learn how the gRPC Exporter enables {page-component-title} to forward the status of monitored services to external applications. | ||
|
||
The Grpc Exporter feature allows {page-component-title} to forward the status of all monitored services to external applications via the gRPC protocol. | ||
|
||
These objects are encoded using link:https://developers.google.com/protocol-buffers/[Google Protocol Buffers (GPB)]. | ||
See `monitored-services.proto` in the corresponding source distribution for the model definitions. | ||
|
||
== Configure gRPC Exporter | ||
|
||
[source, karaf] | ||
---- | ||
$ ssh -p 8101 admin@localhost | ||
... | ||
admin@opennms()> config:edit org.opennms.features.grpc.exporter | ||
admin@opennms()> config:property-set host bsm.onmshs.local:1440 <1> | ||
admin@opennms()> config:property-set tls.cert.path /opt/opennms/etc/tls.cert <2> | ||
admin@opennms()> config:property-set tls.enabled false <3> | ||
admin@opennms()> config:property-set snapshot.interval 3600 false <4> | ||
admin@opennms()> config:update | ||
---- | ||
|
||
<1> Set the hostname of the external gRPC application. | ||
<2> Configure the path to the TLS certificate. | ||
<3> TLS is enabled by default. For testing purposes, it can be disabled by setting this value to false. | ||
<4> Set the interval (in seconds) at which the complete snapshot of services will be sent to the gRPC server. | ||
|
||
== Enable gRPC Exporter | ||
|
||
Install the `opennms-grpc-exporter` feature from the same shell using: | ||
|
||
[source, karaf] | ||
---- | ||
feature:install opennms-grpc-exporter | ||
---- | ||
|
||
To ensure the feature is installed on subsequent restarts, add `opennms-grpc-exporter` to a file in featuresBoot.d: | ||
[source, console] | ||
---- | ||
echo "opennms-grpc-exporter" | sudo tee ${OPENNMS_HOME}/etc/featuresBoot.d/grpc-exporter.boot | ||
---- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...-common/src/test/java/org/opennms/features/apilayer/utils/MonitoredServiceMapperTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...src/test/java/org/opennms/features/datachoices/internal/usagestatistics/NMS16345Test.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.