# Parameters and configuration **Parameters**
--confPath to configuration file
**Configuration file (--conf)** ``` agents_group_name = < Name of the target group for the created agents > interval = < Interval in seconds for agents and for metric analysis > threads = < Number of execution threads, each zone/instance will be equally distributed in the number of threads > transfer_mode = < Transfer mode, tentacle or local > tentacle_ip = < IP of the target machine for the created agents > tentacle_port = tentacle_opts = < Tentacle client additional options > data_dir = < (Only activated if the transfer_mode is local) Destination path for the XML of each agent, by default "/var/spool/pandora/data_in/" > advance_monitoring = < Activate with 1 to enable widespread monitoring (these modules will only be created in the agents of the running instances) > cpu_summary = < Enable with 1 to enable CPU monitoring > iops_summary = < Enable with 1 to enable IOPS monitoring > disk_summary = < Enable with 1 to enable disk monitoring > network_summary = < Enable with 1 to enable network monitoring > stats_agent = < Activate with 1 to enable a global agent that will monitor based on the task created and the parameters used > stats_agent_name = < Name for the agent that is activated with the "stats_agent" parameter. If you do not use and "stats_agent" is enabled, the agent will be called "Aws.rds" by default > aws_regions = < List of regions to monitor (when you mark a region to monitor, it automatically monitors all buckets found within that region) > aws_instances = < List with the id of the rds instances to monitor > creds_b64 = < Base64 credentials in the JSON file to authenticate > ``` Example ``` agents_group_name = "aws" interval = 300 threads = 4 transfer_mode = tentacle tentacle_ip = 172.42.42.101 tentacle_port = 41121 data_dir = /var/spool/pandora/data_in/ advance_monitoring = 1 cpu_summary = 1 iops_summary = 1 disk_summary = 1 network_summary = 1 stats_agent = 1 stats_agent_name = "Rds" aws_instances = ["database-1","database-2"] aws_regions = ["us-east-1","ap-northeast-1","ap-southeast-1"] creds_b64 = ewdhBDJDdvb2tleV9pZGdhjDNDHDhbdjdKKDNDbdBiwKInNlY3JldFSHSHHDGJCJChfDHCNCNHCdjdghDMDBGBkxlSLiIKfQ== ```