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

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
Plugins4404Themes and Skins13Add-ons757Graphics 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 Christian Mies – German Health Insurance Company Reference Story
0.0 (0)
83.1K
RSS Feed
Newest Listings Updated Listings
Top Contributors
Yoann LAMY (7)Julien DESMAREST (4)deskwork_itunes142 (4)Chad Columbus (3)Marcin Bednarski (3)
See More
Newest Contributors
signalgrid (1)Sanna Glue (2)fisherrs (1)smolinux (1)juanfertor (1)
See More

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

Privacy PolicyTerms of UseTrademarks
Home > Antoine FERNIQUE
AF

Antoine FERNIQUE

@afernique

User Stats

Member Since: September 22, 2025

Favorites0

Views

Projects0

No Projects Found
Dell Compellent

bug after deleting volumes

after deleting some volumes we noticed the oid are not correctly cleaned and the plugin show errors in non existant volumes (at least non existant anymore) The solution was to first parse 1.3.6.1.4.1.674.11000.2000.500.1.2.26.1.5 finding when the value decrease (corresponding to badly removed volumes) then do the checks stopping on the maximum oid value. Thankfully copilot done the job and the correction is to replace the volume part in the bash with this one. volume) # Parse the OID to find the last value before it decreases stop_index=0 previous_value="" index=0 while read -r line; do current_value=$(echo "$line" | awk '{print $NF}') if [[ -n "$previous_value" && "$current_value" -lt "$previous_value" ]]; then stop_index=$index break fi previous_value="$current_value" index=$((index + 1)) done L Volumes: ${volumecrit[*]}" exit ${STATE_CRITICAL} elif [[ ${#volumewarn[@]} -gt 0 ]]; then echo "WARNING Volumes: ${volumewarn[*]}" exit ${STATE_WARNING} elif [[ ${#volumeunknown[@]} -gt 0 ]]; then echo "UNKNOWN Check Volumes, an unknown error occurred" exit ${STATE_UNKNOWN} elif [[ ${#volumeok[@]} -gt 0 ]]; then echo "OK Volumes: ${volumeok[*]}" exit ${STATE_OK} fi ;;

Reviewed 1 year ago

No Favorites Found

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

Privacy PolicyTerms of UseTrademarks
Home Browse Submit Profile