# # Copyright 2022 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for # service performance. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # package cloud::google::gcp::cloudsql::mysql::mode::innodb; use base qw(cloud::google::gcp::custom::mode); use strict; use warnings; sub get_metrics_mapping { my ($self, %options) = @_; my $metrics_mapping = { 'database/mysql/innodb_data_fsyncs' => { output_string => 'fsync calls: %.2f', perfdata => { absolute => { nlabel => 'database.mysql.innodb.data_fsyncs.count', format => '%.2f', min => 0 }, per_second => { nlabel => 'database.mysql.innodb.data_fsyncs.persecond', format => '%.2f', min => 0 } }, threshold => 'fsyncs-calls', order => 1 }, 'database/mysql/innodb_os_log_fsyncs' => { output_string => 'fsync calls to the log file: %.2f', perfdata => { absolute => { nlabel => 'database.mysql.innodb.os_log_fsyncs.count', format => '%.2f', min => 0 }, per_second => { nlabel => 'database.mysql.innodb.os_log_fsyncs.persecond', format => '%.2f', min => 0 } }, threshold => 'fsync-calls-logfile', order => 2 }, 'database/mysql/innodb_pages_read' => { output_string => 'pages read: %.2f', perfdata => { absolute => { nlabel => 'database.mysql.innodb.pages_read.count', format => '%.2f', min => 0 }, per_second => { nlabel => 'database.mysql.innodb.pages_read.persecond', format => '%.2f', min => 0 } }, threshold => 'pages-read', order => 3 }, 'database/mysql/innodb_pages_written' => { output_string => 'pages written: %.2f', perfdata => { absolute => { nlabel => 'database.mysql.innodb.pages_written.count', format => '%.2f', min => 0 }, per_second => { nlabel => 'database.mysql.innodb.pages_written.persecond', format => '%.2f', min => 0 } }, threshold => 'pages-written', order => 4 } }; return $metrics_mapping; } sub new { my ($class, %options) = @_; my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1); bless $self, $class; $options{options}->add_options(arguments => { 'dimension-name:s' => { name => 'dimension_name', default => 'resource.labels.database_id' }, 'dimension-operator:s' => { name => 'dimension_operator', default => 'equals' }, 'dimension-value:s' => { name => 'dimension_value' }, 'filter-metric:s' => { name => 'filter_metric' }, "per-second" => { name => 'per_second' }, 'timeframe:s' => { name => 'timeframe' }, 'aggregation:s@' => { name => 'aggregation' } }); return $self; } sub check_options { my ($self, %options) = @_; $self->SUPER::check_options(%options); $self->{gcp_api} = 'cloudsql.googleapis.com'; $self->{gcp_dimension_name} = (!defined($self->{option_results}->{dimension_name}) || $self->{option_results}->{dimension_name} eq '') ? 'resource.labels.database_id' : $self->{option_results}->{dimension_name}; $self->{gcp_dimension_zeroed} = 'resource.labels.database_id'; $self->{gcp_instance_key} = 'resource.labels.database_id'; $self->{gcp_dimension_operator} = $self->{option_results}->{dimension_operator}; $self->{gcp_dimension_value} = $self->{option_results}->{dimension_value}; } 1; __END__ =head1 MODE Check mysql innodb metrics. Example: perl centreon_plugins.pl --plugin=cloud::google::gcp::cloudsql::mysql::plugin --mode=diskio --dimension-value=mydatabaseid --filter-metric='queries' --aggregation='average' --verbose Default aggregation: 'average' / All aggregations are valid. =over 8 =item B<--dimension-name> Set dimension name (Default: 'resource.labels.database_id'). Can be: 'resources.labels.region'. =item B<--dimension-operator> Set dimension operator (Default: 'equals'. Can also be: 'regexp', 'starts'). =item B<--dimension-value> Set dimension value (Required). =item B<--filter-metric> Filter metrics (Can be: 'database/mysql/innodb_data_fsyncs', 'database/mysql/innodb_os_log_fsyncs', 'database/mysql/innodb_pages_read', 'database/mysql/innodb_pages_write') (Can be a regexp). =item B<--timeframe> Set timeframe in seconds (i.e. 3600 to check last hour). =item B<--aggregation> Set monitor aggregation (Can be multiple, Can be: 'minimum', 'maximum', 'average', 'total'). =item B<--warning-*> B<--critical-*> Thresholds (Can be: 'fsyncs-calls', 'fsync-calls-logfile', 'pages-read', 'pages-written'). =item B<--per-second> Change the data to be unit/sec. =back =cut