Search found 62 matches

by snapier3
Fri Mar 29, 2024 11:54 am
Forum: Nagios XI
Topic: Event Handlers in Scheduled Downtime
Replies: 7
Views: 827

Re: Event Handlers in Scheduled Downtime

This is not a good idea... This change would then stop all "on-state-change" event handlers from being executed during a downtime window. The handler should be executed when any host or object changes state i.e. global event handlers. You account for this possibility by adding a step to ch...
by snapier3
Fri Jan 19, 2024 1:10 pm
Forum: Nagios XI
Topic: Monitoring Cluster Openshift
Replies: 2
Views: 449

Re: Monitoring Cluster Openshift

Configuring NXI as a signal receiver for alerts (Passive checks) is the only way I've done it. Take a look at these OpenShift docs; https://docs.openshift.com/container-platform/4.14/monitoring/managing-alerts.html#sending-notifications-to-external-systems_managing-alerts There you see this part. Fo...
by snapier3
Fri Dec 15, 2023 7:09 am
Forum: Nagios XI
Topic: XI 2024 | Theme Switching Issue
Replies: 9
Views: 37025

Re: XI 2024 | Theme Switching Issue

Server was an upgrade from 5.11.3 to 2024R1 o Centos9 Stream
I have not seen this issue on fresh install.
--SN
by snapier3
Wed Dec 13, 2023 1:51 pm
Forum: Nagios XI
Topic: Performance Graphs showing different results for Exchange Messages Queued for Delivery
Replies: 5
Views: 6800

Re: Performance Graphs showing different results for Exchange Messages Queued for Delivery

What's the formatting of the perfdata string, as shown in the advanced portion of the interface. Is the value a float? Try converting the output to an integer with the counter Unit of Measure in the perfdata or adding the "c" unit of measure From the docs https://nagios-plugins.org/doc/gui...
by snapier3
Wed Dec 13, 2023 12:31 pm
Forum: Nagios XI
Topic: Is "Active Check" required somewhere?
Replies: 4
Views: 13984

Re: Is "Active Check" required somewhere?

These options are most likely being set in the template for the check.
Check to see what the settings are in the template being inherited.

--SN
by snapier3
Fri Dec 08, 2023 12:46 pm
Forum: Nagios XI
Topic: XI2024 | MyTools
Replies: 14
Views: 27831

Re: XI2024 | MyTools

So yeah, removing the double encode works in the common tools and mytools flavors. <?php $mr = get_commontools(); foreach ($mr as $id => $r) { echo "<tr>"; echo "<td>" . encode_form_val($r["name"]) . "</td>"; echo '<td><a href="' . encode_form_val($r[&quo...
by snapier3
Fri Dec 08, 2023 12:30 pm
Forum: Nagios XI
Topic: XI2024 | MyTools
Replies: 14
Views: 27831

Re: XI2024 | MyTools

I think I found the issue... In the respective [My/Common]tools.php There is a double URL encode thing going on... echo '<td><a href="' . urlencode(encode_form_val($r["url"])) . '" target="_blank">' . encode_form_val($r["url"]) . '</a></td>'; Should be echo '<...
by snapier3
Fri Dec 08, 2023 11:53 am
Forum: Nagios XI
Topic: XI2024 | MyTools
Replies: 14
Views: 27831

Re: XI2024 | MyTools

It is weird to me that clicking the URL doesn't bring you to the website but instead to a local directory in the webroot, but that's how it currently seems to work. If subdirectories don't work, then it may be a bug though. This is where I'm at with it too... I'll add that to my list of things to l...
by snapier3
Fri Dec 08, 2023 10:25 am
Forum: Nagios XI
Topic: XI 2024 | Highchart dashlet host_name link is broken
Replies: 3
Views: 8745

Re: XI 2024 | Highchart dashlet host_name link is broken

Here's the fix: There is a snafu in the "make_highchart.php" file of the dashlet. Replace the OG if/else with the following snippet #MODIFIED BY S.Napier3 #DEC 07, 2023 #FIXES HOSTNAME LINK BUG if ($link_labels){ $base_url = '/nagiosxi/includes/components/xicore/status.php?show='; #CHART H...
by snapier3
Thu Dec 07, 2023 5:14 pm
Forum: Nagios XI
Topic: XI2024 | MyTools
Replies: 14
Views: 27831

Re: XI2024 | MyTools

For instance, if you use https://chat.openai.com, it will work. Embedding foobar was a good theory but, didn't work either. Same outcome with the URL. nope-openai.PNG I have tried using absolute paths to the include shares and they don't work either. Core of the problem is, it's appending the URL-E...