You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"starting_prompt": "I need to debug the database.",
6
-
"conversation_plan": "Ask the agent to list instances in project ext-test-cloud-sql-postgres. Once listed, ask it to check the CPU usage of the first instance. Finally, ask if that usage is considered high.",
4
+
"id": "cloud-sql-list-instances",
5
+
"starting_prompt": "Show me all the Cloud SQL instances in this project.",
6
+
"conversation_plan": "Ask the agent to list the Cloud SQL instances in the current project.",
7
7
"expected_trajectory": [
8
8
"list_instances"
9
9
],
10
10
"kind": "tool",
11
-
"max_turns": 15
11
+
"max_turns": 5
12
+
},
13
+
{
14
+
"id": "cloud-sql-data-explore",
15
+
"starting_prompt": "What schemas and tables do we have in this database? Please list them.",
16
+
"conversation_plan": "Ask the agent to list the schemas in the database. Then ask to list the tables.",
17
+
"expected_trajectory": [
18
+
"list_schemas",
19
+
"list_tables"
20
+
],
21
+
"kind": "tool",
22
+
"max_turns": 5
23
+
},
24
+
{
25
+
"id": "cloud-sql-perf-troubleshoot",
26
+
"starting_prompt": "The database is running slow. Are there any active queries running for more than 10 seconds or any locks?",
27
+
"conversation_plan": "Ask the agent to check for active queries running longer than 10 seconds. Then ask to check for locks.",
28
+
"expected_trajectory": [
29
+
"list_active_queries",
30
+
"list_locks"
31
+
],
32
+
"kind": "tool",
33
+
"max_turns": 5
34
+
},
35
+
{
36
+
"id": "cloud-sql-metrics-cpu",
37
+
"starting_prompt": "Can you show me the CPU utilization for instance 'daily-ci-evals-db' in project 'ext-test-cloud-sql-postgres' for the last 5 minutes?",
38
+
"conversation_plan": "Ask the agent to query the CPU utilization metric for the specified instance and project using PromQL.",
39
+
"expected_trajectory": [
40
+
"get_system_metrics"
41
+
],
42
+
"kind": "tool",
43
+
"max_turns": 4
44
+
},
45
+
{
46
+
"id": "cloud-sql-unused-indexes",
47
+
"starting_prompt": "Are there any unused indexes in the database that we can clean up?",
48
+
"conversation_plan": "Ask the agent to list unused indexes in the database.",
0 commit comments