Yandex Cloud
Search
Contact UsGet started
  • Blog
  • Pricing
  • Documentation
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • ML & AI
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Customer Stories
    • Gateway to Russia
    • Cloud for Startups
    • Education and Science
  • Blog
  • Pricing
  • Documentation
Yandex project
© 2025 Yandex.Cloud LLC
Yandex Application Load Balancer
  • Getting started
    • All guides
    • Creating Application Load Balancer infrastructure through a wizard
      • Creating an L7 load balancer
      • Editing an L7 load balancer
      • Getting information about an L7 load balancer
      • Viewing L7 load balancer statistics
      • Viewing L7 load balancer logs
      • Setting up L7 load balancer logging
      • Getting log group ID of an L7 load balancer
      • Stopping and starting an L7 load balancer
      • Moving a VM to a target group in a new availability zone
      • Deleting an L7 load balancer
    • Viewing operations with resources
  • Access management
  • Pricing policy
  • Terraform reference
  • Monitoring metrics
  • Audit Trails events
  • L7 load balancer logs
  • Release notes
  1. Step-by-step guides
  2. L7 load balancers
  3. Viewing L7 load balancer logs

Viewing L7 load balancer logs

Written by
Yandex Cloud
Updated at May 13, 2025

You can configure the delivery of L7 load balancer logs to a Yandex Cloud Logging log group.

To view L7 Load balancer logs:

Management console
  1. In the management console, select the folder with your load balancer.
  2. Select Application Load Balancer.
  3. Select the load balancer you need.
  4. Navigate to the Logs tab.
  5. Select the number of messages per page and the time interval: 1 hour, 3 hours, 1 day, 1 week, 2 weeks.
  6. To see the message details, click the arrow icon on its left.

You can also view logs in Yandex Cloud Logging:

Management console
CLI
API
  1. In the management console, select the folder with your log group.
  2. Select Cloud Logging.
  3. Select the log group receiving your load balancer logs.
  4. Select the number of messages per page and the time interval: 1 hour, 3 hours, 1 day, 1 week, 2 weeks.
  5. To see the message details, click the arrow icon on its left.

If you do not have the Yandex Cloud (CLI) command line interface yet, install and initialize it.

The folder specified when creating the CLI profile is used by default. To change the default folder, use the yc config set folder-id <folder_ID> command. You can specify a different folder using the --folder-name or --folder-id parameter.

To see the messages in JSON format, run this command:

yc logging read \
  --group-name=<log_group_name> \
  --format=json

Where:

  • --group-name: Name of the log group receiving your load balancer logs.
  • --format: Log output format.

Result:

[
  {
    "uid": "488ece3c-75b8-4d35-95ac-2b49********",
    "resource": {},
    "timestamp": "2021-06-22T02:10:40Z",
    "ingested_at": "2021-06-22T08:49:15.716Z",
    "saved_at": "2021-06-22T08:49:16.176097Z",
    "level": "INFO",
    "message": "My message",
    "json_payload": {
      "request_id": "1234"
    }
  }
]

For more information on how to view logs with CLI, see this {#T} article.

To view log group messages, use the LogReadingService/Read gRPC API call.

Was the article helpful?

Previous
Viewing L7 load balancer statistics
Next
Setting up L7 load balancer logging
Yandex project
© 2025 Yandex.Cloud LLC