First time here? Check out the FAQ!
![]() | 1 | initial version |
Hi,
You can find the line " default_log_levels = amqp=WARN,amqplib=WARN,boto=WARN,qpid=WARN,sqlalchemy=WARN " in tempest config file change the log level to INFO and proceed the test.
If you would like to filter all the tempest service log,You can go with a dedicated rsyslog configuration for tempest service.Here I configured both rsyslog server and client on the same machine.No need to install any packages for rsyslog setup.By default ubuntu software package manager supplies rsyslog package.
Client side configuration:
/etc/rsyslog.d/client.conf
. @localhost
Server side configuration
/etc/rsyslog.d/server.conf
$ModLoad imudp
$UDPServerAddress localhost
$UDPServerRun 514
$template TempestFile,"/var/log/rsyslog/%HOSTNAME%/tempest.log"
$template TempestAll,"/var/log/rsyslog/tempest.log"
$template DynFile,"/var/log/rsyslog/%HOSTNAME%/syslog.log"
. ?DynFile
local0.* ?TempestFile
local0.* ?TempestAll
& ~
Restart rsyslog service.
#service rsyslog restart