Skip to content

Commit 5c7509b

Browse files
authored
Merge branch 'main' into json-lint
2 parents b56c7b4 + fc98a04 commit 5c7509b

7 files changed

Lines changed: 24 additions & 9 deletions

File tree

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# For syntax help see
44
# <https://help.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners#codeowners-syntax>
55

6-
* @googleapis/senseai-eco
6+
* @gemini-cli-extensions/senseai-eco @gemini-cli-extensions/cloud-sql-mysql-maintainers

.github/workflows/package-and-upload-assets.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,9 @@ jobs:
6666
6767
echo "Downloading binary from: ${DOWNLOAD_URL}"
6868
curl -L --fail -o "${SOURCE_BINARY}" "${DOWNLOAD_URL}"
69-
69+
70+
chmod +x ${SOURCE_BINARY}
71+
7072
echo "Binary downloaded and prepared."
7173
ls -l
7274
@@ -134,4 +136,4 @@ jobs:
134136
run: |
135137
gh release upload \
136138
${{ github.event.release.tag_name }} \
137-
release-archives/*/*
139+
release-archives/*/*

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.0.0"
2+
".": "0.1.0"
33
}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changelog
2+
3+
## 0.1.0 (2025-09-20)
4+
5+
6+
### Features
7+
8+
* create the Cloud SQL for MySQL Observability Extension

README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
# Gemini CLI Extension - Cloud SQL for MySQL Observability
22

3+
> [!NOTE]
4+
> This extension is currently in beta (pre-v1.0), and may see breaking changes until the first stable release (v1.0).
5+
36
This Gemini CLI extension provides a set of tools to interact with [Cloud SQL for MySQL](https://cloud.google.com/sql/docs/mysql) monitoring metrics. It allows you to fetch a wide range of database metrics, enabling comprehensive monitoring of database performance and health directly from the [Gemini CLI](https://google-gemini.github.io/gemini-cli/), using natural language prompts.
47

5-
Learn more about [Gemini CLI Extensions](https://github.com/google-gemini/gemini-cli/blob/main/docs/extension.md)
8+
Learn more about [Gemini CLI Extensions](https://github.com/google-gemini/gemini-cli/blob/main/docs/extension.md).
69

710
## Why Use the Cloud SQL for MySQL Observability Extension?
811

@@ -13,7 +16,7 @@ Learn more about [Gemini CLI Extensions](https://github.com/google-gemini/gemini
1316

1417
Before you begin, ensure you have the following:
1518

16-
* [Gemini CLI](https://github.com/google-gemini/gemini-cli) installed.
19+
* [Gemini CLI](https://github.com/google-gemini/gemini-cli) installed with version **+v0.6.0**.
1720
* A Google Cloud project with the **Cloud Monitoring API** enabled.
1821
* IAM Permissions:
1922
* Monitoring Viewer (`roles/monitoring.viewer`)
@@ -23,12 +26,12 @@ Before you begin, ensure you have the following:
2326
To install the extension, use the command:
2427

2528
```bash
26-
gemini extensions install github.com/gemini-cli-extensions/cloud-sql-mysql-observability
29+
gemini extensions install https://github.com/gemini-cli-extensions/cloud-sql-mysql-observability
2730
```
2831

2932
## Configuration
3033

31-
No configuration is required.
34+
Ensure [Application Default Credentials](https://cloud.google.com/docs/authentication/gcloud) are available in your environment.
3235

3336
## Usage Examples
3437

gemini-extension.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cloud-sql-mysql-observability",
3-
"version": "0.0.0",
3+
"version": "0.1.0",
44
"description": "Manage and monitor database performance and health for Cloud SQL for MySQL databases.",
55
"mcpServers": {
66
"Cloud SQL for MySQL Observability": {

release-please-config.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
{
22
"bump-minor-pre-major": true,
33
"bump-patch-for-minor-pre-major": true,
4+
"include-component-in-tag": false,
5+
"include-v-in-tag": false,
46
"changelog-sections": [
57
{
68
"type": "feat",

0 commit comments

Comments
 (0)