Skip to content

Commit

Permalink
bump version to v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
slauger committed May 13, 2017
1 parent 83956d3 commit ca2f581
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions check_netscaler.pl
Original file line number Diff line number Diff line change
Expand Up @@ -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 <hostname> [ -u <username> ] [ -p <password> ]
Expand Down Expand Up @@ -608,4 +608,4 @@ sub check_debug
my $response = nitro_client($plugin, \%params);

print Dumper($response);
}
}

0 comments on commit ca2f581

Please sign in to comment.