| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- // Copyright 2019 Yunion
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- package monitor
- import (
- "yunion.io/x/jsonutils"
- "yunion.io/x/onecloud/pkg/apis"
- "yunion.io/x/onecloud/pkg/apis/compute"
- )
- const (
- MONITOR_RESOURCE_ALERT_STATUS_INIT = "init"
- MONITOR_RESOURCE_ALERT_STATUS_ATTACH = "attach"
- MONITOR_RESOURCE_ALERT_STATUS_ALERTING = "alerting"
- )
- type MonitorResourceCreateInput struct {
- apis.VirtualResourceCreateInput
- apis.EnabledBaseResourceCreateInput
- ResId string `json:"res_id"`
- ResType string `json:"res_type"`
- AlertStatus string `json:"alert_status"`
- }
- type MonitorResourceListInput struct {
- apis.VirtualResourceListInput
- apis.EnabledResourceBaseListInput
- compute.ManagedResourceListInput
- ResId []string `json:"res_id"`
- ResType string `json:"res_type"`
- OnlyResId bool `json:"only_res_id"`
- AlertStates []string `json:"alert_states"`
- ResName string `json:"res_name"`
- // Top 查询参数(用于统计报警数量最多的资源)
- TopQueryInput
- }
- type MonitorResourceDetails struct {
- apis.VirtualResourceDetails
- compute.CloudregionResourceInfo
- compute.CloudaccountResourceInfo
- Ips string `json:"ips"`
- AccessIp string `json:"access_ip"`
- AttachAlertCount int64 `json:"attach_alert_count"`
- Hypervisor string `json:"hypervisor"`
- }
- type MonitorResourceDoActionInput struct {
- Action string `json:"action"`
- Data jsonutils.JSONObject `json:"data"`
- }
|