Yandex Cloud
Search
Contact UsTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • AI for business
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
    • Price calculator
    • Pricing plans
  • Customer Stories
  • Documentation
  • Blog
© 2025 Direct Cursus Technology L.L.C.
Yandex Managed Service for PostgreSQL
  • Getting started
    • All guides
      • Viewing cluster logs
      • Performance diagnostics
      • Monitoring the state of clusters and hosts
      • Connecting to DataLens
  • Access management
  • Pricing policy
  • Terraform reference
  • Monitoring metrics
  • Audit Trails events
  • Public materials
  • Release notes

In this article:

  • Getting a cluster log
  • Getting a cluster log stream
  1. Step-by-step guides
  2. Logs and monitoring
  3. Viewing cluster logs

Viewing PostgreSQL cluster logs

Written by
Yandex Cloud
Updated at December 5, 2025
  • Getting a cluster log
  • Getting a cluster log stream

Managed Service for PostgreSQL allows you to get a cluster log snippet for the selected period and to view logs in real time.

Note

Cluster logs are kept for 30 days.

To identify potential cluster problems, use other health analysis tools alongside the cluster logs.

Getting a cluster logGetting a cluster log

Management console
CLI
REST API
gRPC API
  1. Go to Managed Service for PostgreSQL.
  2. Click the name of your cluster and select the Logs tab.
  3. Specify a time period for the log entries you want to view: enter it manually or select in the calendar using the date input field.
  4. If required, request the POOLER log and specify the hosts and logging level in the line with the date input field.

You will see the list of log entries for the selected time period. To view detailed information about an event, click the relevant entry in the list.

If there are too many entries and not all of them are displayed, click Load more at the end of the list.

If you do not have the Yandex Cloud CLI installed yet, install and initialize it.

By default, the CLI uses the folder specified when creating the profile. To change the default folder, use the yc config set folder-id <folder_ID> command. You can also set a different folder for any specific command using the --folder-name or --folder-id parameter.

  1. See the description of the CLI command for viewing cluster logs:

    yc managed-postgresql cluster list-logs --help
    
  2. Run the following command to get cluster logs. Note that our example does not include all available options:

    yc managed-postgresql cluster list-logs <cluster_name_or_ID> \
       --limit <entry_number_limit> \
       --format <output_format> \
       --service-type <service_type> \
       --columns <list_of_data_columns> \
       --filter <entry_filtration_settings> \
       --since <time_range_left_boundary> \
       --until <time_range_right_boundary>
    

    Where:

    • --limit: limits on the number of entries to output.

    • --format: Format for log entries (text, yaml, json, or json-rest).

    • --service-type: Source service type to output (postgresql or pooler).

    • --columns: List of data columns:

      • hostname: Host name.
      • db: Database name.
      • level: Logging level, e.g., info.
      • pid: ID of the current session's server process.
      • text: Message output by the component.

      Note

      This example includes only the essential columns. The complete list of columns depends on the selected --service-type.

      To output separate columns, provide the --format parameter and specify the output format (yaml, json, or json-rest). Columns are not supported for text output format (default).

    • --filter: record filter settings, for example, message.hostname='node1.mdb.yandexcloud.net'.

    • --since: Left boundary of a time range in RFC-3339, HH:MM:SS format or a time interval relative to the current time. Examples: 2006-01-02T15:04:05Z, 15:04:05, 2h, 3h30m ago.

    • --until: right boundary of a time range, the format is similar to that of --since.

You can get the cluster name and ID with the list of clusters in the folder.

  1. Get an IAM token for API authentication and put it into an environment variable:

    export IAM_TOKEN="<IAM_token>"
    
  2. Call the Cluster.ListLogs method, e.g., via the following cURL request:

    curl \
      --request GET \
      --header "Authorization: Bearer $IAM_TOKEN" \
      --url 'https://mdb.api.cloud.yandex.net/managed-postgresql/v1/clusters/<cluster_ID>:logs' \
      --url-query serviceType=<service_type> \
      --url-query columnFilter=<column_list> \
      --url-query fromTime=<time_range_left_boundary> \
      --url-query toTime=<time_range_right_boundary>
    

    Where:

    • serviceType: Source service type for logs:

      • POSTGRESQL: PostgreSQL operations.
      • POOLER: Connection manager operations.
    • columnFilter: Output column name:

      • hostname: Host name.
      • db: Database name.
      • level: Logging level, e.g., info.
      • pid: ID of the current session's server process.
      • text: Message output by the component.

      Note

      The complete list of columns depends on the selected serviceType. The example only shows the main columns for the POOLER type.

      You can specify only one column in the columnFilter parameter. If you want to filter logs by more than one column, provide a list of the columns in several parameters.

    • fromTime: Start of the time range in RFC-3339 format, e.g., 2024-09-18T15:04:05Z.

    • toTime: End of the time range in the same format as fromTime.

    You can request the cluster ID with the list of clusters in the folder.

  3. Check the server response to make sure your request was successful.

  1. Get an IAM token for API authentication and put it into an environment variable:

    export IAM_TOKEN="<IAM_token>"
    
  2. Clone the cloudapi repository:

    cd ~/ && git clone --depth=1 https://github.com/yandex-cloud/cloudapi
    

    Below, we assume the repository contents are stored in the ~/cloudapi/ directory.

  3. Call the ClusterService.ListLogs method, e.g., via the following gRPCurl request:

    grpcurl \
      -format json \
      -import-path ~/cloudapi/ \
      -import-path ~/cloudapi/third_party/googleapis/ \
      -proto ~/cloudapi/yandex/cloud/mdb/postgresql/v1/cluster_service.proto \
      -rpc-header "Authorization: Bearer $IAM_TOKEN" \
      -d '{
            "cluster_id": "<cluster_ID>",
            "service_type": "<service_type>",
            "column_filter": [
              "<column_1>", "<column_2>", ..., "<column_N>"
            ],
            "from_time": "<time_range_left_boundary>",
            "to_time": "<time_range_right_boundary>"
          }' \
      mdb.api.cloud.yandex.net:443 \
      yandex.cloud.mdb.postgresql.v1.ClusterService.ListLogs
    

    Where:

    • service_type: Source service type for logs:

      • POSTGRESQL: PostgreSQL operations.
      • POOLER: Connection manager operations.
    • column_filter: List of output data columns:

      • hostname: Host name.
      • db: Database name.
      • level: Logging level, e.g., info.
      • pid: ID of the current session’s server process.
      • text: Message output by the component.

      Note

      The complete list of columns depends on the selected service_type. The example only shows the main columns for the POOLER type.

      You can specify more than one column in the column_filter parameter if you want to filter logs by multiple columns.

    • from_time: Start of the time range in RFC-3339 format, e.g., 2024-09-18T15:04:05Z.

    • to_time: End of the time range in the same format as from_time.

    You can request the cluster ID with the list of clusters in the folder.

  4. Check the server response to make sure your request was successful.

Getting a cluster log streamGetting a cluster log stream

This method allows you to get cluster logs in real time.

CLI
REST API
gRPC API

If you do not have the Yandex Cloud CLI installed yet, install and initialize it.

By default, the CLI uses the folder specified when creating the profile. To change the default folder, use the yc config set folder-id <folder_ID> command. You can also set a different folder for any specific command using the --folder-name or --folder-id parameter.

To view cluster logs in real time, run this command:

yc managed-postgresql cluster list-logs <cluster_name_or_ID> --follow

You can request the cluster name and ID with the list of clusters in the folder.

  1. Get an IAM token for API authentication and put it into an environment variable:

    export IAM_TOKEN="<IAM_token>"
    
  2. Call the Cluster.StreamLogs method, e.g., via the following cURL request:

    curl \
      --request GET \
      --header "Authorization: Bearer $IAM_TOKEN" \
      --url 'https://mdb.api.cloud.yandex.net/managed-postgresql/v1/clusters/<cluster_ID>:stream_logs' \
      --url-query serviceType=<service_type> \
      --url-query columnFilter=<column_list>
    

    Where:

    • serviceType: Type of the service to get logs for:

      • POSTGRESQL: PostgreSQL operation logs.
      • POOLER: Connection pooler operation logs.
    • columnFilter: Name of the data column:

      • hostname: Host name.
      • db: Database name.
      • level: Logging level, e.g., info.
      • pid: ID of the current session’s server process.
      • text: Message output by the component.

      Note

      The complete list of columns depends on the selected serviceType. The example only shows the main columns for the POOLER type.

      You can specify only one column in the columnFilter parameter. If you want to filter logs by more than one column, provide a list of the columns in several parameters.

    You can request the cluster ID with the list of clusters in the folder.

  3. Check the server response to make sure your request was successful.

    The command continues running after execution, displaying new logs in its output in real time.

  1. Get an IAM token for API authentication and put it into an environment variable:

    export IAM_TOKEN="<IAM_token>"
    
  2. Clone the cloudapi repository:

    cd ~/ && git clone --depth=1 https://github.com/yandex-cloud/cloudapi
    

    Below, we assume the repository contents are stored in the ~/cloudapi/ directory.

  3. Call the ClusterService.StreamLogs method, e.g., via the following gRPCurl request:

    grpcurl \
      -format json \
      -import-path ~/cloudapi/ \
      -import-path ~/cloudapi/third_party/googleapis/ \
      -proto ~/cloudapi/yandex/cloud/mdb/postgresql/v1/cluster_service.proto \
      -rpc-header "Authorization: Bearer $IAM_TOKEN" \
      -d '{
            "cluster_id": "<cluster_ID>",
            "service_type": "<service_type>",
            "column_filter": [
              "<column_1>", "<column_2>", ..., "<column_N>"
            ]
          }' \
      mdb.api.cloud.yandex.net:443 \
      yandex.cloud.mdb.postgresql.v1.ClusterService.StreamLogs
    

    Where:

    • service_type: Type of the service to get logs for:

      • POSTGRESQL: PostgreSQL operation logs.
      • POOLER: Connection pooler operation logs.
    • column_filter: List of output data columns:

      • hostname: Host name.
      • db: Database name.
      • level: Logging level, e.g., info.
      • pid: ID of the current session’s server process.
      • text: Message output by the component.

      Note

      The complete list of columns depends on the selected service_type. The example only shows the main columns for the POOLER type.

      You can specify more than one column in the column_filter parameter if you want to filter logs by multiple columns.

    You can request the cluster ID with the list of clusters in the folder.

  4. Check the server response to make sure your request was successful.

    The command continues running after execution, displaying new logs in its output in real time.

Was the article helpful?

Previous
Hunspell dictionaries for full-text search
Next
Performance diagnostics
© 2025 Direct Cursus Technology L.L.C.