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
Security in Yandex Cloud
  • Key security principles
  • Division of responsibility
  • Compliance
  • Security measures on the Yandex Cloud side
  • Security tools available to cloud service users
    • All tutorials
      • Searching for Yandex Cloud events in Query
      • Searching for Yandex Cloud events in Object Storage
      • Searching for Yandex Cloud events in Cloud Logging
      • Alert settings in Monitoring
      • Configuring responses in Cloud Logging and Cloud Functions
      • Processing Audit Trails events
      • Exporting audit logs to MaxPatrol SIEM
      • Exporting audit logs to SIEM Splunk systems
      • Uploading audit logs to ArcSight SIEM
      • Transferring logs from a VM to Cloud Logging
      • Writing load balancer logs to PostgreSQL
      • Transferring logs from Container Optimized Image to Cloud Logging
  • User support policy during vulnerability scanning
  • Security bulletins
  • Public IP address ranges

In this article:

  • Who deleted a folder
  • Who created/stopped/restarted/deleted a VM instance
  • What actions did a specific user perform over a period of time
  • Searching for events that occurred to objects in a given folder
  • What's next
  1. Tutorials
  2. Collecting, monitoring, and analyzing audit logs
  3. Searching for Yandex Cloud events in Cloud Logging

Searching for Yandex Cloud events in Yandex Cloud Logging

Written by
Yandex Cloud
Updated at April 9, 2025
  • Who deleted a folder
  • Who created/stopped/restarted/deleted a VM instance
  • What actions did a specific user perform over a period of time
  • Searching for events that occurred to objects in a given folder
  • What's next

Who deleted a folderWho deleted a folder

Searching by ID:

json_payload.event_type="yandex.cloud.audit.resourcemanager.DeleteFolder" and json_payload.details.folder_id="<folder_ID>"

Searching by name:

json_payload.event_type="yandex.cloud.audit.resourcemanager.DeleteFolder" and json_payload.details.folder_name="<folder_name>"

Who created/stopped/restarted/deleted a VM instanceWho created/stopped/restarted/deleted a VM instance

Searching by VM instance ID:

json_payload.details.instance_id="<VM_ID>" and (json_payload.event_type="yandex.cloud.audit.compute.CreateInstance" or json_payload.event_type="yandex.cloud.audit.compute.UpdateInstance" or json_payload.event_type="yandex.cloud.audit.compute.DeleteInstance" or json_payload.event_type="yandex.cloud.audit.compute.StartInstance" or json_payload.event_type="yandex.cloud.audit.compute.StopInstance" or json_payload.event_type="yandex.cloud.audit.compute.RestartInstance")

What actions did a specific user perform over a period of timeWhat actions did a specific user perform over a period of time

Searching by user ID:

json_payload.authentication.subject_id="<user_ID>" and json_payload.event_time>"2021-03-01" and json_payload.event_time<"2021-04-01"

Searching by username:

json_payload.authentication.subject_name="<username>" and json_payload.event_time>"2021-03-01" and json_payload.event_time<"2021-04-01"

Searching for events that occurred to objects in a given folderSearching for events that occurred to objects in a given folder

Searching by folder ID:

json_payload.resource_metadata.path[1].resource_type="resource-manager.folder" and json_payload.resource_metadata.path[1].resource_id="<folder_ID>") or (json_payload.resource_metadata.path[2].resource_type="resource-manager.folder" and json_payload.resource_metadata.path[2].resource_id="<folder_ID>"

Searching by folder name:

json_payload.resource_metadata.path[1].resource_type="resource-manager.folder" and json_payload.resource_metadata.path[1].resource_name="<folder_name>") or (json_payload.resource_metadata.path[2].resource_type="resource-manager.folder" and json_payload.resource_metadata.path[2].resource_name="<folder_name>"

What's nextWhat's next

Review event examples in the Yandex Cloud Security Solution Library.

Note

Yandex Cloud Security Solution Library is a public repo on GitHub with a set of examples and recommendations on how to build a secure infrastructure in Yandex Cloud.

Was the article helpful?

Previous
Searching for Yandex Cloud events in Object Storage
Next
Alert settings in Monitoring
Yandex project
© 2025 Yandex.Cloud LLC