mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-09-21 14:19:49 +08:00
Merge pull request #11603 from zhaoxiangchun/fix/zxc-query-restType
fix(monitor): alert policy use ownerId when update
This commit is contained in:
@@ -920,7 +920,8 @@ func (alert *SCommonAlert) ValidateUpdateData(
|
||||
return data, errors.Wrap(err, "metric_query Unmarshal error")
|
||||
}
|
||||
scope, _ := data.GetString("scope")
|
||||
err = CommonAlertManager.ValidateMetricQuery(metricQuery, scope, userCred)
|
||||
ownerId := CommonAlertManager.GetOwnerId(ctx, userCred, data)
|
||||
err = CommonAlertManager.ValidateMetricQuery(metricQuery, scope, ownerId)
|
||||
if err != nil {
|
||||
return data, errors.Wrap(err, "metric query error")
|
||||
}
|
||||
@@ -951,6 +952,14 @@ func (alert *SCommonAlert) ValidateUpdateData(
|
||||
return data, nil
|
||||
}
|
||||
|
||||
func (manager *SCommonAlertManager) GetOwnerId(ctx context.Context, userCred mcclient.TokenCredential, data jsonutils.JSONObject) mcclient.IIdentityProvider {
|
||||
ownId, _ := CommonAlertManager.FetchOwnerId(ctx, data)
|
||||
if ownId == nil {
|
||||
ownId = userCred
|
||||
}
|
||||
return ownId
|
||||
}
|
||||
|
||||
func (alert *SCommonAlert) PostUpdate(
|
||||
ctx context.Context, userCred mcclient.TokenCredential,
|
||||
query jsonutils.JSONObject, data jsonutils.JSONObject) {
|
||||
|
||||
Reference in New Issue
Block a user