feat(sources/cloud-logging-admin): add source, tools, integration test and docs#2137
Conversation
Summary of ChangesHello @pkalsi97, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request significantly expands the toolbox's capabilities by integrating with Google Cloud Logging. It introduces a new "cloud-logging-admin" source, enabling users to connect to Cloud Logging with various authentication methods. Complementing this source are three powerful new tools designed to manage and query log data: listing available log names, identifying resource types, and executing detailed log queries. These additions are supported by new documentation and robust integration tests, ensuring reliability and ease of use for managing Google Cloud logs. Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request introduces a new cloud-logging-admin source and three associated tools, complete with documentation and integration tests. The implementation is well-structured and consistent with the existing codebase. I've identified a critical issue that could lead to a panic, a few broken links in the documentation, and an area where error handling could be improved for a better user experience. Overall, this is a solid contribution.
|
Thank you for the PR. We will review soon. |
|
Hey @Yuan325 thanks for the review. I'll get it done shortly. |
|
/gcbrun |
|
I tried to run the integration tests and ran into some errors: Also, seems like the cleanup was not working as expected: Let me know if there's anything I should set up in our test GCP project for this to work. Thank you! |
|
@Yuan325 Thanks for review! I have made the changes as requested. I think both of the failures in the integration test are happening because the service account might not have roles/logging.admin permission. Can you double check this once and let me know ? |
|
/gcbrun |
…pointer dereference
365fd71 to
f7d87d6
Compare
f7d87d6 to
cf685f2
Compare
|
/gcbrun |
Yuan325
left a comment
There was a problem hiding this comment.
Thank you for your contribution! :)
…tion test and docs (#2137) ## Description This PR adds cloud logging admin source, tools, integration test and docs. 1. Source is implemented in a manner consistent with the BigQuery source. Supports ADC, OAuth and impersonate Service Account. 2. Total of 3 tools have been implemented - `cloud-logging-admin-list-log-names` - `cloud-logging-admin-list-resource-types` - `cloud-logging-admin-query-logs` 3. docs added for resource and tools. 4. Supporting integration test is added with updated ci Note for reviewers: 1. Integration test runs on cloud, will require `LOGADMIN_PROJECT` env variable, the test creates logs in the project using the `logging` client and then verifies working of the tools using the `logadmin` client. 2. Moved `cache.go` from the BigQuery source to `sources/cache.go` due to shared utility. Regarding Tools: 1. `cloud-logging-admin-list-log-names` uses `client.Logs()` instead of `client.Entries()`, as the latter is resource heavy and the tradeoff was not being able to apply any filters, tool has an optional parameter `limit` which defaults to 200. 2. `cloud-logging-admin-list-resource-types` uses `client.ResourceDescriptors(ctx)`, aim of the tool is to enable the agent become aware of the the resources present and utilise this information in writing filters. 3. `cloud-logging-admin-query-logs` tool enables search and read logs from Google Cloud. Parameters: `filter` (optional): A text string to search for specific logs. `newestFirst` (optional): A simple true/false switch for ordering. `startTime ` (optional): The start date and time to search from (e.g., 2025-12-09T00:00:00Z). Defaults to 30 days ago if not set. `endTime` (optional): The end date and time to search up to. Defaults to "now". `verbose` (optional): If set to true, Shows all available details for each log entry else shows only the main info (timestamp, message, severity). `limit` (optional): The maximum number of log entries to return (default is 200). Looking forward to the feedback here, as `verbose` is simply implemented to save context tokens, any alternative suggestion here is also welcomed. Simple tools.yaml ``` sources: my-logging-admin: kind: cloud-logging-admin project: <Add project> useClientOAuth: false tools: list_resource_types: kind: cloud-logging-admin-list-resource-types source: my-logging-admin description: List the types of resource that are indexed by Cloud Logging. list_log_names: kind: cloud-logging-admin-list-log-names source: my-logging-admin description: List log names matching a filter criteria. query_logs: kind: cloud-logging-admin-query-logs source: my-logging-admin description: query logs ``` ## PR Checklist - [x] Make sure you reviewed [CONTRIBUTING.md](https://github.com/googleapis/genai-toolbox/blob/main/CONTRIBUTING.md) - [x] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/genai-toolbox/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea - [x] Ensure the tests and linter pass - [x] Code coverage does not decrease (if any source code was changed) - [x] Appropriate docs were updated (if necessary) - [ ] Make sure to add `!` if this involve a breaking change 🛠️ Fixes #1772 @anubhav756 @averikitsch Thanks for the guidance and feedback on the implementation plan. --------- Co-authored-by: Yuan Teoh <yuanteoh@google.com> Co-authored-by: Yuan Teoh <45984206+Yuan325@users.noreply.github.com> 252fc30
…tion test and docs (googleapis#2137) ## Description This PR adds cloud logging admin source, tools, integration test and docs. 1. Source is implemented in a manner consistent with the BigQuery source. Supports ADC, OAuth and impersonate Service Account. 2. Total of 3 tools have been implemented - `cloud-logging-admin-list-log-names` - `cloud-logging-admin-list-resource-types` - `cloud-logging-admin-query-logs` 3. docs added for resource and tools. 4. Supporting integration test is added with updated ci Note for reviewers: 1. Integration test runs on cloud, will require `LOGADMIN_PROJECT` env variable, the test creates logs in the project using the `logging` client and then verifies working of the tools using the `logadmin` client. 2. Moved `cache.go` from the BigQuery source to `sources/cache.go` due to shared utility. Regarding Tools: 1. `cloud-logging-admin-list-log-names` uses `client.Logs()` instead of `client.Entries()`, as the latter is resource heavy and the tradeoff was not being able to apply any filters, tool has an optional parameter `limit` which defaults to 200. 2. `cloud-logging-admin-list-resource-types` uses `client.ResourceDescriptors(ctx)`, aim of the tool is to enable the agent become aware of the the resources present and utilise this information in writing filters. 3. `cloud-logging-admin-query-logs` tool enables search and read logs from Google Cloud. Parameters: `filter` (optional): A text string to search for specific logs. `newestFirst` (optional): A simple true/false switch for ordering. `startTime ` (optional): The start date and time to search from (e.g., 2025-12-09T00:00:00Z). Defaults to 30 days ago if not set. `endTime` (optional): The end date and time to search up to. Defaults to "now". `verbose` (optional): If set to true, Shows all available details for each log entry else shows only the main info (timestamp, message, severity). `limit` (optional): The maximum number of log entries to return (default is 200). Looking forward to the feedback here, as `verbose` is simply implemented to save context tokens, any alternative suggestion here is also welcomed. Simple tools.yaml ``` sources: my-logging-admin: kind: cloud-logging-admin project: <Add project> useClientOAuth: false tools: list_resource_types: kind: cloud-logging-admin-list-resource-types source: my-logging-admin description: List the types of resource that are indexed by Cloud Logging. list_log_names: kind: cloud-logging-admin-list-log-names source: my-logging-admin description: List log names matching a filter criteria. query_logs: kind: cloud-logging-admin-query-logs source: my-logging-admin description: query logs ``` ## PR Checklist - [x] Make sure you reviewed [CONTRIBUTING.md](https://github.com/googleapis/genai-toolbox/blob/main/CONTRIBUTING.md) - [x] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/genai-toolbox/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea - [x] Ensure the tests and linter pass - [x] Code coverage does not decrease (if any source code was changed) - [x] Appropriate docs were updated (if necessary) - [ ] Make sure to add `!` if this involve a breaking change 🛠️ Fixes googleapis#1772 @anubhav756 @averikitsch Thanks for the guidance and feedback on the implementation plan. --------- Co-authored-by: Yuan Teoh <yuanteoh@google.com> Co-authored-by: Yuan Teoh <45984206+Yuan325@users.noreply.github.com> 252fc30
…t and docs (googleapis#2137) ## Description This PR adds cloud logging admin source, tools, integration test and docs. 1. Source is implemented in a manner consistent with the BigQuery source. Supports ADC, OAuth and impersonate Service Account. 2. Total of 3 tools have been implemented - `cloud-logging-admin-list-log-names` - `cloud-logging-admin-list-resource-types` - `cloud-logging-admin-query-logs` 3. docs added for resource and tools. 4. Supporting integration test is added with updated ci Note for reviewers: 1. Integration test runs on cloud, will require `LOGADMIN_PROJECT` env variable, the test creates logs in the project using the `logging` client and then verifies working of the tools using the `logadmin` client. 2. Moved `cache.go` from the BigQuery source to `sources/cache.go` due to shared utility. Regarding Tools: 1. `cloud-logging-admin-list-log-names` uses `client.Logs()` instead of `client.Entries()`, as the latter is resource heavy and the tradeoff was not being able to apply any filters, tool has an optional parameter `limit` which defaults to 200. 2. `cloud-logging-admin-list-resource-types` uses `client.ResourceDescriptors(ctx)`, aim of the tool is to enable the agent become aware of the the resources present and utilise this information in writing filters. 3. `cloud-logging-admin-query-logs` tool enables search and read logs from Google Cloud. Parameters: `filter` (optional): A text string to search for specific logs. `newestFirst` (optional): A simple true/false switch for ordering. `startTime ` (optional): The start date and time to search from (e.g., 2025-12-09T00:00:00Z). Defaults to 30 days ago if not set. `endTime` (optional): The end date and time to search up to. Defaults to "now". `verbose` (optional): If set to true, Shows all available details for each log entry else shows only the main info (timestamp, message, severity). `limit` (optional): The maximum number of log entries to return (default is 200). Looking forward to the feedback here, as `verbose` is simply implemented to save context tokens, any alternative suggestion here is also welcomed. Simple tools.yaml ``` sources: my-logging-admin: kind: cloud-logging-admin project: <Add project> useClientOAuth: false tools: list_resource_types: kind: cloud-logging-admin-list-resource-types source: my-logging-admin description: List the types of resource that are indexed by Cloud Logging. list_log_names: kind: cloud-logging-admin-list-log-names source: my-logging-admin description: List log names matching a filter criteria. query_logs: kind: cloud-logging-admin-query-logs source: my-logging-admin description: query logs ``` ## PR Checklist - [x] Make sure you reviewed [CONTRIBUTING.md](https://github.com/googleapis/genai-toolbox/blob/main/CONTRIBUTING.md) - [x] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/genai-toolbox/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea - [x] Ensure the tests and linter pass - [x] Code coverage does not decrease (if any source code was changed) - [x] Appropriate docs were updated (if necessary) - [ ] Make sure to add `!` if this involve a breaking change 🛠️ Fixes googleapis#1772 @anubhav756 @averikitsch Thanks for the guidance and feedback on the implementation plan. --------- Co-authored-by: Yuan Teoh <yuanteoh@google.com> Co-authored-by: Yuan Teoh <45984206+Yuan325@users.noreply.github.com>
🤖 I have created a release *beep* *boop* --- ## [0.27.0](v0.26.0...v0.27.0) (2026-02-12) ### ⚠ BREAKING CHANGES * Update configuration file v2 ([#2369](https://github.com/googleapis/genai-toolbox/issues/2369))([293c1d6](https://github.com/googleapis/genai-toolbox/commit/293c1d6889c39807855ba5e01d4c13ba2a4c50ce)) * Update/add detailed telemetry for mcp endpoint compliant with OTEL semantic convention ([#1987](#1987)) ([478a0bd](478a0bd)) ### Features * **cli/invoke:** Add support for direct tool invocation from CLI ([#2353](#2353)) ([6e49ba4](6e49ba4)) * **cli/skills:** Add support for generating agent skills from toolset ([#2392](#2392)) ([80ef346](80ef346)) * **cloud-logging-admin:** Add source, tools, integration test and docs ([#2137](#2137)) ([252fc30](252fc30)) * **cockroachdb:** Add CockroachDB integration with cockroach-go ([#2006](#2006)) ([1fdd99a](1fdd99a)) * **prebuiltconfigs/alloydb-omni:** Implement Alloydb omni dataplane tools ([#2340](#2340)) ([e995349](e995349)) * **server:** Add Tool call error categories ([#2387](#2387)) ([32cb4db](32cb4db)) * **tools/looker:** support `looker-validate-project` tool ([#2430](#2430)) ([a15a128](a15a128)) ### Bug Fixes * **dataplex:** Capture GCP HTTP errors in MCP Toolbox ([#2347](#2347)) ([1d7c498](1d7c498)) * **sources/cockroachdb:** Update kind to type ([#2465](#2465)) ([2d341ac](2d341ac)) * Surface Dataplex API errors in MCP results ([#2347](https://github.com/googleapis/genai-toolbox/pull/2347))([1d7c498](https://github.com/googleapis/genai-toolbox/commit/1d7c4981164c34b4d7bc8edecfd449f57ad11e15)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --------- Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> Co-authored-by: Yuan Teoh <45984206+Yuan325@users.noreply.github.com>
🤖 I have created a release *beep* *boop* --- ## [0.27.0](v0.26.0...v0.27.0) (2026-02-12) ### ⚠ BREAKING CHANGES * Update configuration file v2 ([#2369](https://github.com/googleapis/genai-toolbox/issues/2369))([293c1d6](https://github.com/googleapis/genai-toolbox/commit/293c1d6889c39807855ba5e01d4c13ba2a4c50ce)) * Update/add detailed telemetry for mcp endpoint compliant with OTEL semantic convention ([#1987](#1987)) ([478a0bd](478a0bd)) ### Features * **cli/invoke:** Add support for direct tool invocation from CLI ([#2353](#2353)) ([6e49ba4](6e49ba4)) * **cli/skills:** Add support for generating agent skills from toolset ([#2392](#2392)) ([80ef346](80ef346)) * **cloud-logging-admin:** Add source, tools, integration test and docs ([#2137](#2137)) ([252fc30](252fc30)) * **cockroachdb:** Add CockroachDB integration with cockroach-go ([#2006](#2006)) ([1fdd99a](1fdd99a)) * **prebuiltconfigs/alloydb-omni:** Implement Alloydb omni dataplane tools ([#2340](#2340)) ([e995349](e995349)) * **server:** Add Tool call error categories ([#2387](#2387)) ([32cb4db](32cb4db)) * **tools/looker:** support `looker-validate-project` tool ([#2430](#2430)) ([a15a128](a15a128)) ### Bug Fixes * **dataplex:** Capture GCP HTTP errors in MCP Toolbox ([#2347](#2347)) ([1d7c498](1d7c498)) * **sources/cockroachdb:** Update kind to type ([#2465](#2465)) ([2d341ac](2d341ac)) * Surface Dataplex API errors in MCP results ([#2347](https://github.com/googleapis/genai-toolbox/pull/2347))([1d7c498](https://github.com/googleapis/genai-toolbox/commit/1d7c4981164c34b4d7bc8edecfd449f57ad11e15)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --------- Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> Co-authored-by: Yuan Teoh <45984206+Yuan325@users.noreply.github.com> c5524d3
🤖 I have created a release *beep* *boop* --- ## [0.27.0](googleapis/mcp-toolbox@v0.26.0...v0.27.0) (2026-02-12) ### ⚠ BREAKING CHANGES * Update configuration file v2 ([googleapis#2369](https://github.com/googleapis/genai-toolbox/issues/2369))([293c1d6](https://github.com/googleapis/genai-toolbox/commit/293c1d6889c39807855ba5e01d4c13ba2a4c50ce)) * Update/add detailed telemetry for mcp endpoint compliant with OTEL semantic convention ([googleapis#1987](googleapis#1987)) ([478a0bd](googleapis@478a0bd)) ### Features * **cli/invoke:** Add support for direct tool invocation from CLI ([googleapis#2353](googleapis#2353)) ([6e49ba4](googleapis@6e49ba4)) * **cli/skills:** Add support for generating agent skills from toolset ([googleapis#2392](googleapis#2392)) ([80ef346](googleapis@80ef346)) * **cloud-logging-admin:** Add source, tools, integration test and docs ([googleapis#2137](googleapis#2137)) ([252fc30](googleapis@252fc30)) * **cockroachdb:** Add CockroachDB integration with cockroach-go ([googleapis#2006](googleapis#2006)) ([1fdd99a](googleapis@1fdd99a)) * **prebuiltconfigs/alloydb-omni:** Implement Alloydb omni dataplane tools ([googleapis#2340](googleapis#2340)) ([e995349](googleapis@e995349)) * **server:** Add Tool call error categories ([googleapis#2387](googleapis#2387)) ([32cb4db](googleapis@32cb4db)) * **tools/looker:** support `looker-validate-project` tool ([googleapis#2430](googleapis#2430)) ([a15a128](googleapis@a15a128)) ### Bug Fixes * **dataplex:** Capture GCP HTTP errors in MCP Toolbox ([googleapis#2347](googleapis#2347)) ([1d7c498](googleapis@1d7c498)) * **sources/cockroachdb:** Update kind to type ([googleapis#2465](googleapis#2465)) ([2d341ac](googleapis@2d341ac)) * Surface Dataplex API errors in MCP results ([googleapis#2347](https://github.com/googleapis/genai-toolbox/pull/2347))([1d7c498](https://github.com/googleapis/genai-toolbox/commit/1d7c4981164c34b4d7bc8edecfd449f57ad11e15)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --------- Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> Co-authored-by: Yuan Teoh <45984206+Yuan325@users.noreply.github.com> c5524d3
🤖 I have created a release *beep* *boop* --- ## [0.27.0](googleapis/mcp-toolbox@v0.26.0...v0.27.0) (2026-02-12) ### ⚠ BREAKING CHANGES * Update configuration file v2 ([googleapis#2369](https://github.com/googleapis/genai-toolbox/issues/2369))([293c1d6](https://github.com/googleapis/genai-toolbox/commit/293c1d6889c39807855ba5e01d4c13ba2a4c50ce)) * Update/add detailed telemetry for mcp endpoint compliant with OTEL semantic convention ([googleapis#1987](googleapis#1987)) ([478a0bd](googleapis@478a0bd)) ### Features * **cli/invoke:** Add support for direct tool invocation from CLI ([googleapis#2353](googleapis#2353)) ([6e49ba4](googleapis@6e49ba4)) * **cli/skills:** Add support for generating agent skills from toolset ([googleapis#2392](googleapis#2392)) ([80ef346](googleapis@80ef346)) * **cloud-logging-admin:** Add source, tools, integration test and docs ([googleapis#2137](googleapis#2137)) ([252fc30](googleapis@252fc30)) * **cockroachdb:** Add CockroachDB integration with cockroach-go ([googleapis#2006](googleapis#2006)) ([1fdd99a](googleapis@1fdd99a)) * **prebuiltconfigs/alloydb-omni:** Implement Alloydb omni dataplane tools ([googleapis#2340](googleapis#2340)) ([e995349](googleapis@e995349)) * **server:** Add Tool call error categories ([googleapis#2387](googleapis#2387)) ([32cb4db](googleapis@32cb4db)) * **tools/looker:** support `looker-validate-project` tool ([googleapis#2430](googleapis#2430)) ([a15a128](googleapis@a15a128)) ### Bug Fixes * **dataplex:** Capture GCP HTTP errors in MCP Toolbox ([googleapis#2347](googleapis#2347)) ([1d7c498](googleapis@1d7c498)) * **sources/cockroachdb:** Update kind to type ([googleapis#2465](googleapis#2465)) ([2d341ac](googleapis@2d341ac)) * Surface Dataplex API errors in MCP results ([googleapis#2347](https://github.com/googleapis/genai-toolbox/pull/2347))([1d7c498](https://github.com/googleapis/genai-toolbox/commit/1d7c4981164c34b4d7bc8edecfd449f57ad11e15)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --------- Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> Co-authored-by: Yuan Teoh <45984206+Yuan325@users.noreply.github.com> c5524d3
🤖 I have created a release *beep* *boop* --- ## [0.27.0](v0.26.0...v0.27.0) (2026-02-12) ### ⚠ BREAKING CHANGES * Update configuration file v2 ([#2369](https://github.com/googleapis/genai-toolbox/issues/2369))([293c1d6](https://github.com/googleapis/genai-toolbox/commit/293c1d6889c39807855ba5e01d4c13ba2a4c50ce)) * Update/add detailed telemetry for mcp endpoint compliant with OTEL semantic convention ([#1987](#1987)) ([478a0bd](478a0bd)) ### Features * **cli/invoke:** Add support for direct tool invocation from CLI ([#2353](#2353)) ([6e49ba4](6e49ba4)) * **cli/skills:** Add support for generating agent skills from toolset ([#2392](#2392)) ([80ef346](80ef346)) * **cloud-logging-admin:** Add source, tools, integration test and docs ([#2137](#2137)) ([252fc30](252fc30)) * **cockroachdb:** Add CockroachDB integration with cockroach-go ([#2006](#2006)) ([1fdd99a](1fdd99a)) * **prebuiltconfigs/alloydb-omni:** Implement Alloydb omni dataplane tools ([#2340](#2340)) ([e995349](e995349)) * **server:** Add Tool call error categories ([#2387](#2387)) ([32cb4db](32cb4db)) * **tools/looker:** support `looker-validate-project` tool ([#2430](#2430)) ([a15a128](a15a128)) ### Bug Fixes * **dataplex:** Capture GCP HTTP errors in MCP Toolbox ([#2347](#2347)) ([1d7c498](1d7c498)) * **sources/cockroachdb:** Update kind to type ([#2465](#2465)) ([2d341ac](2d341ac)) * Surface Dataplex API errors in MCP results ([#2347](https://github.com/googleapis/genai-toolbox/pull/2347))([1d7c498](https://github.com/googleapis/genai-toolbox/commit/1d7c4981164c34b4d7bc8edecfd449f57ad11e15)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --------- Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> Co-authored-by: Yuan Teoh <45984206+Yuan325@users.noreply.github.com>
🤖 I have created a release *beep* *boop* --- ## [0.27.0](googleapis/mcp-toolbox@v0.26.0...v0.27.0) (2026-02-12) ### ⚠ BREAKING CHANGES * Update configuration file v2 ([googleapis#2369](https://github.com/googleapis/genai-toolbox/issues/2369))([293c1d6](https://github.com/googleapis/genai-toolbox/commit/293c1d6889c39807855ba5e01d4c13ba2a4c50ce)) * Update/add detailed telemetry for mcp endpoint compliant with OTEL semantic convention ([googleapis#1987](googleapis#1987)) ([478a0bd](googleapis@478a0bd)) ### Features * **cli/invoke:** Add support for direct tool invocation from CLI ([googleapis#2353](googleapis#2353)) ([6e49ba4](googleapis@6e49ba4)) * **cli/skills:** Add support for generating agent skills from toolset ([googleapis#2392](googleapis#2392)) ([80ef346](googleapis@80ef346)) * **cloud-logging-admin:** Add source, tools, integration test and docs ([googleapis#2137](googleapis#2137)) ([252fc30](googleapis@252fc30)) * **cockroachdb:** Add CockroachDB integration with cockroach-go ([googleapis#2006](googleapis#2006)) ([1fdd99a](googleapis@1fdd99a)) * **prebuiltconfigs/alloydb-omni:** Implement Alloydb omni dataplane tools ([googleapis#2340](googleapis#2340)) ([e995349](googleapis@e995349)) * **server:** Add Tool call error categories ([googleapis#2387](googleapis#2387)) ([32cb4db](googleapis@32cb4db)) * **tools/looker:** support `looker-validate-project` tool ([googleapis#2430](googleapis#2430)) ([a15a128](googleapis@a15a128)) ### Bug Fixes * **dataplex:** Capture GCP HTTP errors in MCP Toolbox ([googleapis#2347](googleapis#2347)) ([1d7c498](googleapis@1d7c498)) * **sources/cockroachdb:** Update kind to type ([googleapis#2465](googleapis#2465)) ([2d341ac](googleapis@2d341ac)) * Surface Dataplex API errors in MCP results ([googleapis#2347](https://github.com/googleapis/genai-toolbox/pull/2347))([1d7c498](https://github.com/googleapis/genai-toolbox/commit/1d7c4981164c34b4d7bc8edecfd449f57ad11e15)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --------- Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> Co-authored-by: Yuan Teoh <45984206+Yuan325@users.noreply.github.com>
…t and docs (googleapis#2137) ## Description This PR adds cloud logging admin source, tools, integration test and docs. 1. Source is implemented in a manner consistent with the BigQuery source. Supports ADC, OAuth and impersonate Service Account. 2. Total of 3 tools have been implemented - `cloud-logging-admin-list-log-names` - `cloud-logging-admin-list-resource-types` - `cloud-logging-admin-query-logs` 3. docs added for resource and tools. 4. Supporting integration test is added with updated ci Note for reviewers: 1. Integration test runs on cloud, will require `LOGADMIN_PROJECT` env variable, the test creates logs in the project using the `logging` client and then verifies working of the tools using the `logadmin` client. 2. Moved `cache.go` from the BigQuery source to `sources/cache.go` due to shared utility. Regarding Tools: 1. `cloud-logging-admin-list-log-names` uses `client.Logs()` instead of `client.Entries()`, as the latter is resource heavy and the tradeoff was not being able to apply any filters, tool has an optional parameter `limit` which defaults to 200. 2. `cloud-logging-admin-list-resource-types` uses `client.ResourceDescriptors(ctx)`, aim of the tool is to enable the agent become aware of the the resources present and utilise this information in writing filters. 3. `cloud-logging-admin-query-logs` tool enables search and read logs from Google Cloud. Parameters: `filter` (optional): A text string to search for specific logs. `newestFirst` (optional): A simple true/false switch for ordering. `startTime ` (optional): The start date and time to search from (e.g., 2025-12-09T00:00:00Z). Defaults to 30 days ago if not set. `endTime` (optional): The end date and time to search up to. Defaults to "now". `verbose` (optional): If set to true, Shows all available details for each log entry else shows only the main info (timestamp, message, severity). `limit` (optional): The maximum number of log entries to return (default is 200). Looking forward to the feedback here, as `verbose` is simply implemented to save context tokens, any alternative suggestion here is also welcomed. Simple tools.yaml ``` sources: my-logging-admin: kind: cloud-logging-admin project: <Add project> useClientOAuth: false tools: list_resource_types: kind: cloud-logging-admin-list-resource-types source: my-logging-admin description: List the types of resource that are indexed by Cloud Logging. list_log_names: kind: cloud-logging-admin-list-log-names source: my-logging-admin description: List log names matching a filter criteria. query_logs: kind: cloud-logging-admin-query-logs source: my-logging-admin description: query logs ``` ## PR Checklist - [x] Make sure you reviewed [CONTRIBUTING.md](https://github.com/googleapis/genai-toolbox/blob/main/CONTRIBUTING.md) - [x] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/genai-toolbox/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea - [x] Ensure the tests and linter pass - [x] Code coverage does not decrease (if any source code was changed) - [x] Appropriate docs were updated (if necessary) - [ ] Make sure to add `!` if this involve a breaking change 🛠️ Fixes googleapis#1772 @anubhav756 @averikitsch Thanks for the guidance and feedback on the implementation plan. --------- Co-authored-by: Yuan Teoh <yuanteoh@google.com> Co-authored-by: Yuan Teoh <45984206+Yuan325@users.noreply.github.com>
🤖 I have created a release *beep* *boop* --- ## [0.27.0](googleapis/mcp-toolbox@v0.26.0...v0.27.0) (2026-02-12) ### ⚠ BREAKING CHANGES * Update configuration file v2 ([googleapis#2369](https://github.com/googleapis/genai-toolbox/issues/2369))([293c1d6](https://github.com/googleapis/genai-toolbox/commit/293c1d6889c39807855ba5e01d4c13ba2a4c50ce)) * Update/add detailed telemetry for mcp endpoint compliant with OTEL semantic convention ([googleapis#1987](googleapis#1987)) ([478a0bd](googleapis@478a0bd)) ### Features * **cli/invoke:** Add support for direct tool invocation from CLI ([googleapis#2353](googleapis#2353)) ([6e49ba4](googleapis@6e49ba4)) * **cli/skills:** Add support for generating agent skills from toolset ([googleapis#2392](googleapis#2392)) ([80ef346](googleapis@80ef346)) * **cloud-logging-admin:** Add source, tools, integration test and docs ([googleapis#2137](googleapis#2137)) ([252fc30](googleapis@252fc30)) * **cockroachdb:** Add CockroachDB integration with cockroach-go ([googleapis#2006](googleapis#2006)) ([1fdd99a](googleapis@1fdd99a)) * **prebuiltconfigs/alloydb-omni:** Implement Alloydb omni dataplane tools ([googleapis#2340](googleapis#2340)) ([e995349](googleapis@e995349)) * **server:** Add Tool call error categories ([googleapis#2387](googleapis#2387)) ([32cb4db](googleapis@32cb4db)) * **tools/looker:** support `looker-validate-project` tool ([googleapis#2430](googleapis#2430)) ([a15a128](googleapis@a15a128)) ### Bug Fixes * **dataplex:** Capture GCP HTTP errors in MCP Toolbox ([googleapis#2347](googleapis#2347)) ([1d7c498](googleapis@1d7c498)) * **sources/cockroachdb:** Update kind to type ([googleapis#2465](googleapis#2465)) ([2d341ac](googleapis@2d341ac)) * Surface Dataplex API errors in MCP results ([googleapis#2347](https://github.com/googleapis/genai-toolbox/pull/2347))([1d7c498](https://github.com/googleapis/genai-toolbox/commit/1d7c4981164c34b4d7bc8edecfd449f57ad11e15)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --------- Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> Co-authored-by: Yuan Teoh <45984206+Yuan325@users.noreply.github.com>
🤖 I have created a release *beep* *boop* --- ## [0.27.0](googleapis/mcp-toolbox@v0.26.0...v0.27.0) (2026-02-12) ### ⚠ BREAKING CHANGES * Update configuration file v2 ([#2369](https://github.com/googleapis/genai-toolbox/issues/2369))([293c1d6](https://github.com/googleapis/genai-toolbox/commit/293c1d6889c39807855ba5e01d4c13ba2a4c50ce)) * Update/add detailed telemetry for mcp endpoint compliant with OTEL semantic convention ([#1987](googleapis/mcp-toolbox#1987)) ([478a0bd](googleapis/mcp-toolbox@478a0bd)) ### Features * **cli/invoke:** Add support for direct tool invocation from CLI ([#2353](googleapis/mcp-toolbox#2353)) ([6e49ba4](googleapis/mcp-toolbox@6e49ba4)) * **cli/skills:** Add support for generating agent skills from toolset ([#2392](googleapis/mcp-toolbox#2392)) ([80ef346](googleapis/mcp-toolbox@80ef346)) * **cloud-logging-admin:** Add source, tools, integration test and docs ([#2137](googleapis/mcp-toolbox#2137)) ([252fc30](googleapis/mcp-toolbox@252fc30)) * **cockroachdb:** Add CockroachDB integration with cockroach-go ([#2006](googleapis/mcp-toolbox#2006)) ([1fdd99a](googleapis/mcp-toolbox@1fdd99a)) * **prebuiltconfigs/alloydb-omni:** Implement Alloydb omni dataplane tools ([#2340](googleapis/mcp-toolbox#2340)) ([e995349](googleapis/mcp-toolbox@e995349)) * **server:** Add Tool call error categories ([#2387](googleapis/mcp-toolbox#2387)) ([32cb4db](googleapis/mcp-toolbox@32cb4db)) * **tools/looker:** support `looker-validate-project` tool ([#2430](googleapis/mcp-toolbox#2430)) ([a15a128](googleapis/mcp-toolbox@a15a128)) ### Bug Fixes * **dataplex:** Capture GCP HTTP errors in MCP Toolbox ([#2347](googleapis/mcp-toolbox#2347)) ([1d7c498](googleapis/mcp-toolbox@1d7c498)) * **sources/cockroachdb:** Update kind to type ([#2465](googleapis/mcp-toolbox#2465)) ([2d341ac](googleapis/mcp-toolbox@2d341ac)) * Surface Dataplex API errors in MCP results ([#2347](https://github.com/googleapis/genai-toolbox/pull/2347))([1d7c498](https://github.com/googleapis/genai-toolbox/commit/1d7c4981164c34b4d7bc8edecfd449f57ad11e15)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --------- Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> Co-authored-by: Yuan Teoh <45984206+Yuan325@users.noreply.github.com>
Description
This PR adds cloud logging admin source, tools, integration test and docs.
cloud-logging-admin-list-log-namescloud-logging-admin-list-resource-typescloud-logging-admin-query-logsNote for reviewers:
LOGADMIN_PROJECTenv variable, the test creates logs in the project using theloggingclient and then verifies working of the tools using thelogadminclient.cache.gofrom the BigQuery source tosources/cache.godue to shared utility.Regarding Tools:
cloud-logging-admin-list-log-namesusesclient.Logs()instead ofclient.Entries(), as the latter is resource heavy and the tradeoff was not being able to apply any filters, tool has an optional parameterlimitwhich defaults to 200.cloud-logging-admin-list-resource-typesusesclient.ResourceDescriptors(ctx), aim of the tool is to enable the agent become aware of the the resources present and utilise this information in writing filters.cloud-logging-admin-query-logstool enables search and read logs from Google Cloud.Parameters:
filter(optional): A text string to search for specific logs.newestFirst(optional): A simple true/false switch for ordering.startTime(optional): The start date and time to search from (e.g., 2025-12-09T00:00:00Z). Defaults to 30 days ago if not set.endTime(optional): The end date and time to search up to. Defaults to "now".verbose(optional): If set to true, Shows all available details for each log entry else shows only the main info (timestamp, message, severity).limit(optional): The maximum number of log entries to return (default is 200).Looking forward to the feedback here, as
verboseis simply implemented to save context tokens, any alternative suggestion here is also welcomed.Simple tools.yaml
PR Checklist
CONTRIBUTING.md
bug/issue
before writing your code! That way we can discuss the change, evaluate
designs, and agree on the general idea
!if this involve a breaking change🛠️ Fixes #1772
@anubhav756 @averikitsch Thanks for the guidance and feedback on the implementation plan.