fix(plugin): Azure FrontDoor help fixes (#2663)
This commit is contained in:
parent
16257b1024
commit
7b1102c8dc
|
@ -99,7 +99,7 @@ __END__
|
||||||
|
|
||||||
=head1 MODE
|
=head1 MODE
|
||||||
|
|
||||||
Check Azure Web FrontDoor backend health.
|
Check Azure Front Door backend health.
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
|
|
||||||
|
@ -113,7 +113,7 @@ Using resource id :
|
||||||
|
|
||||||
perl centreon_plugins.pl --plugin=cloud::azure::network::frontdoor::plugin --mode=backendhealth --custommode=api
|
perl centreon_plugins.pl --plugin=cloud::azure::network::frontdoor::plugin --mode=backendhealth --custommode=api
|
||||||
--resource='/subscriptions/<subscription_id>/resourceGroups/<resourcegroup_id>/providers/Microsoft.Network/frontdoors/<frontdoor_id>'
|
--resource='/subscriptions/<subscription_id>/resourceGroups/<resourcegroup_id>/providers/Microsoft.Network/frontdoors/<frontdoor_id>'
|
||||||
--aggregation='maximum' --warning-backend-health-percentage='100:' --critical-backend-health-percentage='90:'
|
--aggregation='average' --warning-backend-health-percentage='100:' --critical-backend-health-percentage='90:'
|
||||||
|
|
||||||
Default aggregation: 'average' / 'minimum', 'maximum' and 'total' are valid.
|
Default aggregation: 'average' / 'minimum', 'maximum' and 'total' are valid.
|
||||||
|
|
||||||
|
|
|
@ -39,7 +39,7 @@ __END__
|
||||||
|
|
||||||
=head1 MODE
|
=head1 MODE
|
||||||
|
|
||||||
Check Azure FrontDoor health status.
|
Check Azure Front Door health status.
|
||||||
|
|
||||||
=over 8
|
=over 8
|
||||||
|
|
||||||
|
@ -54,22 +54,22 @@ Set resource group (Required if resource's name is used).
|
||||||
=item B<--warning-status>
|
=item B<--warning-status>
|
||||||
|
|
||||||
Set warning threshold for status (Default: '').
|
Set warning threshold for status (Default: '').
|
||||||
Can used special variables like: %{status}, %{summary}
|
Special variables that can be used: %{status}, %{summary}.
|
||||||
|
|
||||||
=item B<--critical-status>
|
=item B<--critical-status>
|
||||||
|
|
||||||
Set critical threshold for status (Default: '%{status} =~ /^Unavailable$/').
|
Set critical threshold for status (Default: '%{status} =~ /^Unavailable$/').
|
||||||
Can used special variables like: %{status}, %{summary}
|
Special variables that can be used: %{status}, %{summary}.
|
||||||
|
|
||||||
=item B<--unknown-status>
|
=item B<--unknown-status>
|
||||||
|
|
||||||
Set unknown threshold for status (Default: '%{status} =~ /^Unknown$/').
|
Set unknown threshold for status (Default: '%{status} =~ /^Unknown$/').
|
||||||
Can used special variables like: %{status}, %{summary}
|
Special variables that can be used: %{status}, %{summary}.
|
||||||
|
|
||||||
=item B<--ok-status>
|
=item B<--ok-status>
|
||||||
|
|
||||||
Set ok threshold for status (Default: '%{status} =~ /^Available$/').
|
Set ok threshold for status (Default: '%{status} =~ /^Available$/').
|
||||||
Can used special variables like: %{status}, %{summary}
|
Special variables that can be used: %{status}, %{summary}.
|
||||||
|
|
||||||
=back
|
=back
|
||||||
|
|
||||||
|
|
|
@ -108,7 +108,7 @@ __END__
|
||||||
|
|
||||||
=head1 MODE
|
=head1 MODE
|
||||||
|
|
||||||
Check Azure Web FrontDoor latency.
|
Check Azure Front Door latency.
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
|
|
||||||
|
|
|
@ -116,7 +116,7 @@ __END__
|
||||||
|
|
||||||
=head1 MODE
|
=head1 MODE
|
||||||
|
|
||||||
Check Azure Web FrontDoor latency.
|
Check Azure Front Door latency.
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
|
|
||||||
|
@ -124,13 +124,13 @@ Using resource name :
|
||||||
|
|
||||||
perl centreon_plugins.pl --plugin=cloud::azure::network::frontdoor::plugin --mode=requests --custommode=api
|
perl centreon_plugins.pl --plugin=cloud::azure::network::frontdoor::plugin --mode=requests --custommode=api
|
||||||
--resource=<frontdoor_id> --resource-group=<resourcegroup_id> --aggregation='total'
|
--resource=<frontdoor_id> --resource-group=<resourcegroup_id> --aggregation='total'
|
||||||
--warning-total-requests-count='3000' --critical-total-latency='4000'
|
--warning-total-requests-count='3000' --critical-total-requests-count='4000'
|
||||||
|
|
||||||
Using resource id :
|
Using resource id :
|
||||||
|
|
||||||
perl centreon_plugins.pl --plugin=cloud::azure::network::frontdoor::plugin --mode=requests --custommode=api
|
perl centreon_plugins.pl --plugin=cloud::azure::network::frontdoor::plugin --mode=requests --custommode=api
|
||||||
--resource='/subscriptions/<subscription_id>/resourceGroups/<resourcegroup_id>/providers/Microsoft.Network/frontdoors/<frontdoor_id>'
|
--resource='/subscriptions/<subscription_id>/resourceGroups/<resourcegroup_id>/providers/Microsoft.Network/frontdoors/<frontdoor_id>'
|
||||||
--aggregation='total' --warning-total-requests-count='3000' --critical-total-latency='4000'
|
--aggregation='total' --warning-total-requests-count='3000' --critical-total-requests-count='4000'
|
||||||
|
|
||||||
Default aggregation: 'total' / 'minimum', 'maximum' and 'average' are valid.
|
Default aggregation: 'total' / 'minimum', 'maximum' and 'average' are valid.
|
||||||
|
|
||||||
|
|
|
@ -116,7 +116,7 @@ __END__
|
||||||
|
|
||||||
=head1 MODE
|
=head1 MODE
|
||||||
|
|
||||||
Check Azure Web FrontDoor requests size.
|
Check Azure Front Door requests size.
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue