Yandex Cloud
Search
Contact UsGet started
  • Pricing
  • 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
  • Pricing
  • Customer Stories
  • Documentation
  • Blog
© 2025 Direct Cursus Technology L.L.C.
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
      • Setting up alerts
      • Viewing L7 load balancer logs
      • Setting up L7 load balancer logging
      • Getting a log group ID of an L7 load balancer
      • Stopping and starting an L7 load balancer
      • Moving a VM to a target group in a different availability zone
      • Deleting an L7 load balancer
    • Viewing service resource operations
  • 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 November 11, 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 the load balancer is in.
  2. Select Application Load Balancer.
  3. Select the load balancer to view logs for.
  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 the 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 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 the entries 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 article.

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

Was the article helpful?

Previous
Setting up alerts
Next
Setting up L7 load balancer logging
© 2025 Direct Cursus Technology L.L.C.