list_monitoring_metrics
Retrieve and filter monitoring metrics for a specified GCP project using a tool designed to manage Google Cloud Platform resources programmatically.
Instructions
List available monitoring metrics for a GCP project.
Args:
project_id: The ID of the GCP project to list metrics for
filter_str: Optional filter string to narrow down the metrics
Returns:
List of available monitoring metrics in the specified GCP project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filter_str | No | ||
project_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"filter_str": {
"default": "",
"title": "Filter Str",
"type": "string"
},
"project_id": {
"title": "Project Id",
"type": "string"
}
},
"required": [
"project_id"
],
"title": "list_monitoring_metricsArguments",
"type": "object"
}