You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 13, 2022. It is now read-only.
Je crois qu'il y a un probleme dans le script : check_centreon_snmp_process_detailed
Mon process se trouve dans la table run_path_table. Le script devrait le trouver, mais ca ne marche pas.
En inversant les OIDsuivants, mon process est trouvé
my $run_name_table = '1.3.6.1.2.1.25.4.2.1.2';
my $run_path_table = '1.3.6.1.2.1.25.4.2.1.4';
Visiblement, la condition suivante ne fonctionne pas, le script ne va pas vérifier dans le "else"
Look for process in name or path name table
my $resultat=undef;
if ( !defined ($o_path) ) {
$resultat = $session->get_table(
Baseoid => $run_name_table
);
} else {
$resultat = $session->get_table(
Baseoid => $run_path_table
);
}
The text was updated successfully, but these errors were encountered:
Author Name: Nicolas COULIN (Nicolas COULIN)
Original Redmine Issue: 1039, https://forge.centreon.com/issues/1039
Original Date: 2009-07-15
Je crois qu'il y a un probleme dans le script : check_centreon_snmp_process_detailed
Mon process se trouve dans la table run_path_table. Le script devrait le trouver, mais ca ne marche pas.
En inversant les OIDsuivants, mon process est trouvé
my $run_name_table = '1.3.6.1.2.1.25.4.2.1.2';
my $run_path_table = '1.3.6.1.2.1.25.4.2.1.4';
Visiblement, la condition suivante ne fonctionne pas, le script ne va pas vérifier dans le "else"
my $resultat=undef;
if ( !defined ($o_path) ) {
$resultat = $session->get_table(
Baseoid => $run_name_table
);
} else {
$resultat = $session->get_table(
Baseoid => $run_path_table
);
}
The text was updated successfully, but these errors were encountered: