From ca2f5816981076195d57b691a4c4a793b134db35 Mon Sep 17 00:00:00 2001 From: Simon Lauger Date: Sat, 13 May 2017 22:44:08 +0200 Subject: [PATCH] bump version to v1.0.1 --- CHANGELOG.md | 4 ++++ README.md | 6 +++--- check_netscaler.pl | 4 ++-- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 67ead0c..e783768 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.1 (2017-05-13) + - new check command for STA services + - small documentation fixes + ## 1.0.0 (2017-02-01) - huge rewrite of the Plugin, changed nearly every parameters - upgrading from versions prior to 1.0.0 require to change your monitoring configuration diff --git a/README.md b/README.md index 1dbdd3a..912f23d 100644 --- a/README.md +++ b/README.md @@ -105,15 +105,15 @@ If you want to connect to your NetScaler with SSL/HTTPS you should also install # NetScaler::STA ./check_netscaler.pl -H ${IPADDR} -s -C staserver - # NetScaler::STA + # NetScaler::STA::vs_vpn_gateway ./check_netscaler.pl -H ${IPADDR} -s -C staserver -n vs_vpn_gateway ## Debug command # Print all LB vServers (stat endpoint) - ./check_netscaler.pl -H ${IPADDR} -s -C debug -o lbvserver + ./check_netscaler.pl -H ${IPADDR} -s -C debug -o lbvserver # Print all LB vServers (config endpoint) - ./check_netscaler.pl -H ${IPADDR} -s -C debug -o lbvserver -e config + ./check_netscaler.pl -H ${IPADDR} -s -C debug -o lbvserver -e config # Configuration File The plugin uses the Nagios::Plugin Libary, so you can use --extra-opts and seperate the login crendetials from your nagios configuration. diff --git a/check_netscaler.pl b/check_netscaler.pl index 77830eb..735282c 100755 --- a/check_netscaler.pl +++ b/check_netscaler.pl @@ -33,7 +33,7 @@ my $plugin = Nagios::Plugin->new( plugin => 'check_netscaler', shortname => 'NetScaler', - version => '1.0.0', + version => '1.0.1', url => 'https://github.com/slauger/check_netscaler', blurb => 'Nagios Plugin for Citrix NetScaler Appliance (VPX/MPX/SDX)', usage => 'Usage: %s -H [ -u ] [ -p ] @@ -608,4 +608,4 @@ sub check_debug my $response = nitro_client($plugin, \%params); print Dumper($response); -} \ No newline at end of file +}