Skip to content

Logging on Linux


The PLOSSYS 5 log files are administrated and visualized by means of Elastic Stack.


Display the Log Messages of PLOSSYS 5 via Kibana

The log messages of PLOSSYS 5 can be displayed and evaluated via the Kibana user interface.

For opening the Kibana user interface, enter the following URL into a Web browser:

http://<admin_server>:5601

Hint - search settings

Kibana does not save search settings, but the search settings are included in the URL. So, you can save the search settings as bookmarks.


Set the Log Level

For setting the log level for all services of PLOSSYS 5 or a specific one, the following key has to be set for any or for a specific service:

  • LOG_LEVEL: Log level for the correspondent service

Example - setting key via PLOSSYS CLI for all services

plossys config set LOG_LEVEL debug

Example - setting key via PLOSSYS CLI for the seal-rest service

plossys config set LOG_LEVEL debug --service seal-rest

For available values for the log level, refer to LOG_LEVEL.


Show the Log File of a Specific Service

plossys log show <service_name>

Show the Log File of a Specific Job

plossys job logs <job_id>

Show the Temporary Files of a Specific Job

plossys job tempfiles <job_id>

Log Files

PLOSSYS 5 and Infrastructure Services

The log files of the PLOSSYS 5 and the infrastructure services such as MongoDB or Consul are located in the following directory:

/var/log/seal

System and Service Manager systemd

For the logging of the system and service manager, systemd, refer to the documentation of your Linux distribution.


File Size

In order to control the size of the log data, the log files are rotated. For this purpose, the configuration file /etc/logrotate.d/plossys is created during the installation.


Back to top