Reputation: 4994
I am trying to keep as many logs for as long as possible in StackDriver tool. I understand that the logs can be created, deleted and read (using client libraries or gcloud CLI).
"Audit logs" are not a concern in my case as they can not be deleted but what about other logs?
E.g : syslog from a Compute Instance VM or container.
Is there a way to know which User account or Service account was used to delete logs from Stackdriver? Deletion in StackDriver get logged?
Upvotes: 0
Views: 389
Reputation: 880
Log retention periods in Stackdriver Logging is documented in https://cloud.google.com/logging/quotas#logs_retention_periods
As of August 2019:
In Stackdriver, individual log entries are grouped in a "Log", which are named with LogName. Logs can be deleted using the DeleteLog API or using the equivalent gcloud logging logs delete CLI command.
To check who deleted the log, you can check the admin activity audit logs with a filter like:
resource.type=logging_log AND
logName:cloudaudit.googleapis.com%2Factivity AND
protoPayload.methodName=google.logging.v2.LoggingServiceV2.DeleteLog
The protoPayload.authenticationInfo.principalEmail
field will contain the user account or service account used to call the API.
Upvotes: 2