Colin Gagnaire
Colin Gagnaire
Hi @alfredosilvestre-natixis, Thanks for this PR too. I'll let @kduret and @adr-mo take a look at this one before it enters our backlog. As it's a new feature, it could...
Don't worry, we will manage the build.
😠https://github.com/centreon/centreon/pull/2957 Let's see which one is merged, the boss' one or the one from a simple community user! Mine is only 2 months old so...
It's on the same problem, we just didn't fix it the same way. And I added another fix when a host/service couple is selected in the curve template (which was...
Wow this rabbit is clever!
Hi @SavCent, I'm sorry but no. This PR does not respect any Centreon Plugins designs. It breaks several options, metrics label. And I'm not even sure it does what you...
Hi @SavCent, Your PR does not bring any code changes, only comments. But actually those are not comments but titles or labels I don't really know but surely it doesn't...
Hi @SavCent, This is not how counters work. You can't just add a key and expect it to be used. Moreover "support_expiration_time" does not exist as the powershell part returns...
Example of plugin usage: ``` perl centreon_plugins.pl --plugin=apps::monitoring::logs::plugin --mode=parse --custommode=file --file='/var/log/centreon-broker/central-broker-master.log' --parse-regexp='\[(\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}).*\]\s\[.*\]\s\[.*\]\s(.*)' --parse-mapping='date=$1' --parse-mapping='message=$2' --date-regexp='(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2})' --date-mapping='year=$1' --date-mapping='month=$2' --date-mapping='day=$3' --date-mapping='hour=$4' --date-mapping='minute=$5' --date-mapping='second=$6' --memory --critical-status='%{message} =~ /Duplicate entry/' CRITICAL: 4 problem(s) detected...
Example of plugin and mode using the common code: ``` package apps::myapp::logs::plugin; use strict; use warnings; use base qw(centreon::plugins::script_custom); sub new { my ( $class, %options ) = @_; my...