@pulumi/signalfx 7.0.0 → 7.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/alertMutingRule.d.ts +37 -19
- package/alertMutingRule.js +22 -4
- package/alertMutingRule.js.map +1 -1
- package/aws/externalIntegration.d.ts +23 -11
- package/aws/externalIntegration.js +16 -4
- package/aws/externalIntegration.js.map +1 -1
- package/aws/integration.d.ts +141 -72
- package/aws/integration.js +41 -4
- package/aws/integration.js.map +1 -1
- package/aws/tokenIntegration.d.ts +18 -7
- package/aws/tokenIntegration.js +13 -2
- package/aws/tokenIntegration.js.map +1 -1
- package/azure/integration.d.ts +101 -45
- package/azure/integration.js +29 -3
- package/azure/integration.js.map +1 -1
- package/config/vars.d.ts +3 -3
- package/dashboard.d.ts +62 -62
- package/dashboardGroup.d.ts +62 -27
- package/dashboardGroup.js +41 -6
- package/dashboardGroup.js.map +1 -1
- package/dataLink.d.ts +52 -18
- package/dataLink.js +31 -3
- package/dataLink.js.map +1 -1
- package/detector.d.ts +133 -70
- package/detector.js +70 -15
- package/detector.js.map +1 -1
- package/eventFeedChart.d.ts +38 -20
- package/eventFeedChart.js +18 -0
- package/eventFeedChart.js.map +1 -1
- package/gcp/integration.d.ts +66 -35
- package/gcp/integration.js +24 -5
- package/gcp/integration.js.map +1 -1
- package/getDimensionValues.d.ts +18 -2
- package/getDimensionValues.js +18 -2
- package/getDimensionValues.js.map +1 -1
- package/heatmapChart.d.ts +80 -46
- package/heatmapChart.js +36 -2
- package/heatmapChart.js.map +1 -1
- package/jira/integration.d.ts +51 -24
- package/jira/integration.js +24 -3
- package/jira/integration.js.map +1 -1
- package/listChart.d.ts +111 -64
- package/listChart.js +46 -2
- package/listChart.js.map +1 -1
- package/log/timeline.d.ts +44 -24
- package/log/timeline.js +21 -1
- package/log/timeline.js.map +1 -1
- package/log/view.d.ts +54 -31
- package/log/view.js +25 -2
- package/log/view.js.map +1 -1
- package/metricRuleset.d.ts +33 -11
- package/metricRuleset.js +24 -2
- package/metricRuleset.js.map +1 -1
- package/opsgenie/integration.d.ts +28 -15
- package/opsgenie/integration.js +16 -3
- package/opsgenie/integration.js.map +1 -1
- package/orgToken.d.ts +50 -39
- package/orgToken.js +32 -3
- package/orgToken.js.map +1 -1
- package/package.json +2 -3
- package/package.json.bak +1 -2
- package/pagerduty/getIntegration.d.ts +22 -14
- package/pagerduty/getIntegration.js +22 -2
- package/pagerduty/getIntegration.js.map +1 -1
- package/pagerduty/integration.d.ts +23 -12
- package/pagerduty/integration.js +14 -3
- package/pagerduty/integration.js.map +1 -1
- package/provider.d.ts +6 -6
- package/servicenow/integration.d.ts +46 -17
- package/servicenow/integration.js +19 -2
- package/servicenow/integration.js.map +1 -1
- package/singleValueChart.d.ts +74 -39
- package/singleValueChart.js +36 -1
- package/singleValueChart.js.map +1 -1
- package/slack/integration.d.ts +24 -12
- package/slack/integration.js +15 -3
- package/slack/integration.js.map +1 -1
- package/tableChart.d.ts +32 -16
- package/tableChart.js +18 -2
- package/tableChart.js.map +1 -1
- package/team.d.ts +54 -33
- package/team.js +25 -4
- package/team.js.map +1 -1
- package/textChart.d.ts +27 -12
- package/textChart.js +16 -1
- package/textChart.js.map +1 -1
- package/timeChart.d.ts +148 -94
- package/timeChart.js +68 -2
- package/timeChart.js.map +1 -1
- package/types/input.d.ts +0 -577
- package/types/output.d.ts +0 -577
- package/utilities.d.ts +4 -0
- package/utilities.js +33 -1
- package/utilities.js.map +1 -1
- package/victorops/integration.d.ts +24 -12
- package/victorops/integration.js +15 -3
- package/victorops/integration.js.map +1 -1
- package/webhookIntegration.d.ts +31 -15
- package/webhookIntegration.js +19 -3
- package/webhookIntegration.js.map +1 -1
- package/scripts/install-pulumi-plugin.js +0 -21
package/types/output.d.ts
CHANGED
|
@@ -1,176 +1,62 @@
|
|
|
1
1
|
import * as outputs from "../types/output";
|
|
2
2
|
export interface AlertMutingRuleFilter {
|
|
3
|
-
/**
|
|
4
|
-
* Determines if this is a "not" filter. Defaults to `false`.
|
|
5
|
-
*/
|
|
6
3
|
negated?: boolean;
|
|
7
|
-
/**
|
|
8
|
-
* The property to filter.
|
|
9
|
-
*/
|
|
10
4
|
property: string;
|
|
11
|
-
/**
|
|
12
|
-
* The property value to filter.
|
|
13
|
-
*/
|
|
14
5
|
propertyValue: string;
|
|
15
6
|
}
|
|
16
7
|
export interface DashboardChart {
|
|
17
|
-
/**
|
|
18
|
-
* ID of the chart to display.
|
|
19
|
-
*/
|
|
20
8
|
chartId: string;
|
|
21
|
-
/**
|
|
22
|
-
* Column number for the layout.
|
|
23
|
-
*/
|
|
24
9
|
column?: number;
|
|
25
|
-
/**
|
|
26
|
-
* How many rows every chart should take up (greater than or equal to 1). 1 by default.
|
|
27
|
-
*/
|
|
28
10
|
height?: number;
|
|
29
|
-
/**
|
|
30
|
-
* The row to show the chart in (zero-based); if `height > 1`, this value represents the topmost row of the chart (greater than or equal to `0`).
|
|
31
|
-
*/
|
|
32
11
|
row?: number;
|
|
33
|
-
/**
|
|
34
|
-
* How many columns (out of a total of `12`) every chart should take up (between `1` and `12`). `12` by default.
|
|
35
|
-
*/
|
|
36
12
|
width?: number;
|
|
37
13
|
}
|
|
38
14
|
export interface DashboardColumn {
|
|
39
|
-
/**
|
|
40
|
-
* List of IDs of the charts to display.
|
|
41
|
-
*/
|
|
42
15
|
chartIds: string[];
|
|
43
|
-
/**
|
|
44
|
-
* Column number for the layout.
|
|
45
|
-
*/
|
|
46
16
|
column?: number;
|
|
47
|
-
/**
|
|
48
|
-
* How many rows every chart should take up (greater than or equal to 1). 1 by default.
|
|
49
|
-
*/
|
|
50
17
|
height?: number;
|
|
51
|
-
/**
|
|
52
|
-
* How many columns (out of a total of `12`) every chart should take up (between `1` and `12`). `12` by default.
|
|
53
|
-
*/
|
|
54
18
|
width?: number;
|
|
55
19
|
}
|
|
56
20
|
export interface DashboardEventOverlay {
|
|
57
|
-
/**
|
|
58
|
-
* Color to use : gray, blue, azure, navy, brown, orange, yellow, iris, magenta, pink, purple, violet, lilac, emerald, green, aquamarine.
|
|
59
|
-
*/
|
|
60
21
|
color?: string;
|
|
61
|
-
/**
|
|
62
|
-
* Text shown in the dropdown when selecting this overlay from the menu.
|
|
63
|
-
*/
|
|
64
22
|
label?: string;
|
|
65
|
-
/**
|
|
66
|
-
* Show a vertical line for the event. `false` by default.
|
|
67
|
-
*/
|
|
68
23
|
line?: boolean;
|
|
69
|
-
/**
|
|
70
|
-
* Search term used to choose the events shown in the overlay.
|
|
71
|
-
*/
|
|
72
24
|
signal: string;
|
|
73
|
-
/**
|
|
74
|
-
* Each element specifies a filter to use against the signal specified in the `signal`.
|
|
75
|
-
*/
|
|
76
25
|
sources?: outputs.DashboardEventOverlaySource[];
|
|
77
|
-
/**
|
|
78
|
-
* Can be set to `eventTimeSeries` (the default) to refer to externally reported events, or `detectorEvents` to refer to events from detector triggers.
|
|
79
|
-
*/
|
|
80
26
|
type?: string;
|
|
81
27
|
}
|
|
82
28
|
export interface DashboardEventOverlaySource {
|
|
83
|
-
/**
|
|
84
|
-
* If true, only data that does not match the specified value of the specified property appear in the event overlay. Defaults to `false`.
|
|
85
|
-
*/
|
|
86
29
|
negated?: boolean;
|
|
87
|
-
/**
|
|
88
|
-
* The name of a dimension to filter against.
|
|
89
|
-
*/
|
|
90
30
|
property: string;
|
|
91
|
-
/**
|
|
92
|
-
* A list of values to be used with the `property`, they will be combined via `OR`.
|
|
93
|
-
*/
|
|
94
31
|
values: string[];
|
|
95
32
|
}
|
|
96
33
|
export interface DashboardFilter {
|
|
97
|
-
/**
|
|
98
|
-
* If true, this variable will also match data that doesn't have this property at all.
|
|
99
|
-
*/
|
|
100
34
|
applyIfExist?: boolean;
|
|
101
|
-
/**
|
|
102
|
-
* If true, only data that does not match the specified value of the specified property appear in the event overlay. Defaults to `false`.
|
|
103
|
-
*/
|
|
104
35
|
negated?: boolean;
|
|
105
|
-
/**
|
|
106
|
-
* The name of a dimension to filter against.
|
|
107
|
-
*/
|
|
108
36
|
property: string;
|
|
109
|
-
/**
|
|
110
|
-
* A list of values to be used with the `property`, they will be combined via `OR`.
|
|
111
|
-
*/
|
|
112
37
|
values: string[];
|
|
113
38
|
}
|
|
114
39
|
export interface DashboardGrid {
|
|
115
|
-
/**
|
|
116
|
-
* List of IDs of the charts to display.
|
|
117
|
-
*/
|
|
118
40
|
chartIds: string[];
|
|
119
|
-
/**
|
|
120
|
-
* How many rows every chart should take up (greater than or equal to 1). 1 by default.
|
|
121
|
-
*/
|
|
122
41
|
height?: number;
|
|
123
|
-
/**
|
|
124
|
-
* How many columns (out of a total of `12`) every chart should take up (between `1` and `12`). `12` by default.
|
|
125
|
-
*/
|
|
126
42
|
width?: number;
|
|
127
43
|
}
|
|
128
44
|
export interface DashboardGroupDashboard {
|
|
129
45
|
configId: string;
|
|
130
|
-
/**
|
|
131
|
-
* The dashboard id to mirror
|
|
132
|
-
*/
|
|
133
46
|
dashboardId: string;
|
|
134
|
-
/**
|
|
135
|
-
* The description that will override the original dashboards's description.
|
|
136
|
-
*/
|
|
137
47
|
descriptionOverride?: string;
|
|
138
|
-
/**
|
|
139
|
-
* The description that will override the original dashboards's description.
|
|
140
|
-
*/
|
|
141
48
|
filterOverrides?: outputs.DashboardGroupDashboardFilterOverride[];
|
|
142
|
-
/**
|
|
143
|
-
* The name that will override the original dashboards's name.
|
|
144
|
-
*/
|
|
145
49
|
nameOverride?: string;
|
|
146
50
|
variableOverrides?: outputs.DashboardGroupDashboardVariableOverride[];
|
|
147
51
|
}
|
|
148
52
|
export interface DashboardGroupDashboardFilterOverride {
|
|
149
|
-
/**
|
|
150
|
-
* If true, only data that does not match the specified value of the specified property appear in the event overlay. Defaults to `false`.
|
|
151
|
-
*/
|
|
152
53
|
negated?: boolean;
|
|
153
|
-
/**
|
|
154
|
-
* A metric time series dimension or property name.
|
|
155
|
-
*/
|
|
156
54
|
property: string;
|
|
157
|
-
/**
|
|
158
|
-
* (Optional) List of of strings (which will be treated as an OR filter on the property).
|
|
159
|
-
*/
|
|
160
55
|
values: string[];
|
|
161
56
|
}
|
|
162
57
|
export interface DashboardGroupDashboardVariableOverride {
|
|
163
|
-
/**
|
|
164
|
-
* A metric time series dimension or property name.
|
|
165
|
-
*/
|
|
166
58
|
property: string;
|
|
167
|
-
/**
|
|
168
|
-
* (Optional) List of of strings (which will be treated as an OR filter on the property).
|
|
169
|
-
*/
|
|
170
59
|
values?: string[];
|
|
171
|
-
/**
|
|
172
|
-
* A list of strings of suggested values for this variable; these suggestions will receive priority when values are autosuggested for this variable.
|
|
173
|
-
*/
|
|
174
60
|
valuesSuggesteds?: string[];
|
|
175
61
|
}
|
|
176
62
|
export interface DashboardGroupImportQualifier {
|
|
@@ -178,492 +64,167 @@ export interface DashboardGroupImportQualifier {
|
|
|
178
64
|
metric?: string;
|
|
179
65
|
}
|
|
180
66
|
export interface DashboardGroupImportQualifierFilter {
|
|
181
|
-
/**
|
|
182
|
-
* If true, only data that does not match the specified value of the specified property appear in the event overlay. Defaults to `false`.
|
|
183
|
-
*/
|
|
184
67
|
negated?: boolean;
|
|
185
|
-
/**
|
|
186
|
-
* A metric time series dimension or property name.
|
|
187
|
-
*/
|
|
188
68
|
property: string;
|
|
189
|
-
/**
|
|
190
|
-
* (Optional) List of of strings (which will be treated as an OR filter on the property).
|
|
191
|
-
*/
|
|
192
69
|
values: string[];
|
|
193
70
|
}
|
|
194
71
|
export interface DashboardGroupPermission {
|
|
195
|
-
/**
|
|
196
|
-
* Action the user, team, or organization can take with the dashboard group. List of values (value can be "READ" or "WRITE").
|
|
197
|
-
*/
|
|
198
72
|
actions?: string[];
|
|
199
|
-
/**
|
|
200
|
-
* ID of the user, team, or organization for which you're granting permissions.
|
|
201
|
-
*/
|
|
202
73
|
principalId: string;
|
|
203
|
-
/**
|
|
204
|
-
* Clarify whether this permission configuration is for a user, a team, or an organization. Value can be one of "USER", "TEAM", or "ORG".
|
|
205
|
-
*/
|
|
206
74
|
principalType: string;
|
|
207
75
|
}
|
|
208
76
|
export interface DashboardPermissions {
|
|
209
|
-
/**
|
|
210
|
-
* List of read and write permission configurations to specify which user, team, and organization can view and/or edit your dashboard. Use the `permissions.parent` instead if you want to inherit permissions.
|
|
211
|
-
*/
|
|
212
77
|
acls?: outputs.DashboardPermissionsAcl[];
|
|
213
|
-
/**
|
|
214
|
-
* ID of the dashboard group you want your dashboard to inherit permissions from. Use the `permissions.acl` instead if you want to specify various read and write permission configurations.
|
|
215
|
-
*/
|
|
216
78
|
parent?: string;
|
|
217
79
|
}
|
|
218
80
|
export interface DashboardPermissionsAcl {
|
|
219
|
-
/**
|
|
220
|
-
* Action the user, team, or organization can take with the dashboard. List of values (value can be "READ" or "WRITE").
|
|
221
|
-
*/
|
|
222
81
|
actions?: string[];
|
|
223
|
-
/**
|
|
224
|
-
* ID of the user, team, or organization for which you're granting permissions.
|
|
225
|
-
*/
|
|
226
82
|
principalId: string;
|
|
227
|
-
/**
|
|
228
|
-
* Clarify whether this permission configuration is for a user, a team, or an organization. Value can be one of "USER", "TEAM", or "ORG".
|
|
229
|
-
*/
|
|
230
83
|
principalType: string;
|
|
231
84
|
}
|
|
232
85
|
export interface DashboardSelectedEventOverlay {
|
|
233
|
-
/**
|
|
234
|
-
* Search term used to choose the events shown in the overlay.
|
|
235
|
-
*/
|
|
236
86
|
signal: string;
|
|
237
|
-
/**
|
|
238
|
-
* Each element specifies a filter to use against the signal specified in the `signal`.
|
|
239
|
-
*/
|
|
240
87
|
sources?: outputs.DashboardSelectedEventOverlaySource[];
|
|
241
|
-
/**
|
|
242
|
-
* Can be set to `eventTimeSeries` (the default) to refer to externally reported events, or `detectorEvents` to refer to events from detector triggers.
|
|
243
|
-
*/
|
|
244
88
|
type?: string;
|
|
245
89
|
}
|
|
246
90
|
export interface DashboardSelectedEventOverlaySource {
|
|
247
|
-
/**
|
|
248
|
-
* If true, only data that does not match the specified value of the specified property appear in the event overlay. Defaults to `false`.
|
|
249
|
-
*/
|
|
250
91
|
negated?: boolean;
|
|
251
|
-
/**
|
|
252
|
-
* The name of a dimension to filter against.
|
|
253
|
-
*/
|
|
254
92
|
property: string;
|
|
255
|
-
/**
|
|
256
|
-
* A list of values to be used with the `property`, they will be combined via `OR`.
|
|
257
|
-
*/
|
|
258
93
|
values: string[];
|
|
259
94
|
}
|
|
260
95
|
export interface DashboardVariable {
|
|
261
|
-
/**
|
|
262
|
-
* An alias for the dashboard variable. This text will appear as the label for the dropdown field on the dashboard.
|
|
263
|
-
*/
|
|
264
96
|
alias: string;
|
|
265
|
-
/**
|
|
266
|
-
* If true, this variable will also match data that doesn't have this property at all.
|
|
267
|
-
*/
|
|
268
97
|
applyIfExist?: boolean;
|
|
269
|
-
/**
|
|
270
|
-
* Variable description.
|
|
271
|
-
*/
|
|
272
98
|
description?: string;
|
|
273
|
-
/**
|
|
274
|
-
* The name of a dimension to filter against.
|
|
275
|
-
*/
|
|
276
99
|
property: string;
|
|
277
|
-
/**
|
|
278
|
-
* If `true`, this variable will only apply to charts that have a filter for the property.
|
|
279
|
-
*/
|
|
280
100
|
replaceOnly?: boolean;
|
|
281
|
-
/**
|
|
282
|
-
* If `true`, this variable may only be set to the values listed in `valuesSuggested` and only these values will appear in autosuggestion menus. `false` by default.
|
|
283
|
-
*/
|
|
284
101
|
restrictedSuggestions?: boolean;
|
|
285
|
-
/**
|
|
286
|
-
* Determines whether a value is required for this variable (and therefore whether it will be possible to view this dashboard without this filter applied). `false` by default.
|
|
287
|
-
*/
|
|
288
102
|
valueRequired?: boolean;
|
|
289
|
-
/**
|
|
290
|
-
* A list of values to be used with the `property`, they will be combined via `OR`.
|
|
291
|
-
*/
|
|
292
103
|
values?: string[];
|
|
293
|
-
/**
|
|
294
|
-
* A list of strings of suggested values for this variable; these suggestions will receive priority when values are autosuggested for this variable.
|
|
295
|
-
*/
|
|
296
104
|
valuesSuggesteds?: string[];
|
|
297
105
|
}
|
|
298
106
|
export interface DataLinkTargetExternalUrl {
|
|
299
|
-
/**
|
|
300
|
-
* The [minimum time window](https://developers.signalfx.com/administration/data_links_overview.html#_minimum_time_window) for a search sent to an external site. Defaults to `6000`
|
|
301
|
-
*/
|
|
302
107
|
minimumTimeWindow?: string;
|
|
303
|
-
/**
|
|
304
|
-
* User-assigned target name. Use this value to differentiate between the link targets for a data link object.
|
|
305
|
-
*/
|
|
306
108
|
name: string;
|
|
307
|
-
/**
|
|
308
|
-
* Describes the relationship between SignalFx metadata keys and external system properties when the key names are different.
|
|
309
|
-
*/
|
|
310
109
|
propertyKeyMapping?: {
|
|
311
110
|
[key: string]: string;
|
|
312
111
|
};
|
|
313
|
-
/**
|
|
314
|
-
* [Designates the format](https://developers.signalfx.com/administration/data_links_overview.html#_minimum_time_window) of `minimumTimeWindow` in the same data link target object. Must be one of `"ISO8601"`, `"EpochSeconds"` or `"Epoch"` (which is milliseconds). Defaults to `"ISO8601"`.
|
|
315
|
-
*/
|
|
316
112
|
timeFormat?: string;
|
|
317
|
-
/**
|
|
318
|
-
* URL string for a Splunk instance or external system data link target. [See the supported template variables](https://developers.signalfx.com/administration/data_links_overview.html#_external_link_targets).
|
|
319
|
-
*/
|
|
320
113
|
url: string;
|
|
321
114
|
}
|
|
322
115
|
export interface DataLinkTargetSignalfxDashboard {
|
|
323
|
-
/**
|
|
324
|
-
* SignalFx-assigned ID of the dashboard link target's dashboard group
|
|
325
|
-
*/
|
|
326
116
|
dashboardGroupId: string;
|
|
327
|
-
/**
|
|
328
|
-
* SignalFx-assigned ID of the dashboard link target
|
|
329
|
-
*/
|
|
330
117
|
dashboardId: string;
|
|
331
|
-
/**
|
|
332
|
-
* Flag that designates a target as the default for a data link object. `true` by default
|
|
333
|
-
*/
|
|
334
118
|
isDefault?: boolean;
|
|
335
|
-
/**
|
|
336
|
-
* User-assigned target name. Use this value to differentiate between the link targets for a data link object.
|
|
337
|
-
*/
|
|
338
119
|
name: string;
|
|
339
120
|
}
|
|
340
121
|
export interface DataLinkTargetSplunk {
|
|
341
|
-
/**
|
|
342
|
-
* User-assigned target name. Use this value to differentiate between the link targets for a data link object.
|
|
343
|
-
*/
|
|
344
122
|
name: string;
|
|
345
|
-
/**
|
|
346
|
-
* Describes the relationship between SignalFx metadata keys and external system properties when the key names are different.
|
|
347
|
-
*/
|
|
348
123
|
propertyKeyMapping?: {
|
|
349
124
|
[key: string]: string;
|
|
350
125
|
};
|
|
351
126
|
}
|
|
352
127
|
export interface DetectorRule {
|
|
353
|
-
/**
|
|
354
|
-
* Description for the rule. Displays as the alert condition in the Alert Rules tab of the detector editor in the web UI.
|
|
355
|
-
*/
|
|
356
128
|
description?: string;
|
|
357
|
-
/**
|
|
358
|
-
* A detect label which matches a detect label within `programText`.
|
|
359
|
-
*/
|
|
360
129
|
detectLabel: string;
|
|
361
|
-
/**
|
|
362
|
-
* When true, notifications and events will not be generated for the detect label. `false` by default.
|
|
363
|
-
*/
|
|
364
130
|
disabled?: boolean;
|
|
365
|
-
/**
|
|
366
|
-
* List of strings specifying where notifications will be sent when an incident occurs. See [Create A Single Detector](https://developers.signalfx.com/detectors_reference.html#operation/Create%20Single%20Detector) for more info.
|
|
367
|
-
*/
|
|
368
131
|
notifications?: string[];
|
|
369
|
-
/**
|
|
370
|
-
* Custom notification message body when an alert is triggered. See [Set Up Detectors to Trigger Alerts](https://docs.signalfx.com/en/latest/detect-alert/set-up-detectors.html#about-detectors#alert-settings) for more info.
|
|
371
|
-
*/
|
|
372
132
|
parameterizedBody?: string;
|
|
373
|
-
/**
|
|
374
|
-
* Custom notification message subject when an alert is triggered. See [Set Up Detectors to Trigger Alerts](https://docs.signalfx.com/en/latest/detect-alert/set-up-detectors.html#about-detectors#alert-settings) for more info.
|
|
375
|
-
*/
|
|
376
133
|
parameterizedSubject?: string;
|
|
377
|
-
/**
|
|
378
|
-
* URL of page to consult when an alert is triggered. This can be used with custom notification messages.
|
|
379
|
-
*/
|
|
380
134
|
runbookUrl?: string;
|
|
381
|
-
/**
|
|
382
|
-
* The severity of the rule, must be one of: `"Critical"`, `"Major"`, `"Minor"`, `"Warning"`, `"Info"`.
|
|
383
|
-
*/
|
|
384
135
|
severity: string;
|
|
385
|
-
/**
|
|
386
|
-
* Plain text suggested first course of action, such as a command line to execute. This can be used with custom notification messages.
|
|
387
|
-
*/
|
|
388
136
|
tip?: string;
|
|
389
137
|
}
|
|
390
138
|
export interface DetectorVizOption {
|
|
391
|
-
/**
|
|
392
|
-
* Color to use : gray, blue, azure, navy, brown, orange, yellow, iris, magenta, pink, purple, violet, lilac, emerald, green, aquamarine.
|
|
393
|
-
*/
|
|
394
139
|
color?: string;
|
|
395
|
-
/**
|
|
396
|
-
* Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
|
|
397
|
-
*/
|
|
398
140
|
displayName?: string;
|
|
399
|
-
/**
|
|
400
|
-
* Label used in the publish statement that displays the plot (metric time series data) you want to customize.
|
|
401
|
-
*/
|
|
402
141
|
label: string;
|
|
403
|
-
/**
|
|
404
|
-
* , `valueSuffix` - (Optional) Arbitrary prefix/suffix to display with the value of this plot.
|
|
405
|
-
*
|
|
406
|
-
* **Notes**
|
|
407
|
-
*
|
|
408
|
-
* It is highly recommended that you use both `maxDelay` in your detector configuration and an `extrapolation` policy in your program text to reduce false positives/negatives.
|
|
409
|
-
*
|
|
410
|
-
* `maxDelay` allows SignalFx to continue with computation if there is a lag in receiving data points.
|
|
411
|
-
*
|
|
412
|
-
* `extrapolation` allows you to specify how to handle missing data. An extrapolation policy can be added to individual signals by updating the data block in your `programText`.
|
|
413
|
-
*
|
|
414
|
-
* See [Delayed Datapoints](https://signalfx-product-docs.readthedocs-hosted.com/en/latest/charts/chart-builder.html#delayed-datapoints) for more info.
|
|
415
|
-
*/
|
|
416
142
|
valuePrefix?: string;
|
|
417
143
|
valueSuffix?: string;
|
|
418
|
-
/**
|
|
419
|
-
* A unit to attach to this plot. Units support automatic scaling (eg thousands of bytes will be displayed as kilobytes). Values values are `Bit, Kilobit, Megabit, Gigabit, Terabit, Petabit, Exabit, Zettabit, Yottabit, Byte, Kibibyte, Mebibyte, Gibibyte (note: this was previously typoed as Gigibyte), Tebibyte, Pebibyte, Exbibyte, Zebibyte, Yobibyte, Nanosecond, Microsecond, Millisecond, Second, Minute, Hour, Day, Week`.
|
|
420
|
-
*/
|
|
421
144
|
valueUnit?: string;
|
|
422
145
|
}
|
|
423
146
|
export interface HeatmapChartColorRange {
|
|
424
|
-
/**
|
|
425
|
-
* The color range to use. Hex values are not supported here. Must be one of gray, blue, light_blue, navy, dark_orange, orange, dark_yellow, magenta, cerise, pink, violet, purple, gray_blue, dark_green, green, aquamarine, red, yellow, vivid_yellow, light_green, or lime_green.
|
|
426
|
-
*/
|
|
427
147
|
color: string;
|
|
428
|
-
/**
|
|
429
|
-
* The maximum value within the coloring range.
|
|
430
|
-
*/
|
|
431
148
|
maxValue?: number;
|
|
432
|
-
/**
|
|
433
|
-
* The minimum value within the coloring range.
|
|
434
|
-
*/
|
|
435
149
|
minValue?: number;
|
|
436
150
|
}
|
|
437
151
|
export interface HeatmapChartColorScale {
|
|
438
|
-
/**
|
|
439
|
-
* The color range to use. Hex values are not supported here. Must be one of gray, blue, light_blue, navy, dark_orange, orange, dark_yellow, magenta, cerise, pink, violet, purple, gray_blue, dark_green, green, aquamarine, red, yellow, vivid_yellow, light_green, or lime_green.
|
|
440
|
-
*/
|
|
441
152
|
color: string;
|
|
442
|
-
/**
|
|
443
|
-
* Indicates the lower threshold non-inclusive value for this range.
|
|
444
|
-
*/
|
|
445
153
|
gt?: number;
|
|
446
|
-
/**
|
|
447
|
-
* Indicates the lower threshold inclusive value for this range.
|
|
448
|
-
*/
|
|
449
154
|
gte?: number;
|
|
450
|
-
/**
|
|
451
|
-
* Indicates the upper threshold non-inclusive value for this range.
|
|
452
|
-
*/
|
|
453
155
|
lt?: number;
|
|
454
|
-
/**
|
|
455
|
-
* Indicates the upper threshold inclusive value for this range.
|
|
456
|
-
*/
|
|
457
156
|
lte?: number;
|
|
458
157
|
}
|
|
459
158
|
export interface ListChartColorScale {
|
|
460
|
-
/**
|
|
461
|
-
* The color to use. Must be one of gray, blue, light_blue, navy, dark_orange, orange, dark_yellow, magenta, cerise, pink, violet, purple, gray_blue, dark_green, green, aquamarine, red, yellow, vivid_yellow, light_green, or lime_green.
|
|
462
|
-
*/
|
|
463
159
|
color: string;
|
|
464
|
-
/**
|
|
465
|
-
* Indicates the lower threshold non-inclusive value for this range.
|
|
466
|
-
*/
|
|
467
160
|
gt?: number;
|
|
468
|
-
/**
|
|
469
|
-
* Indicates the lower threshold inclusive value for this range.
|
|
470
|
-
*/
|
|
471
161
|
gte?: number;
|
|
472
|
-
/**
|
|
473
|
-
* Indicates the upper threshold non-inculsive value for this range.
|
|
474
|
-
*/
|
|
475
162
|
lt?: number;
|
|
476
|
-
/**
|
|
477
|
-
* Indicates the upper threshold inclusive value for this range.
|
|
478
|
-
*/
|
|
479
163
|
lte?: number;
|
|
480
164
|
}
|
|
481
165
|
export interface ListChartLegendOptionsField {
|
|
482
|
-
/**
|
|
483
|
-
* True or False depending on if you want the property to be shown or hidden.
|
|
484
|
-
*/
|
|
485
166
|
enabled?: boolean;
|
|
486
|
-
/**
|
|
487
|
-
* The name of the property to display. Note the special values of `sfMetric` (corresponding with the API's `Plot Name`) which shows the label of the time series `publish()` and `sf_originatingMetric` (corresponding with the API's `metric (sf metric)`) that shows the [name of the metric](https://developers.signalfx.com/signalflow_analytics/functions/data_function.html#table-1-parameter-definitions) for the time series being displayed.
|
|
488
|
-
*/
|
|
489
167
|
property: string;
|
|
490
168
|
}
|
|
491
169
|
export interface ListChartVizOption {
|
|
492
|
-
/**
|
|
493
|
-
* The color to use. Must be one of gray, blue, light_blue, navy, dark_orange, orange, dark_yellow, magenta, cerise, pink, violet, purple, gray_blue, dark_green, green, aquamarine, red, yellow, vivid_yellow, light_green, or lime_green.
|
|
494
|
-
*/
|
|
495
170
|
color?: string;
|
|
496
|
-
/**
|
|
497
|
-
* Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
|
|
498
|
-
*/
|
|
499
171
|
displayName?: string;
|
|
500
|
-
/**
|
|
501
|
-
* Label used in the publish statement that displays the plot (metric time series data) you want to customize.
|
|
502
|
-
*/
|
|
503
172
|
label: string;
|
|
504
|
-
/**
|
|
505
|
-
* , `valueSuffix` - (Optional) Arbitrary prefix/suffix to display with the value of this plot.
|
|
506
|
-
*/
|
|
507
173
|
valuePrefix?: string;
|
|
508
174
|
valueSuffix?: string;
|
|
509
|
-
/**
|
|
510
|
-
* A unit to attach to this plot. Units support automatic scaling (eg thousands of bytes will be displayed as kilobytes). Values values are `Bit, Kilobit, Megabit, Gigabit, Terabit, Petabit, Exabit, Zettabit, Yottabit, Byte, Kibibyte, Mebibyte, Gibibyte (note: this was previously typoed as Gigibyte), Tebibyte, Pebibyte, Exbibyte, Zebibyte, Yobibyte, Nanosecond, Microsecond, Millisecond, Second, Minute, Hour, Day, Week`.
|
|
511
|
-
*/
|
|
512
175
|
valueUnit?: string;
|
|
513
176
|
}
|
|
514
177
|
export interface MetricRulesetAggregationRule {
|
|
515
|
-
/**
|
|
516
|
-
* Aggregator object
|
|
517
|
-
*/
|
|
518
178
|
aggregators: outputs.MetricRulesetAggregationRuleAggregator[];
|
|
519
|
-
/**
|
|
520
|
-
* When false, this rule will not generate aggregated MTSs
|
|
521
|
-
*/
|
|
522
179
|
enabled: boolean;
|
|
523
|
-
/**
|
|
524
|
-
* Matcher object
|
|
525
|
-
*/
|
|
526
180
|
matchers: outputs.MetricRulesetAggregationRuleMatcher[];
|
|
527
|
-
/**
|
|
528
|
-
* name of the aggregation rule
|
|
529
|
-
*/
|
|
530
181
|
name?: string;
|
|
531
182
|
}
|
|
532
183
|
export interface MetricRulesetAggregationRuleAggregator {
|
|
533
|
-
/**
|
|
534
|
-
* List of dimensions to either be kept or dropped in the new aggregated MTSs
|
|
535
|
-
*/
|
|
536
184
|
dimensions: string[];
|
|
537
|
-
/**
|
|
538
|
-
* when true, the specified dimensions will be dropped from the aggregated MTSs
|
|
539
|
-
*/
|
|
540
185
|
dropDimensions: boolean;
|
|
541
|
-
/**
|
|
542
|
-
* name of the new aggregated metric
|
|
543
|
-
*/
|
|
544
186
|
outputName: string;
|
|
545
|
-
/**
|
|
546
|
-
* Type of aggregator. Must always be "rollup"
|
|
547
|
-
*/
|
|
548
187
|
type: string;
|
|
549
188
|
}
|
|
550
189
|
export interface MetricRulesetAggregationRuleMatcher {
|
|
551
|
-
/**
|
|
552
|
-
* List of filters to filter the set of input MTSs
|
|
553
|
-
*/
|
|
554
190
|
filters?: outputs.MetricRulesetAggregationRuleMatcherFilter[];
|
|
555
|
-
/**
|
|
556
|
-
* Type of aggregator. Must always be "rollup"
|
|
557
|
-
*/
|
|
558
191
|
type: string;
|
|
559
192
|
}
|
|
560
193
|
export interface MetricRulesetAggregationRuleMatcherFilter {
|
|
561
|
-
/**
|
|
562
|
-
* When true, this filter will match all values not matching the property_values
|
|
563
|
-
*/
|
|
564
194
|
not: boolean;
|
|
565
|
-
/**
|
|
566
|
-
* Name of the dimension
|
|
567
|
-
*/
|
|
568
195
|
property: string;
|
|
569
|
-
/**
|
|
570
|
-
* Value of the dimension
|
|
571
|
-
*/
|
|
572
196
|
propertyValues: string[];
|
|
573
197
|
}
|
|
574
198
|
export interface MetricRulesetRoutingRule {
|
|
575
|
-
/**
|
|
576
|
-
* end destination of the input metric. Must be `RealTime` or `Drop`
|
|
577
|
-
*/
|
|
578
199
|
destination: string;
|
|
579
200
|
}
|
|
580
201
|
export interface OrgTokenDpmLimits {
|
|
581
|
-
/**
|
|
582
|
-
* The datapoints per minute (dpm) limit for this token. If you exceed this limit, SignalFx sends out an alert.
|
|
583
|
-
*/
|
|
584
202
|
dpmLimit: number;
|
|
585
|
-
/**
|
|
586
|
-
* DPM level at which SignalFx sends the notification for this token. If you don't specify a notification, SignalFx sends the generic notification.
|
|
587
|
-
*/
|
|
588
203
|
dpmNotificationThreshold?: number;
|
|
589
204
|
}
|
|
590
205
|
export interface OrgTokenHostOrUsageLimits {
|
|
591
|
-
/**
|
|
592
|
-
* Max number of Docker containers that can use this token
|
|
593
|
-
*/
|
|
594
206
|
containerLimit?: number;
|
|
595
|
-
/**
|
|
596
|
-
* Notification threshold for Docker containers
|
|
597
|
-
*/
|
|
598
207
|
containerNotificationThreshold?: number;
|
|
599
|
-
/**
|
|
600
|
-
* Max number of custom metrics that can be sent with this token
|
|
601
|
-
*/
|
|
602
208
|
customMetricsLimit?: number;
|
|
603
|
-
/**
|
|
604
|
-
* Notification threshold for custom metrics
|
|
605
|
-
*/
|
|
606
209
|
customMetricsNotificationThreshold?: number;
|
|
607
|
-
/**
|
|
608
|
-
* Max number of hi-res metrics that can be sent with this toke
|
|
609
|
-
*/
|
|
610
210
|
highResMetricsLimit?: number;
|
|
611
|
-
/**
|
|
612
|
-
* Notification threshold for hi-res metrics
|
|
613
|
-
*/
|
|
614
211
|
highResMetricsNotificationThreshold?: number;
|
|
615
|
-
/**
|
|
616
|
-
* Max number of hosts that can use this token
|
|
617
|
-
*/
|
|
618
212
|
hostLimit?: number;
|
|
619
|
-
/**
|
|
620
|
-
* Notification threshold for hosts
|
|
621
|
-
*/
|
|
622
213
|
hostNotificationThreshold?: number;
|
|
623
214
|
}
|
|
624
215
|
export interface SingleValueChartColorScale {
|
|
625
|
-
/**
|
|
626
|
-
* The color to use. Must be one of gray, blue, light_blue, navy, dark_orange, orange, dark_yellow, magenta, cerise, pink, violet, purple, gray_blue, dark_green, green, aquamarine, red, yellow, vivid_yellow, light_green, or lime_green.
|
|
627
|
-
*/
|
|
628
216
|
color: string;
|
|
629
|
-
/**
|
|
630
|
-
* Indicates the lower threshold non-inclusive value for this range.
|
|
631
|
-
*/
|
|
632
217
|
gt?: number;
|
|
633
|
-
/**
|
|
634
|
-
* Indicates the lower threshold inclusive value for this range.
|
|
635
|
-
*/
|
|
636
218
|
gte?: number;
|
|
637
|
-
/**
|
|
638
|
-
* Indicates the upper threshold non-inculsive value for this range.
|
|
639
|
-
*/
|
|
640
219
|
lt?: number;
|
|
641
|
-
/**
|
|
642
|
-
* Indicates the upper threshold inclusive value for this range.
|
|
643
|
-
*/
|
|
644
220
|
lte?: number;
|
|
645
221
|
}
|
|
646
222
|
export interface SingleValueChartVizOption {
|
|
647
|
-
/**
|
|
648
|
-
* The color to use. Must be one of gray, blue, light_blue, navy, dark_orange, orange, dark_yellow, magenta, cerise, pink, violet, purple, gray_blue, dark_green, green, aquamarine, red, yellow, vivid_yellow, light_green, or lime_green.
|
|
649
|
-
*/
|
|
650
223
|
color?: string;
|
|
651
|
-
/**
|
|
652
|
-
* Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
|
|
653
|
-
*/
|
|
654
224
|
displayName?: string;
|
|
655
|
-
/**
|
|
656
|
-
* Label used in the publish statement that displays the plot (metric time series data) you want to customize.
|
|
657
|
-
*/
|
|
658
225
|
label: string;
|
|
659
|
-
/**
|
|
660
|
-
* , `valueSuffix` - (Optional) Arbitrary prefix/suffix to display with the value of this plot.
|
|
661
|
-
*/
|
|
662
226
|
valuePrefix?: string;
|
|
663
227
|
valueSuffix?: string;
|
|
664
|
-
/**
|
|
665
|
-
* A unit to attach to this plot. Units support automatic scaling (eg thousands of bytes will be displayed as kilobytes). Values values are `Bit, Kilobit, Megabit, Gigabit, Terabit, Petabit, Exabit, Zettabit, Yottabit, Byte, Kibibyte, Mebibyte, Gibibyte (note: this was previously typoed as Gigibyte), Tebibyte, Pebibyte, Exbibyte, Zebibyte, Yobibyte, Nanosecond, Microsecond, Millisecond, Second, Minute, Hour, Day, Week`.
|
|
666
|
-
*/
|
|
667
228
|
valueUnit?: string;
|
|
668
229
|
}
|
|
669
230
|
export interface TableChartVizOption {
|
|
@@ -675,219 +236,84 @@ export interface TableChartVizOption {
|
|
|
675
236
|
valueUnit?: string;
|
|
676
237
|
}
|
|
677
238
|
export interface TimeChartAxisLeft {
|
|
678
|
-
/**
|
|
679
|
-
* A line to draw as a high watermark.
|
|
680
|
-
*/
|
|
681
239
|
highWatermark?: number;
|
|
682
|
-
/**
|
|
683
|
-
* A label to attach to the high watermark line.
|
|
684
|
-
*/
|
|
685
240
|
highWatermarkLabel?: string;
|
|
686
|
-
/**
|
|
687
|
-
* Label used in the publish statement that displays the event query you want to customize.
|
|
688
|
-
*/
|
|
689
241
|
label?: string;
|
|
690
|
-
/**
|
|
691
|
-
* A line to draw as a low watermark.
|
|
692
|
-
*/
|
|
693
242
|
lowWatermark?: number;
|
|
694
|
-
/**
|
|
695
|
-
* A label to attach to the low watermark line.
|
|
696
|
-
*/
|
|
697
243
|
lowWatermarkLabel?: string;
|
|
698
|
-
/**
|
|
699
|
-
* The maximum value for the right axis.
|
|
700
|
-
*/
|
|
701
244
|
maxValue?: number;
|
|
702
|
-
/**
|
|
703
|
-
* The minimum value for the right axis.
|
|
704
|
-
*/
|
|
705
245
|
minValue?: number;
|
|
706
246
|
watermarks?: outputs.TimeChartAxisLeftWatermark[];
|
|
707
247
|
}
|
|
708
248
|
export interface TimeChartAxisLeftWatermark {
|
|
709
|
-
/**
|
|
710
|
-
* Label used in the publish statement that displays the event query you want to customize.
|
|
711
|
-
*/
|
|
712
249
|
label?: string;
|
|
713
250
|
value: number;
|
|
714
251
|
}
|
|
715
252
|
export interface TimeChartAxisRight {
|
|
716
|
-
/**
|
|
717
|
-
* A line to draw as a high watermark.
|
|
718
|
-
*/
|
|
719
253
|
highWatermark?: number;
|
|
720
|
-
/**
|
|
721
|
-
* A label to attach to the high watermark line.
|
|
722
|
-
*/
|
|
723
254
|
highWatermarkLabel?: string;
|
|
724
|
-
/**
|
|
725
|
-
* Label used in the publish statement that displays the event query you want to customize.
|
|
726
|
-
*/
|
|
727
255
|
label?: string;
|
|
728
|
-
/**
|
|
729
|
-
* A line to draw as a low watermark.
|
|
730
|
-
*/
|
|
731
256
|
lowWatermark?: number;
|
|
732
|
-
/**
|
|
733
|
-
* A label to attach to the low watermark line.
|
|
734
|
-
*/
|
|
735
257
|
lowWatermarkLabel?: string;
|
|
736
|
-
/**
|
|
737
|
-
* The maximum value for the right axis.
|
|
738
|
-
*/
|
|
739
258
|
maxValue?: number;
|
|
740
|
-
/**
|
|
741
|
-
* The minimum value for the right axis.
|
|
742
|
-
*/
|
|
743
259
|
minValue?: number;
|
|
744
260
|
watermarks?: outputs.TimeChartAxisRightWatermark[];
|
|
745
261
|
}
|
|
746
262
|
export interface TimeChartAxisRightWatermark {
|
|
747
|
-
/**
|
|
748
|
-
* Label used in the publish statement that displays the event query you want to customize.
|
|
749
|
-
*/
|
|
750
263
|
label?: string;
|
|
751
264
|
value: number;
|
|
752
265
|
}
|
|
753
266
|
export interface TimeChartEventOption {
|
|
754
|
-
/**
|
|
755
|
-
* Color to use : gray, blue, azure, navy, brown, orange, yellow, iris, magenta, pink, purple, violet, lilac, emerald, green, aquamarine.
|
|
756
|
-
*/
|
|
757
267
|
color?: string;
|
|
758
|
-
/**
|
|
759
|
-
* Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
|
|
760
|
-
*/
|
|
761
268
|
displayName?: string;
|
|
762
|
-
/**
|
|
763
|
-
* Label used in the publish statement that displays the event query you want to customize.
|
|
764
|
-
*/
|
|
765
269
|
label: string;
|
|
766
270
|
}
|
|
767
271
|
export interface TimeChartHistogramOption {
|
|
768
|
-
/**
|
|
769
|
-
* Color to use : gray, blue, azure, navy, brown, orange, yellow, iris, magenta, pink, purple, violet, lilac, emerald, green, aquamarine, red, gold, greenyellow, chartreuse, jade
|
|
770
|
-
*/
|
|
771
272
|
colorTheme?: string;
|
|
772
273
|
}
|
|
773
274
|
export interface TimeChartLegendOptionsField {
|
|
774
|
-
/**
|
|
775
|
-
* True or False depending on if you want the property to be shown or hidden.
|
|
776
|
-
*/
|
|
777
275
|
enabled?: boolean;
|
|
778
|
-
/**
|
|
779
|
-
* The name of the property to display. Note the special values of `plotLabel` (corresponding with the API's `sfMetric`) which shows the label of the time series `publish()` and `metric` (corresponding with the API's `sf_originatingMetric`) that shows the name of the metric for the time series being displayed.
|
|
780
|
-
*/
|
|
781
276
|
property: string;
|
|
782
277
|
}
|
|
783
278
|
export interface TimeChartVizOption {
|
|
784
|
-
/**
|
|
785
|
-
* Y-axis associated with values for this plot. Must be either `right` or `left`.
|
|
786
|
-
*/
|
|
787
279
|
axis?: string;
|
|
788
|
-
/**
|
|
789
|
-
* Color to use : gray, blue, azure, navy, brown, orange, yellow, iris, magenta, pink, purple, violet, lilac, emerald, green, aquamarine.
|
|
790
|
-
*/
|
|
791
280
|
color?: string;
|
|
792
|
-
/**
|
|
793
|
-
* Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
|
|
794
|
-
*/
|
|
795
281
|
displayName?: string;
|
|
796
|
-
/**
|
|
797
|
-
* Label used in the publish statement that displays the event query you want to customize.
|
|
798
|
-
*/
|
|
799
282
|
label: string;
|
|
800
|
-
/**
|
|
801
|
-
* The visualization style to use. Must be `"LineChart"`, `"AreaChart"`, `"ColumnChart"`, or `"Histogram"`. Chart level `plotType` by default.
|
|
802
|
-
*/
|
|
803
283
|
plotType?: string;
|
|
804
|
-
/**
|
|
805
|
-
* , `valueSuffix` - (Optional) Arbitrary prefix/suffix to display with the value of this plot.
|
|
806
|
-
*/
|
|
807
284
|
valuePrefix?: string;
|
|
808
285
|
valueSuffix?: string;
|
|
809
|
-
/**
|
|
810
|
-
* A unit to attach to this plot. Units support automatic scaling (eg thousands of bytes will be displayed as kilobytes). Values values are `Bit, Kilobit, Megabit, Gigabit, Terabit, Petabit, Exabit, Zettabit, Yottabit, Byte, Kibibyte, Mebibyte, Gibibyte (note: this was previously typoed as Gigibyte), Tebibyte, Pebibyte, Exbibyte, Zebibyte, Yobibyte, Nanosecond, Microsecond, Millisecond, Second, Minute, Hour, Day, Week`.
|
|
811
|
-
*/
|
|
812
286
|
valueUnit?: string;
|
|
813
287
|
}
|
|
814
288
|
export interface WebhookIntegrationHeader {
|
|
815
|
-
/**
|
|
816
|
-
* The key of the header to send
|
|
817
|
-
*/
|
|
818
289
|
headerKey: string;
|
|
819
|
-
/**
|
|
820
|
-
* The value of the header to send
|
|
821
|
-
*/
|
|
822
290
|
headerValue: string;
|
|
823
291
|
}
|
|
824
292
|
export declare namespace aws {
|
|
825
293
|
interface IntegrationCustomNamespaceSyncRule {
|
|
826
|
-
/**
|
|
827
|
-
* Controls the Splunk Observability default behavior for processing data from an AWS namespace. Splunk Observability ignores this property unless you specify the `filterAction` and `filterSource` properties. If you do specify them, use this property to control how Splunk Observability treats data that doesn't match the filter. The available actions are one of `"Include"` or `"Exclude"`.
|
|
828
|
-
*/
|
|
829
294
|
defaultAction?: string;
|
|
830
|
-
/**
|
|
831
|
-
* Controls how Splunk Observability processes data from a custom AWS namespace. The available actions are one of `"Include"` or `"Exclude"`.
|
|
832
|
-
*/
|
|
833
295
|
filterAction?: string;
|
|
834
|
-
/**
|
|
835
|
-
* Expression that selects the data that Splunk Observability should sync for the custom namespace associated with this sync rule. The expression uses the syntax defined for the SignalFlow `filter()` function; it can be any valid SignalFlow filter expression.
|
|
836
|
-
*/
|
|
837
296
|
filterSource?: string;
|
|
838
|
-
/**
|
|
839
|
-
* An AWS custom namespace having custom AWS metrics that you want to sync with Splunk Observability. See `services` field description below for additional information.
|
|
840
|
-
*/
|
|
841
297
|
namespace: string;
|
|
842
298
|
}
|
|
843
299
|
interface IntegrationMetricStatsToSync {
|
|
844
|
-
/**
|
|
845
|
-
* AWS metric that you want to pick statistics for
|
|
846
|
-
*/
|
|
847
300
|
metric: string;
|
|
848
|
-
/**
|
|
849
|
-
* An AWS custom namespace having custom AWS metrics that you want to sync with Splunk Observability. See `services` field description below for additional information.
|
|
850
|
-
*/
|
|
851
301
|
namespace: string;
|
|
852
|
-
/**
|
|
853
|
-
* AWS statistics you want to collect
|
|
854
|
-
*/
|
|
855
302
|
stats: string[];
|
|
856
303
|
}
|
|
857
304
|
interface IntegrationNamespaceSyncRule {
|
|
858
|
-
/**
|
|
859
|
-
* Controls the Splunk Observability default behavior for processing data from an AWS namespace. Splunk Observability ignores this property unless you specify the `filterAction` and `filterSource` properties. If you do specify them, use this property to control how Splunk Observability treats data that doesn't match the filter. The available actions are one of `"Include"` or `"Exclude"`.
|
|
860
|
-
*/
|
|
861
305
|
defaultAction?: string;
|
|
862
|
-
/**
|
|
863
|
-
* Controls how Splunk Observability processes data from a custom AWS namespace. The available actions are one of `"Include"` or `"Exclude"`.
|
|
864
|
-
*/
|
|
865
306
|
filterAction?: string;
|
|
866
|
-
/**
|
|
867
|
-
* Expression that selects the data that Splunk Observability should sync for the custom namespace associated with this sync rule. The expression uses the syntax defined for the SignalFlow `filter()` function; it can be any valid SignalFlow filter expression.
|
|
868
|
-
*/
|
|
869
307
|
filterSource?: string;
|
|
870
|
-
/**
|
|
871
|
-
* An AWS custom namespace having custom AWS metrics that you want to sync with Splunk Observability. See `services` field description below for additional information.
|
|
872
|
-
*/
|
|
873
308
|
namespace: string;
|
|
874
309
|
}
|
|
875
310
|
}
|
|
876
311
|
export declare namespace azure {
|
|
877
312
|
interface IntegrationCustomNamespacesPerService {
|
|
878
|
-
/**
|
|
879
|
-
* The additional namespaces.
|
|
880
|
-
*/
|
|
881
313
|
namespaces: string[];
|
|
882
|
-
/**
|
|
883
|
-
* The name of the service.
|
|
884
|
-
*/
|
|
885
314
|
service: string;
|
|
886
315
|
}
|
|
887
316
|
interface IntegrationResourceFilterRule {
|
|
888
|
-
/**
|
|
889
|
-
* Expression that selects the data that SignalFx should sync for the resource associated with this sync rule. The expression uses the syntax defined for the SignalFlow `filter()` function. The source of each filter rule must be in the form filter('key', 'value'). You can join multiple filter statements using the and and or operators. Referenced keys are limited to tags and must start with the azure_tag_ prefix.
|
|
890
|
-
*/
|
|
891
317
|
filterSource: string;
|
|
892
318
|
}
|
|
893
319
|
}
|
|
@@ -899,9 +325,6 @@ export declare namespace gcp {
|
|
|
899
325
|
}
|
|
900
326
|
export declare namespace log {
|
|
901
327
|
interface ViewColumn {
|
|
902
|
-
/**
|
|
903
|
-
* Name of the log view.
|
|
904
|
-
*/
|
|
905
328
|
name: string;
|
|
906
329
|
}
|
|
907
330
|
interface ViewSortOption {
|