Prometheus: Fix fallback http method when no http method specified in jsonData (#65229)

Use POST as default if no http method specified in jsonData
This commit is contained in:
ismail simsek 2023-03-30 00:50:25 +02:00 committed by GitHub
parent 906086c91b
commit 959349d191
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,6 +30,10 @@ func New(
}
httpMethod, _ := maputil.GetStringOptional(jsonData, "httpMethod")
if httpMethod == "" {
httpMethod = http.MethodPost
}
return &Resource{
log: plog,
promClient: client.NewClient(httpClient, httpMethod, settings.URL),