-
Notifications
You must be signed in to change notification settings - Fork 82
/
alarm.go
324 lines (273 loc) · 15.4 KB
/
alarm.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
// Copyright (c) 2016, 2018, 2023, Oracle and/or its affiliates. All rights reserved.
// This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
// Code generated. DO NOT EDIT.
// Monitoring API
//
// Use the Monitoring API to manage metric queries and alarms for assessing the health, capacity, and performance of your cloud resources.
// Endpoints vary by operation. For PostMetric, use the `telemetry-ingestion` endpoints; for all other operations, use the `telemetry` endpoints.
// For information about monitoring, see Monitoring Overview (https://docs.cloud.oracle.com/iaas/Content/Monitoring/Concepts/monitoringoverview.htm).
//
package monitoring
import (
"fmt"
"github.com/oracle/oci-go-sdk/v65/common"
"strings"
)
// Alarm The properties that define an alarm.
// For information about alarms, see Alarms Overview (https://docs.cloud.oracle.com/iaas/Content/Monitoring/Concepts/monitoringoverview.htm#AlarmsOverview).
// To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized,
// talk to an administrator. If you're an administrator who needs to write policies to give users access, see
// Getting Started with Policies (https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/policygetstarted.htm).
// For information about endpoints and signing API requests, see
// About the API (https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm). For information about available SDKs and tools, see
// SDKS and Other Tools (https://docs.cloud.oracle.com/iaas/Content/API/Concepts/sdks.htm).
type Alarm struct {
// The OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the alarm.
Id *string `mandatory:"true" json:"id"`
// A user-friendly name for the alarm. It does not have to be unique, and it's changeable.
// This name is sent as the title for notifications related to this alarm.
// Example: `High CPU Utilization`
DisplayName *string `mandatory:"true" json:"displayName"`
// The OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the alarm.
CompartmentId *string `mandatory:"true" json:"compartmentId"`
// The OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the metric
// being evaluated by the alarm.
MetricCompartmentId *string `mandatory:"true" json:"metricCompartmentId"`
// The source service or application emitting the metric that is evaluated by the alarm.
// Example: `oci_computeagent`
Namespace *string `mandatory:"true" json:"namespace"`
// The Monitoring Query Language (MQL) expression to evaluate for the alarm. The Alarms feature of
// the Monitoring service interprets results for each returned time series as Boolean values,
// where zero represents false and a non-zero value represents true. A true value means that the trigger
// rule condition has been met. The query must specify a metric, statistic, interval, and trigger
// rule (threshold or absence). Supported values for interval depend on the specified time range. More
// interval values are supported for smaller time ranges. You can optionally
// specify dimensions and grouping functions. Supported grouping functions: `grouping()`, `groupBy()`.
// For details about Monitoring Query Language (MQL), see Monitoring Query Language (MQL) Reference (https://docs.cloud.oracle.com/iaas/Content/Monitoring/Reference/mql.htm).
// For available dimensions, review the metric definition for the supported service.
// See Supported Services (https://docs.cloud.oracle.com/iaas/Content/Monitoring/Concepts/monitoringoverview.htm#SupportedServices).
// Example of threshold alarm:
// -----
// CpuUtilization[1m]{availabilityDomain="cumS:PHX-AD-1"}.groupBy(availabilityDomain).percentile(0.9) > 85
// -----
// Example of absence alarm:
// -----
// CpuUtilization[1m]{availabilityDomain="cumS:PHX-AD-1"}.absent()
// -----
Query *string `mandatory:"true" json:"query"`
// The perceived type of response required when the alarm is in the "FIRING" state.
// Example: `CRITICAL`
Severity AlarmSeverityEnum `mandatory:"true" json:"severity"`
// A list of destinations to which the notifications for this alarm will be delivered.
// Each destination is represented by an OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) related to the supported destination service.
// For example, a destination using the Notifications service is represented by a topic OCID.
// Supported destination services: Notifications Service. Limit: One destination per supported destination service.
Destinations []string `mandatory:"true" json:"destinations"`
// Whether the alarm is enabled.
// Example: `true`
IsEnabled *bool `mandatory:"true" json:"isEnabled"`
// The current lifecycle state of the alarm.
// Example: `DELETED`
LifecycleState AlarmLifecycleStateEnum `mandatory:"true" json:"lifecycleState"`
// The date and time the alarm was created. Format defined by RFC3339.
// Example: `2019-02-01T01:02:29.600Z`
TimeCreated *common.SDKTime `mandatory:"true" json:"timeCreated"`
// The date and time the alarm was last updated. Format defined by RFC3339.
// Example: `2019-02-03T01:02:29.600Z`
TimeUpdated *common.SDKTime `mandatory:"true" json:"timeUpdated"`
// When true, the alarm evaluates metrics from all compartments and subcompartments. The parameter can
// only be set to true when metricCompartmentId is the tenancy OCID (the tenancy is the root compartment).
// A true value requires the user to have tenancy-level permissions. If this requirement is not met,
// then the call is rejected. When false, the alarm evaluates metrics from only the compartment specified
// in metricCompartmentId. Default is false.
// Example: `true`
MetricCompartmentIdInSubtree *bool `mandatory:"false" json:"metricCompartmentIdInSubtree"`
// Resource group to match for metric data retrieved by the alarm. A resource group is a custom string that you can match when retrieving custom metrics. Only one resource group can be applied per metric.
// A valid resourceGroup value starts with an alphabetical character and includes only alphanumeric characters, periods (.), underscores (_), hyphens (-), and dollar signs ($).
// Example: `frontend-fleet`
ResourceGroup *string `mandatory:"false" json:"resourceGroup"`
// The time between calculated aggregation windows for the alarm. Supported value: `1m`
Resolution *string `mandatory:"false" json:"resolution"`
// The period of time that the condition defined in the alarm must persist before the alarm state
// changes from "OK" to "FIRING". For example, a value of 5 minutes means that the
// alarm must persist in breaching the condition for five minutes before the alarm updates its
// state to "FIRING".
// The duration is specified as a string in ISO 8601 format (`PT10M` for ten minutes or `PT1H`
// for one hour). Minimum: PT1M. Maximum: PT1H. Default: PT1M.
// Under the default value of PT1M, the first evaluation that breaches the alarm updates the
// state to "FIRING".
// The alarm updates its status to "OK" when the breaching condition has been clear for
// the most recent minute.
// Example: `PT5M`
PendingDuration *string `mandatory:"false" json:"pendingDuration"`
// The human-readable content of the notification delivered. Oracle recommends providing guidance
// to operators for resolving the alarm condition. Consider adding links to standard runbook
// practices.
// Example: `High CPU usage alert. Follow runbook instructions for resolution.`
Body *string `mandatory:"false" json:"body"`
// When set to `true`, splits notifications per metric stream. When set to `false`, groups notifications across metric streams.
// Example: `true`
IsNotificationsPerMetricDimensionEnabled *bool `mandatory:"false" json:"isNotificationsPerMetricDimensionEnabled"`
// The format to use for notification messages sent from this alarm. The formats are:
// * `RAW` - Raw JSON blob. Default value.
// * `PRETTY_JSON`: JSON with new lines and indents.
// * `ONS_OPTIMIZED`: Simplified, user-friendly layout. Applies only to messages sent through the Notifications service to the following subscription types: Email.
MessageFormat AlarmMessageFormatEnum `mandatory:"false" json:"messageFormat,omitempty"`
// The frequency at which notifications are re-submitted, if the alarm keeps firing without
// interruption. Format defined by ISO 8601. For example, `PT4H` indicates four hours.
// Minimum: PT1M. Maximum: P30D.
// Default value: null (notifications are not re-submitted).
// Example: `PT2H`
RepeatNotificationDuration *string `mandatory:"false" json:"repeatNotificationDuration"`
// The configuration details for suppressing an alarm.
Suppression *Suppression `mandatory:"false" json:"suppression"`
// Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only.
// Example: `{"Department": "Finance"}`
FreeformTags map[string]string `mandatory:"false" json:"freeformTags"`
// Usage of predefined tag keys. These predefined keys are scoped to namespaces.
// Example: `{"Operations": {"CostCenter": "42"}}`
DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"`
}
func (m Alarm) String() string {
return common.PointerString(m)
}
// ValidateEnumValue returns an error when providing an unsupported enum value
// This function is being called during constructing API request process
// Not recommended for calling this function directly
func (m Alarm) ValidateEnumValue() (bool, error) {
errMessage := []string{}
if _, ok := GetMappingAlarmSeverityEnum(string(m.Severity)); !ok && m.Severity != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for Severity: %s. Supported values are: %s.", m.Severity, strings.Join(GetAlarmSeverityEnumStringValues(), ",")))
}
if _, ok := GetMappingAlarmLifecycleStateEnum(string(m.LifecycleState)); !ok && m.LifecycleState != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for LifecycleState: %s. Supported values are: %s.", m.LifecycleState, strings.Join(GetAlarmLifecycleStateEnumStringValues(), ",")))
}
if _, ok := GetMappingAlarmMessageFormatEnum(string(m.MessageFormat)); !ok && m.MessageFormat != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for MessageFormat: %s. Supported values are: %s.", m.MessageFormat, strings.Join(GetAlarmMessageFormatEnumStringValues(), ",")))
}
if len(errMessage) > 0 {
return true, fmt.Errorf(strings.Join(errMessage, "\n"))
}
return false, nil
}
// AlarmSeverityEnum Enum with underlying type: string
type AlarmSeverityEnum string
// Set of constants representing the allowable values for AlarmSeverityEnum
const (
AlarmSeverityCritical AlarmSeverityEnum = "CRITICAL"
AlarmSeverityError AlarmSeverityEnum = "ERROR"
AlarmSeverityWarning AlarmSeverityEnum = "WARNING"
AlarmSeverityInfo AlarmSeverityEnum = "INFO"
)
var mappingAlarmSeverityEnum = map[string]AlarmSeverityEnum{
"CRITICAL": AlarmSeverityCritical,
"ERROR": AlarmSeverityError,
"WARNING": AlarmSeverityWarning,
"INFO": AlarmSeverityInfo,
}
var mappingAlarmSeverityEnumLowerCase = map[string]AlarmSeverityEnum{
"critical": AlarmSeverityCritical,
"error": AlarmSeverityError,
"warning": AlarmSeverityWarning,
"info": AlarmSeverityInfo,
}
// GetAlarmSeverityEnumValues Enumerates the set of values for AlarmSeverityEnum
func GetAlarmSeverityEnumValues() []AlarmSeverityEnum {
values := make([]AlarmSeverityEnum, 0)
for _, v := range mappingAlarmSeverityEnum {
values = append(values, v)
}
return values
}
// GetAlarmSeverityEnumStringValues Enumerates the set of values in String for AlarmSeverityEnum
func GetAlarmSeverityEnumStringValues() []string {
return []string{
"CRITICAL",
"ERROR",
"WARNING",
"INFO",
}
}
// GetMappingAlarmSeverityEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingAlarmSeverityEnum(val string) (AlarmSeverityEnum, bool) {
enum, ok := mappingAlarmSeverityEnumLowerCase[strings.ToLower(val)]
return enum, ok
}
// AlarmMessageFormatEnum Enum with underlying type: string
type AlarmMessageFormatEnum string
// Set of constants representing the allowable values for AlarmMessageFormatEnum
const (
AlarmMessageFormatRaw AlarmMessageFormatEnum = "RAW"
AlarmMessageFormatPrettyJson AlarmMessageFormatEnum = "PRETTY_JSON"
AlarmMessageFormatOnsOptimized AlarmMessageFormatEnum = "ONS_OPTIMIZED"
)
var mappingAlarmMessageFormatEnum = map[string]AlarmMessageFormatEnum{
"RAW": AlarmMessageFormatRaw,
"PRETTY_JSON": AlarmMessageFormatPrettyJson,
"ONS_OPTIMIZED": AlarmMessageFormatOnsOptimized,
}
var mappingAlarmMessageFormatEnumLowerCase = map[string]AlarmMessageFormatEnum{
"raw": AlarmMessageFormatRaw,
"pretty_json": AlarmMessageFormatPrettyJson,
"ons_optimized": AlarmMessageFormatOnsOptimized,
}
// GetAlarmMessageFormatEnumValues Enumerates the set of values for AlarmMessageFormatEnum
func GetAlarmMessageFormatEnumValues() []AlarmMessageFormatEnum {
values := make([]AlarmMessageFormatEnum, 0)
for _, v := range mappingAlarmMessageFormatEnum {
values = append(values, v)
}
return values
}
// GetAlarmMessageFormatEnumStringValues Enumerates the set of values in String for AlarmMessageFormatEnum
func GetAlarmMessageFormatEnumStringValues() []string {
return []string{
"RAW",
"PRETTY_JSON",
"ONS_OPTIMIZED",
}
}
// GetMappingAlarmMessageFormatEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingAlarmMessageFormatEnum(val string) (AlarmMessageFormatEnum, bool) {
enum, ok := mappingAlarmMessageFormatEnumLowerCase[strings.ToLower(val)]
return enum, ok
}
// AlarmLifecycleStateEnum Enum with underlying type: string
type AlarmLifecycleStateEnum string
// Set of constants representing the allowable values for AlarmLifecycleStateEnum
const (
AlarmLifecycleStateActive AlarmLifecycleStateEnum = "ACTIVE"
AlarmLifecycleStateDeleting AlarmLifecycleStateEnum = "DELETING"
AlarmLifecycleStateDeleted AlarmLifecycleStateEnum = "DELETED"
)
var mappingAlarmLifecycleStateEnum = map[string]AlarmLifecycleStateEnum{
"ACTIVE": AlarmLifecycleStateActive,
"DELETING": AlarmLifecycleStateDeleting,
"DELETED": AlarmLifecycleStateDeleted,
}
var mappingAlarmLifecycleStateEnumLowerCase = map[string]AlarmLifecycleStateEnum{
"active": AlarmLifecycleStateActive,
"deleting": AlarmLifecycleStateDeleting,
"deleted": AlarmLifecycleStateDeleted,
}
// GetAlarmLifecycleStateEnumValues Enumerates the set of values for AlarmLifecycleStateEnum
func GetAlarmLifecycleStateEnumValues() []AlarmLifecycleStateEnum {
values := make([]AlarmLifecycleStateEnum, 0)
for _, v := range mappingAlarmLifecycleStateEnum {
values = append(values, v)
}
return values
}
// GetAlarmLifecycleStateEnumStringValues Enumerates the set of values in String for AlarmLifecycleStateEnum
func GetAlarmLifecycleStateEnumStringValues() []string {
return []string{
"ACTIVE",
"DELETING",
"DELETED",
}
}
// GetMappingAlarmLifecycleStateEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingAlarmLifecycleStateEnum(val string) (AlarmLifecycleStateEnum, bool) {
enum, ok := mappingAlarmLifecycleStateEnumLowerCase[strings.ToLower(val)]
return enum, ok
}