Added documentation for locale_agent call. TICKET: #3119

(cherry picked from commit aceb7ac34f)

Conflicts:
	pandora_server/util/pandora_manage.pl
This commit is contained in:
mdtrooper 2016-01-05 13:17:35 +01:00
parent 1e9f086cae
commit c12a6c1e3a
1 changed files with 44 additions and 42 deletions

View File

@ -84,15 +84,15 @@ db_disconnect ($history_dbh) if defined ($history_dbh);
db_disconnect ($dbh);
exit;
###############################################################################
###############################################################################
########################################################################
########################################################################
# GENERAL FUNCTIONS
###############################################################################
###############################################################################
########################################################################
########################################################################
##############################################################################
########################################################################
# Print a help screen and exit.
##############################################################################
########################################################################
sub help_screen{
print "\nPandora FMS CLI $version Copyright (c) 2013-2015 Artica ST\n";
print "This program is Free Software, licensed under the terms of GPL License v2\n";
@ -121,6 +121,7 @@ sub help_screen{
help_screen_line('--delete_conf_file', '<agent_name>', 'Delete a local conf of a given agent');
help_screen_line('--clean_conf_file', '<agent_name>', "Clean a local conf of a given agent deleting all modules, \n\t policies, file collections and comments");
help_screen_line('--get_bad_conf_files', '', 'Get the files bad configured (without essential tokens)');
help_screen_line('--locate_agent', '<agent_name>', 'Search a agent into of nodes of metaconsole. Only Enterprise.');
print "\nMODULES:\n\n" unless $param ne '';
help_screen_line('--create_data_module', "<module_name> <module_type> <agent_name> [<description> <module_group> \n\t <min> <max> <post_process> <interval> <warning_min> <warning_max> <critical_min> <critical_max> \n\t <history_data> <definition_file> <warning_str> <critical_str>\n\t <unknown_events> <ff_threshold> <each_ff> <ff_threshold_normal>\n\t <ff_threshold_warning> <ff_threshold_critical> <ff_timeout>]", 'Add data server module to agent');
help_screen_line('--create_network_module', "<module_name> <module_type> <agent_name> <module_address> \n\t [<module_port> <description> <module_group> <min> <max> <post_process> <interval> \n\t <warning_min> <warning_max> <critical_min> <critical_max> <history_data> <ff_threshold>\n\t <warning_str> <critical_str> <unknown_events> <each_ff>\n\t <ff_threshold_normal> <ff_threshold_warning> <ff_threshold_critical> <timeout> <retries>]", 'Add not snmp network module to agent');
@ -203,9 +204,9 @@ sub help_screen{
exit;
}
###############################################################################
########################################################################
#
###############################################################################
########################################################################
sub api_call($$$;$$$) {
my ($pa_config, $op, $op2, $id, $id2, $other) = @_;
my $content = undef;
@ -230,7 +231,8 @@ sub api_call($$$;$$$) {
if ($response->is_success) {
$content = $response->decoded_content();
} else {
}
else {
$content = $response->decoded_content();
}
};