Questo contenuto non è disponibile nella lingua selezionata.
Appendix B. Increasing logging levels of Satellite components
You can set logging levels for individual Satellite components. The default logging level is info. You can increase the logging level of Satellite components to troubleshoot Satellite. Increasing the logging level to debug provides the most detailed information.
B.1. Increasing the logging level for Foreman Copia collegamentoCollegamento copiato negli appunti!
By default, you can find the log in /var/log/foreman/production.log. For more information, see Section A.2, “Configuring logging type and layout”.
For more information about Satellite logging settings, use satellite-installer with the --full-help option:
# satellite-installer --full-help | grep logging
Procedure
Set the logging level to
debug:# satellite-installer --foreman-logging-level debugAfter you complete debugging, reset the logging level to the default value:
# satellite-installer --reset-foreman-logging-level
B.2. Increasing the logging level for Red Hat Lightspeed in Satellite Copia collegamentoCollegamento copiato negli appunti!
You can increase the logging levels for Red Hat Lightspeed in Satellite to DEBUG to get more detailed logs. You can find the logs in /var/log/messages.
Example B.1. Log entries of Red Hat Lightspeed in Satellite
Feb 3 10:39:54 satellite.example.com iop-core-engine[213708]: INFO:insights.core.dr:Trying telemetry.rules.plugins.sap.sap_hana_loose_sudo.check_group_members
Feb 3 10:39:54 satellite.example.com iop-core-engine[213708]: INFO:insights.core.dr:Trying telemetry.rules.plugins.sap.sap_hana_loose_sudo.report
Feb 3 10:39:54 satellite.example.com iop-core-engine[213708]: INFO:insights.core.dr:Trying telemetry.rules.plugins.ros.ros_instance_evaluation.find_solution
Feb 3 10:39:54 satellite.example.com iop-core-engine[213708]: INFO:insights.core.dr:Trying telemetry.rules.plugins.ros.ros_instance_evaluation.report
Feb 3 10:39:54 satellite.example.com iop-core-engine[213708]: INFO:insights_kafka_service.consumer:Completed processing request id 4be0099772a23aad477e493990247876
Feb 3 10:39:54 satellite.example.com iop-core-engine[213708]: INFO:insights_messaging.consumers.kafka:Completed one payload
The default logging levels for Red Hat Lightspeed in Satellite are as follows:
loggers:
insights.core.dr:
level: "ERROR"
insights_messaging:
level: "INFO"
insights_kafka_service:
level: "INFO"
"":
level: "INFO"
Prerequisites
You have installed Red Hat Lightspeed in Satellite on your Satellite Server. For more information, see the following resources:
- Installing and configuring Red Hat Lightspeed in Satellite in Installing Satellite Server in a connected network environment
- Installing and configuring Red Hat Lightspeed in Satellite in Installing Satellite Server in a disconnected network environment
Procedure
Increase the logging levels to
DEBUG:# satellite-installer \ --iop-core-engine-log-level-insights-core-dr DEBUG \ --iop-core-engine-log-level-insights-kafka-service DEBUG \ --iop-core-engine-log-level-insights-messaging DEBUG \ --iop-core-engine-log-level-root DEBUG
Verification
Check the logging levels of Red Hat Lightspeed in Satellite:
# podman exec iop-core-engine cat /var/config.yml | grep -A15 "logging:"
B.3. Increasing the logging level for Hammer Copia collegamentoCollegamento copiato negli appunti!
You can find the log in ~/.hammer/log/hammer.log.
Procedure
In
/etc/hammer/cli_config.yml, set the:log_level:option todebug::log_level: 'debug'
B.4. Increasing the logging level for Capsule Copia collegamentoCollegamento copiato negli appunti!
By default, you can find the log in /var/log/foreman-proxy/proxy.log. For more information, see Section A.2, “Configuring logging type and layout”.
Procedure
Set the logging level to
debug:# satellite-installer --foreman-proxy-log-level DEBUGAfter you complete debugging, reset the logging level to the default value:
# satellite-installer --reset-foreman-proxy-log-level
B.5. Increasing the logging level for Candlepin Copia collegamentoCollegamento copiato negli appunti!
You can find the logs in /var/log/candlepin/candlepin.log and /var/log/candlepin/error.log.
Procedure
Set the logging level to
DEBUG:# satellite-installer --katello-candlepin-loggers log4j.logger.org.candlepin:DEBUGIf the candlepin log files are too verbose, you can decrease the default debug level:
# satellite-installer \ --katello-candlepin-loggers log4j.logger.org.candlepin:DEBUG \ --katello-candlepin-loggers log4j.logger.org.candlepin.resource.ConsumerResource:WARN \ --katello-candlepin-loggers log4j.logger.org.candlepin.resource.HypervisorResource:WARNAfter you complete debugging, reset the logging level to the default value:
# satellite-installer --reset-katello-candlepin-loggers
B.6. Increasing the logging level for Redis Copia collegamentoCollegamento copiato negli appunti!
You can find the log for Redis in /var/log/redis/redis.log.
Procedure
In
/etc/redis/redis.conf, set the logging level todebug:loglevel debugRestart the Redis service:
# systemctl restart redisNoteRunning
satellite-installerwill revert the setting to default.
B.7. Increasing the logging level for satellite-installer Copia collegamentoCollegamento copiato negli appunti!
satellite-installer writes logs to /var/log/foreman-installer/.
Procedure
Increase the logging level of the
satellite-installerutility:# satellite-installer --verbose-log-level debugNote that this only affects standard output but not any log files written to disk.
B.8. Increasing the logging level for Pulp Copia collegamentoCollegamento copiato negli appunti!
Pulp logs to the systemd journal. You can view the logs using journalctl --unit 'pulpcore*'.
Procedure
In
/etc/pulp/settings.py, set the logging level toDEBUG:LOGGING = {"dynaconf_merge": True, "loggers": {'': {'handlers': ['console'], 'level': 'DEBUG'}}}Restart the Pulp services:
# systemctl restart \ pulpcore-api \ pulpcore-content \ pulpcore-resource-manager \ pulpcore-worker@\*NoteRunning
satellite-installerwill revert the setting to default.
B.9. Increasing the logging level for OpenVox agent Copia collegamentoCollegamento copiato negli appunti!
You can find the logs in /var/log/puppetlabs/puppet/.
Prerequisites
- You have enabled Puppet on your Satellite. For more information, see Enabling Puppet integration with Satellite in Managing configurations by using Puppet integration.
Procedure
Set the logging level to
debug:# satellite-installer --puppet-agent-additional-settings log_level:debug
B.10. Increasing the logging level for OpenVox server Copia collegamentoCollegamento copiato negli appunti!
You can find the logs in /var/log/puppetlabs/puppetserver/.
Prerequisites
- You have enabled Puppet on your Satellite. For more information, see Enabling Puppet integration with Satellite in Managing configurations by using Puppet integration.
Procedure
Set the logging level to
debug:# satellite-installer --puppet-server-additional-settings log_level:debug