/cloud-logging-cross-project-configuration
Configure and troubleshoot Google Cloud cross-project centralized logging and read-time aggregation. Use when: - Setting up log routing from multiple projects/folders/organizations to a central log bucket. - Creating cross-project log sinks and configuring central log buckets. -
$ npx -y skills add google/skills --skill cloud-logging-cross-project-configuration --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/cloud-logging-cross-project-configuration
Context preview
The summary Claude sees to decide when to auto-load this skill.
Configure and troubleshoot Google Cloud cross-project centralized logging and read-time aggregation. Use when: - Setting up log routing from multiple projects/folders/organizations to a central log bucket. - Creating cross-project log sinks and configuring central log buckets. -
SKILL.md
cloud-logging-cross-project-configuration.SKILL.mdname: cloud-logging-cross-project-configuration
description: >-
Configure and troubleshoot Google Cloud cross-project centralized logging and read-time aggregation.
Use when:
- Setting up log routing from multiple projects/folders/organizations to a central log bucket.
- Creating cross-project log sinks and configuring central log buckets.
- Troubleshooting cross-project routing.
Don't use for single-project basic configurations.
metadata:
category: CloudObservabilityAndMonitoring
Configuring Cross-Project Logging
This skill describes how to use `gcloud` commands to configure Cloud Logging so that you store log data in a central location, regardless of the point of origin. The skill also describes how to query log data when that data is stored in multiple projects.
> [!IMPORTANT] **Sandbox Network Limitation (CRITICAL for Agent Testing):** > During evaluation or in restricted sandboxed environments, network traffic to > GCP APIs is blocked. Do **NOT** run network discovery commands to find > resource names, project IDs, or organization IDs. Always use the exact project > IDs or placeholders provided in the user prompt or instructions, for example, > `{project_id}`, `{source_project_id}`, `{central_project_id}`. Assume these > resources exist and proceed directly with configuration commands. Running > these discovery commands will cause the execution to hang and timeout.
Safety and Confirmation Tiers (CRITICAL)
Before executing any commands on behalf of the user, you MUST adhere to the following safety tiers based on the action requested:
1. **Tier R: Read-Only**
- **Description:** Commands that only read state or query logs.
- **Example commands:**
- `gcloud logging read`
- `gcloud logging buckets list`
- **Rule:** No confirmation needed. You may execute these commands
immediately to gather information. 2. **Tier M: Mutation (Non-Billing)**
- **Description:** Configuration modifications or free metadata creations
that do not incur direct storage or billing costs and do not affect resource security/access policies.
- **Example commands:**
- `gcloud logging views create`
- `gcloud logging views update`
- `gcloud logging scopes create`
- `gcloud logging buckets create`
- **Rule:** No confirmation needed. You may execute these commands
immediately to apply configurations. 3. **Tier B: Billing and Security-Sensitive Mutations (High-Risk)**
- **Description:** Operations that create billing-inducing resources or
integrations, or modify security and IAM access control policies (presenting a risk of privilege escalation).
- **Example commands:**
- `gcloud logging metrics create`
- `gcloud logging links create`
- `gcloud projects add-iam-policy-binding`
- **Rule:** **Interactive confirmation required.** These commands create
resources that incur billing costs or alter security access. You MUST present the exact, literal command and receive user confirmation before executing. NEVER execute in the same turn as asking. 4. **Tier D: Causes irreversible data loss**
- **Description:** Actions that permanently discard or delete logs, for
example sink exclusions.
- **Example commands:**
- `gcloud logging buckets delete`
- `gcloud logging sinks update --add-exclusion`
- **Rule:** **Explicit typed confirmation required.** These commands
discard or delete logs immediately and irreversibly, or they may result in log data not being stored. You MUST ask for explicit typed confirmation, for example, "Yes, discard logs", and halt execution until the user replies.
Decision Matrix: Centralized Storage vs. Distributed Storage with Read-Time Aggregation
Use this decision matrix to evaluate and choose between **Centralized Storage** and **Read-Time Aggregation**. With centralized storage, log data is routed to one log bucket, regardless of where the data originates. You write queries against the centralized log bucket. With read-time aggregation, log data is stored by the resource where it originates. However, a single query aggregates the data by querying all resources.
After you have determined the optimal architecture for handling cross-project logs, follow the corresponding configuration steps detailed below.
| Criterion | Centralized Storage | Read-Time Aggregation | | :-------------------- | :----------------------- | :----------------------- | | **GCP Project Scale** | Scales to thousands of | Best for < 375 projects. | : : projects. : : | **Log Storage** | Consolidated in a single | Resides in originating | : : log bucket. : resources. : | **SQL Analytics** | Easy; unified querying | Hard; requires querying | : : via Observability : multiple log buckets. : : : Analytics. : : | **Access Control** | Scoped access via log | Requires IAM access to | : : views on the centralized : all views on resources : : : log bucket. : that store log data. : | **Configuration** | Options vary based on | Will not interfere with | : **Complexity** : Project, Folder, : bucket-based log-based : : : Organization structure. : metrics. : | **Cost** | Potential for duplicate | Cost-effective; no data | : : storage of log buckets : replication. : : : if exclusions aren't : : : : set. :
Read more
name: cloud-logging-cross-project-configuration description: >- Configure and troubleshoot Google Cloud cross-project centralized logging and read-time aggregation. Use when: - Setting up log routing from multiple projects/folders/organizations to a central log bucket. - Creating cross-project log sinks and configuring central log buckets. - Troubleshooting cross-project routing. Don't use for single-project basic configurations. metadata: category: CloudObservabilityAndMonitoring
Configuring Cross-Project Logging
This skill describes how to use `gcloud` commands to configure Cloud Logging so that you store log data in a central location, regardless of the point of origin. The skill also describes how to query log data when that data is stored in multiple projects.
> [!IMPORTANT] **Sandbox Network Limitation (CRITICAL for Agent Testing):** > During evaluation or in restricted sandboxed environments, network traffic to > GCP APIs is blocked. Do **NOT** run network discovery commands to find > resource names, project IDs, or organization IDs. Always use the exact project > IDs or placeholders provided in the user prompt or instructions, for example, > `{project_id}`, `{source_project_id}`, `{central_project_id}`. Assume these > resources exist and proceed directly with configuration commands. Running > these discovery commands will cause the execution to hang and timeout.
Safety and Confirmation Tiers (CRITICAL)
Before executing any commands on behalf of the user, you MUST adhere to the following safety tiers based on the action requested:
1. **Tier R: Read-Only**
- **Description:** Commands that only read state or query logs.
- **Example commands:**
- `gcloud logging read`
- `gcloud logging buckets list`
- **Rule:** No confirmation needed. You may execute these commands
immediately to gather information. 2. **Tier M: Mutation (Non-Billing)**
- **Description:** Configuration modifications or free metadata creations
that do not incur direct storage or billing costs and do not affect resource security/access policies.
- **Example commands:**
- `gcloud logging views create`
- `gcloud logging views update`
- `gcloud logging scopes create`
- `gcloud logging buckets create`
- **Rule:** No confirmation needed. You may execute these commands
immediately to apply configurations. 3. **Tier B: Billing and Security-Sensitive Mutations (High-Risk)**
- **Description:** Operations that create billing-inducing resources or
integrations, or modify security and IAM access control policies (presenting a risk of privilege escalation).
- **Example commands:**
- `gcloud logging metrics create`
- `gcloud logging links create`
- `gcloud projects add-iam-policy-binding`
- **Rule:** **Interactive confirmation required.** These commands create
resources that incur billing costs or alter security access. You MUST present the exact, literal command and receive user confirmation before executing. NEVER execute in the same turn as asking. 4. **Tier D: Causes irreversible data loss**
- **Description:** Actions that permanently discard or delete logs, for
example sink exclusions.
- **Example commands:**
- `gcloud logging buckets delete`
- `gcloud logging sinks update --add-exclusion`
- **Rule:** **Explicit typed confirmation required.** These commands
discard or delete logs immediately and irreversibly, or they may result in log data not being stored. You MUST ask for explicit typed confirmation, for example, "Yes, discard logs", and halt execution until the user replies.
Decision Matrix: Centralized Storage vs. Distributed Storage with Read-Time Aggregation
Use this decision matrix to evaluate and choose between **Centralized Storage** and **Read-Time Aggregation**. With centralized storage, log data is routed to one log bucket, regardless of where the data originates. You write queries against the centralized log bucket. With read-time aggregation, log data is stored by the resource where it originates. However, a single query aggregates the data by querying all resources.
After you have determined the optimal architecture for handling cross-project logs, follow the corresponding configuration steps detailed below.
| Criterion | Centralized Storage | Read-Time Aggregation | | :-------------------- | :----------------------- | :----------------------- | | **GCP Project Scale** | Scales to thousands of | Best for < 375 projects. | : : projects. : : | **Log Storage** | Consolidated in a single | Resides in originating | : : log bucket. : resources. : | **SQL Analytics** | Easy; unified querying | Hard; requires querying | : : via Observability : multiple log buckets. : : : Analytics. : : | **Access Control** | Scoped access via log | Requires IAM access to | : : views on the centralized : all views on resources : : : log bucket. : that store log data. : | **Configuration** | Options vary based on | Will not interfere with | : **Complexity** : Project, Folder, : bucket-based log-based : : : Organization structure. : metrics. : | **Cost** | Potential for duplicate | Cost-effective; no data | : : storage of log buckets : replication. : : : if exclusions aren't : : : : set. :
This repository contains Agent Skills for Google products and technologies, including Google Cloud. This repository is under active development.
Repo: google/skills
Other skills on google-skills.
- /data-manager-api-audience-ingestion
Guides developers through managing (adding, removing, and clearing) audience members for Google products using the Data Manager API and its associated client libraries. Use this skill when the user wants to upload audience members, remove specific users, or clear/replace an
Open skill - /data-manager-api-event-ingestion
Guides developers through implementing event and conversion ingestion to Google products using the Data Manager API /v1/events/ingest endpoint and its associated client libraries. Use this skill when the user wants to upload offline conversions, enhanced conversions for leads,
Open skill - /data-manager-api-setup
Guides developers through client library installation and authentication setup steps for the Data Manager API. Use this skill when a user is getting started with the Data Manager API and needs to setup their local environment, install the client library, or setup access to the
Open skill - /google-ads-api-account-diagnostics
Diagnoses Google Ads account performance issues such as conversion loss (value or volume), low lead flow/volume, and lost impression share (opportunities) due to ad rank, bids, or budgets. Use when troubleshooting sudden performance drops, analyzing campaign impression share
Open skill - /google-ads-api-mcp-setup
Guides developers through downloading, configuring, and installing the official open-source Google Ads MCP Server. Use this skill when a user wants to connect their AI assistant (such as Gemini, Claude Code, or Cursor) to their Google Ads account to query campaigns or retrieve
Open skill - /google-ads-api-quickstart
Guides developers through Google Ads API quickstart: credential setup, choosing from 6 client libraries/REST, configuring environments, and running a "retrieve campaigns" script. Troubleshoots common setup errors: USER_PERMISSION_DENIED, login_customer_id issues, and
Open skill

