Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to 1.2.1 #22

Merged
merged 1 commit into from
Nov 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 42 additions & 2 deletions check_haproxy
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

# Nagios Plugin to check the state of HAProxy.
# (c) 2014-2015 Jonathan Wright <[email protected]>
# (c) 2021- PhiBo (DinoTools)
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
Expand Down Expand Up @@ -43,8 +44,8 @@ my @g_long_message;
# Configure Program details
our ($_program, $_version, $_author);
$_program = 'check_haproxy';
$_version = '1.2.0';
$_author = 'Jonathan Wright <[email protected]>';
$_version = '1.2.1';
$_author = 'PhiBo | Jonathan Wright <[email protected]>';

use constant {
# Field names to locations for all the CSV data provided by HAProxy
Expand Down Expand Up @@ -1133,6 +1134,44 @@ Change the output to show all parts(servers, backend, frontends) not in OK state

=back

=item v1.1.1

=over

=item *

Allow colon in backend names in overrides

=item *

Minor fixes and update of documentation

=back

=item v1.2.0

=over

=item *

Make check working as documented

=item *

Fix threshold calculation

=back

=item v1.2.1

=over

=item *

Fix issue with excludes in overrides

=back

=back

=head1 AUTHOR
Expand All @@ -1142,6 +1181,7 @@ Jonathan Wright E<lt>[email protected]<gt>
=head1 COPYRIGHT AND LICENCE

(c) 2014-2015, Jonathan Wright E<lt>[email protected]<gt>
(c) 2021- PhiBo (DinoTools)

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
Expand Down
Loading