Nagios Exchange Nagios Exchange
  • Home
  • Directory
  • Library
  • Support
  • About
  • Submit Feedback

Advanced Search

Build precise queries to find exactly what you need

Search Logic

Select compatible versions

Press ESC to close

Sign In Sign Up

Nagios World Conference 2026: Sept. 14-17 in St. Paul, MN | Learn More

  • Home
  • Directory
  • Library
  • Support
  • About
  • Submit Feedback
Plugins4410Themes and Skins13Add-ons763Graphics and Logos36View All Categories
LinuxSecuritySNMPFile SystemCloud
New Listings Recently Updated Listings Most Favored Listings Most Popular Listings Most Rated Listings Most Reviewed Listings
Random Project
2011 Nagios World Conference Presentations Nathan Vonnahme – Integrating Nagios With Test Driven Development
0.0 (0)
80.5K
RSS Feed
Newest Listings Updated Listings
Top Contributors
John Shorey (4)deskwork_itunes142 (4)Davide Lemma (3)Chad Columbus (3)Marcin Bednarski (3)
See More
Newest Contributors
pawal (1)matthewducey (1)Linuxfabrik (1)signalgrid (1)Sanna Glue (2)
See More

Copyright © 2009-2026 Nagios Enterprises, LLC. All rights reserved.

Privacy PolicyTerms of UseTrademarks
Home > Paul Haldane
PH

Paul Haldane

@Paul.Haldane

User Stats

Member Since: April 5, 2013

Favorites0

Views

Projects0

No Projects Found
Check Citrix NetScaler Health

Patch for MPX55xx/v10.1

We're getting (AuxiliaryVoltage3: 0 mV), (IntelCPUVttPower: 0 mV), (AuxiliaryVoltage4: 0 mV), (-12.0VSupplyVoltage: 11903 mV), (AuxiliaryVoltage7: 0 mV), (AuxiliaryVoltage1: 0 mV), (VoltageSensor2: 3391 mV), (AuxiliaryVoltage2: 0 mV), (AuxiliaryVoltage6: 0 mV), (AuxiliaryVoltage0: 0 mV), (PowerSupply5vStandbyVoltage: 0 mV), (-5.0VSupplyVoltage: 0 mV), (CPU1CoreVoltage: 0 mV), (AuxiliaryVoltage5: 0 mV), (CPU1Temperature: 0 Celsius), : 6/20 voltage OK, 5 fan OK, 2/3 temp OK (HA State up, SSL Engine up) : CRITICAL on a healthy MPX 5550 v10.1 which sounds similar to symptoms previous reviewer saw/fixed. Is there an updated version/patch available anywhere?

Reviewed 12 years ago

FlexLM

patch for alerting on missing feature

If used, for example, like this ... /tmp/check_flexlm_perf_data -H assdlic01 -p 1055 -f aa_r_cfdd -w 80 and the specified feature doesn't exist the plugin returns OK (0% of 0 licences used). The patch below treats a missing feature as a critical error. Index: production/apps/nagios/libexec/ncl/check_flexlm_perf_data =================================================================== --- production/apps/nagios/libexec/ncl/check_flexlm_perf_data (revision 2161) +++ production/apps/nagios/libexec/ncl/check_flexlm_perf_data (working copy) @@ -148,12 +148,14 @@ my $current_use = 0; my $tot_lic = 0; my $perc_in_use = 0; + my $seen_feature = 0; for (@lmstat_lines) { if ($features eq 0) { $red_flag ++ if ((/[Cc]annot/)||(/[Uu]nable/)||(/refused/)||(/down/)||(/[Ww]in[sS]ock/)); } else { if (/Users of (.*): .* of ([0-9]+) .* issued; .* of ([0-9]+) .* use/) { my $available_licenses = $2 - $3; + $seen_feature++; $current_use = $3; $tot_lic = $2; $perc_in_use = ($current_use/$tot_lic)*100; @@ -168,6 +170,9 @@ } if ($red_flag > 0) { $output = "FLEXlm CRITICAL: License Server Down or Unreachable.n"; + } elsif ($vendor && ($seen_feature == 0)) { + # We're looking for a feature and it's not there + $output = "FLEXlm CRITICAL: License Server for $vendor not available.n"; } elsif ($yellow_flag > 0) { $output = "FLEXlm WARNING: Reach Usage Warning for Features: "; for my $feat (@$yellow_feats) { @@ -190,7 +195,6 @@ $output .=int($perc_in_use); $output .="% in use| user="; $output .= $current_use; - $output .="n"; } return ($output);

Reviewed 13 years ago

No Favorites Found

Copyright © 2009-2026 Nagios Enterprises, LLC. All rights reserved.

Privacy PolicyTerms of UseTrademarks
Home Browse Submit Profile