Which of the following is NOT a standard audit log type provided by Google Cloud Platform?
Think about the main categories of audit logs GCP provides for tracking user and system actions.
GCP provides Admin Activity, Data Access, and Policy Denied logs as standard audit logs. System Performance logs are not a standard audit log type.
What is the output of the following gcloud command when successfully enabling audit logs for the Compute Engine API?
gcloud logging sinks create my-sink storage.googleapis.com/my-bucket --log-filter='resource.type="gce_instance"' --project=my-projectSuccessful creation of a sink shows a confirmation message with the sink's full path.
The command creates a logging sink and outputs a confirmation message with the sink's full resource path.
Which configuration snippet correctly excludes Data Access logs for BigQuery from being ingested into Cloud Logging?
Check the filter syntax and ensure the exclusion is enabled.
Option D correctly uses the logName and protoPayload.methodName fields and sets disabled to false to enable exclusion.
You notice that Admin Activity audit logs for Cloud Storage are missing in Cloud Logging. Which of the following is the MOST likely cause?
Audit logs require the service API to be enabled to generate logs.
If the Cloud Storage API is disabled, no audit logs for it will be generated. Audit logs are available for many services, not just Compute Engine.
Arrange the steps in the correct order to enable audit logging for a new Google Cloud service and verify logs are generated.
Think about enabling the service first, then generating logs, then exporting if needed, and finally verifying.
First enable the service API, then perform actions to generate logs, next configure sinks if exporting is needed, and finally verify logs in Cloud Logging.