Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
443 views
in Technique[技术] by (71.8m points)

alert - Google Cloud Platform alerting with different resource types

I'm trying to create an alert based ratio of the request count and the quota limit. They are from different resource types, hence the error I'm getting ERROR: (gcloud.alpha.monitoring.policies.create) INVALID_ARGUMENT: The numerator and denominator must have the same resource type.

I've been trying to show both values on the metrics dashboard and they are correct. How can I create an alarm that bypasses the error?

{
"combiner": "OR",
"conditions": [
    {
        "conditionThreshold": {
            "filter": "metric.type="serviceruntime.googleapis.com/api/request_count" resource.label."service"="maps-backend.googleapis.com"",
            "aggregations": [
                {
                    "alignmentPeriod": "86400s",
                    "crossSeriesReducer": "REDUCE_SUM",
                    "groupByFields": [
                        "metric.label.quota_metric"
                    ],
                    "perSeriesAligner": "ALIGN_SUM"
                }
            ],
            "denominatorFilter": "metric.type="serviceruntime.googleapis.com/quota/limit" resource.label."service"="maps-backend.googleapis.com"",
            "denominatorAggregations": [
                {
                    "alignmentPeriod": "86400s",
                    "crossSeriesReducer": "REDUCE_NONE",
                    "groupByFields": [
                        "metric.label.quota_metric"
                    ],
                    "perSeriesAligner": "ALIGN_MEAN"
                }
            ],
            "comparison": "COMPARISON_GT",
            "duration": "60s",
            "thresholdValue": 0.2,
            "trigger": {
                "count": 1
            }
        },
        "displayName": "Ratio quota usage for maps-backend.googleapis.com by label.quota_metric [SUM]"
    }
],
"displayName": "Ratio quota usage to limit",
"enabled": true

}

question from:https://stackoverflow.com/questions/65845485/google-cloud-platform-alerting-with-different-resource-types

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...