Internal logs
When you visit the Grafana Fleet Management interface in Grafana Cloud after registering a collector, aself_monitoring_logs_* configuration pipeline is automatically created and assigned based on the collector’s operating system.
This pipeline collects internal logs.View logs for a registered collector
The Fleet Management service displays internal logs in the application interface.
- In your Grafana Cloud instance, click Connections > Collector > Fleet Management in the left navigation menu.
- Search, filter, or sort to find the collector in your Inventory.
- Click on the collector to open the details view drawer and switch to the Logs tab.
Note
If you don’t see any log records, refer to Logs don’t appear in app for help.
Error-level logs
The following log messages can help you diagnose collector errors.
Debug-level logs
The following log messages can help you identify the source and context of events to debug collector issues.
Query for pipeline logs
To isolate logs from specific pipelines, you can use queries in the Grafana Cloud Explore application.
- In your Grafana Cloud instance, click Explore in the left navigation menu.
- Select your logs datasource from the dropdown menu.
The datasource name should be similar to
grafanacloud-<instance_name>-logs. - Switch the query editor from Builder to Code.
- Copy and paste one of the following queries into the box. Make sure to substitute your own pipeline name for the placeholder. Click Run query.
Find component logs for a specific pipeline:
{collector_id=~".+"} |= "component_path=/remotecfg/<pipeline_name>.default"Find logs emitted when a pipeline is refreshed or has an issue loading:
{collector_id=~".+"} |= "controller_path=/remotecfg" |= "controller_id=<pipeline_name>.default"Find logs emitted when a pipeline can’t be loaded at all:
{collector_id=~".+"} |= "controller_path=/" |= "controller_id=remotecfg" |= "node=<pipeline_name>.default"The logging block
Remote configuration does not support top-level configuration blocks, which means that the logging block cannot be used in Fleet Management configuration pipelines.
If you want to use the logging block, you must do so by adding the block to the collector’s local configuration file.
Log levels
The self_monitoring_logs* pipelines do not support a change in log level.
If you wish to change log levels for debugging, you must use the logging block in the collector’s local configuration.



