@pulumi/signalfx 7.0.1 → 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 +64 -33
- package/gcp/integration.js +22 -3
- 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 +1 -1
- 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/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/listChart.d.ts
CHANGED
|
@@ -4,9 +4,9 @@ import * as outputs from "./types/output";
|
|
|
4
4
|
/**
|
|
5
5
|
* This chart type displays current data values in a list format.
|
|
6
6
|
*
|
|
7
|
-
* The name of each value in the chart reflects the name of the plot and any associated dimensions. We recommend you click the Pencil icon and give the plot a meaningful name, as in plot B
|
|
7
|
+
* The name of each value in the chart reflects the name of the plot and any associated dimensions. We recommend you click the Pencil icon and give the plot a meaningful name, as in plot B from the example. Otherwise, just the raw metric name will be displayed on the chart, as in plot A from the example.
|
|
8
8
|
*
|
|
9
|
-
* ## Example
|
|
9
|
+
* ## Example
|
|
10
10
|
*
|
|
11
11
|
* ```typescript
|
|
12
12
|
* import * as pulumi from "@pulumi/pulumi";
|
|
@@ -50,6 +50,50 @@ import * as outputs from "./types/output";
|
|
|
50
50
|
* timezone: "Europe/Paris",
|
|
51
51
|
* });
|
|
52
52
|
* ```
|
|
53
|
+
*
|
|
54
|
+
* ## Arguments
|
|
55
|
+
*
|
|
56
|
+
* The following arguments are supported in the resource block:
|
|
57
|
+
*
|
|
58
|
+
* * `name` - (Required) Name of the chart.
|
|
59
|
+
* * `programText` - (Required) Signalflow program text for the chart. More info[in the Splunk Observability Cloud docs](https://developers.signalfx.com/signalflow_analytics/signalflow_overview.html#_signalflow_programming_language).
|
|
60
|
+
* * `description` - (Optional) Description of the chart.
|
|
61
|
+
* * `unitPrefix` - (Optional) Must be `"Metric"` or `"Binary`". `"Metric"` by default.
|
|
62
|
+
* * `colorBy` - (Optional) Must be one of `"Scale"`, `"Dimension"` or `"Metric"`. `"Dimension"` by default.
|
|
63
|
+
* * `maxDelay` - (Optional) How long (in seconds) to wait for late datapoints.
|
|
64
|
+
* * `timezone` - (Optional) The property value is a string that denotes the geographic region associated with the time zone, (default UTC).
|
|
65
|
+
* * `disableSampling` - (Optional) If `false`, samples a subset of the output MTS, which improves UI performance. `false` by default.
|
|
66
|
+
* * `refreshInterval` - (Optional) How often (in seconds) to refresh the values of the list.
|
|
67
|
+
* * `hideMissingValues` - (Optional) Determines whether to hide missing data points in the chart. If `true`, missing data points in the chart would be hidden. `false` by default.
|
|
68
|
+
* * `vizOptions` - (Optional) Plot-level customization options, associated with a publish statement.
|
|
69
|
+
* * `label` - (Required) Label used in the publish statement that displays the plot (metric time series data) you want to customize.
|
|
70
|
+
* * `displayName` - (Optional) Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
|
|
71
|
+
* * `color` - (Optional) 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.
|
|
72
|
+
* * `valueUnit` - (Optional) 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`.
|
|
73
|
+
* * `valuePrefix`, `valueSuffix` - (Optional) Arbitrary prefix/suffix to display with the value of this plot.
|
|
74
|
+
* * `legendFieldsToHide` - (Optional) List of properties that should not be displayed in the chart legend (i.e. dimension names). All the properties are visible by default. Deprecated, please use `legendOptionsFields`.
|
|
75
|
+
* * `legendOptionsFields` - (Optional) List of property names and enabled flags that should be displayed in the data table for the chart, in the order provided. This option cannot be used with `legendFieldsToHide`.
|
|
76
|
+
* * `property` 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://dev.splunk.com/observability/docs/signalflow/functions/data_function/) for the time series being displayed.
|
|
77
|
+
* * `enabled` True or False depending on if you want the property to be shown or hidden.
|
|
78
|
+
* * `maxPrecision` - (Optional) Maximum number of digits to display when rounding values up or down.
|
|
79
|
+
* * `secondaryVisualization` - (Optional) The type of secondary visualization. Can be `None`, `Radial`, `Linear`, or `Sparkline`. If unset, the Splunk Observability Cloud default is used (`Sparkline`).
|
|
80
|
+
* * `colorScale` - (Optional. `colorBy` must be `"Scale"`) Single color range including both the color to display for that range and the borders of the range. Example: `[{ gt = 60, color = "blue" }, { lte = 60, color = "yellow" }]`. Look at this [link](https://docs.splunk.com/observability/en/data-visualization/charts/chart-options.html).
|
|
81
|
+
* * `gt` - (Optional) Indicates the lower threshold non-inclusive value for this range.
|
|
82
|
+
* * `gte` - (Optional) Indicates the lower threshold inclusive value for this range.
|
|
83
|
+
* * `lt` - (Optional) Indicates the upper threshold non-inculsive value for this range.
|
|
84
|
+
* * `lte` - (Optional) Indicates the upper threshold inclusive value for this range.
|
|
85
|
+
* * `color` - (Required) 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.
|
|
86
|
+
* * `sortBy` - (Optional) The property to use when sorting the elements. Use `value` if you want to sort by value. Must be prepended with `+` for ascending or `-` for descending (e.g. `-foo`). Note there are some special values for some of the options provided in the UX: `"value"` for Value, `"sf_originatingMetric"` for Metric, and `"sfMetric"` for plot.
|
|
87
|
+
* * `timeRange` - (Optional) How many seconds ago from which to display data. For example, the last hour would be `3600`, etc. Conflicts with `startTime` and `endTime`.
|
|
88
|
+
* * `startTime` - (Optional) Seconds since epoch. Used for visualization. Conflicts with `timeRange`.
|
|
89
|
+
* * `endTime` - (Optional) Seconds since epoch. Used for visualization. Conflicts with `timeRange`.
|
|
90
|
+
*
|
|
91
|
+
* ## Attributes
|
|
92
|
+
*
|
|
93
|
+
* In a addition to all arguments above, the following attributes are exported:
|
|
94
|
+
*
|
|
95
|
+
* * `id` - The ID of the chart.
|
|
96
|
+
* * `url` - The URL of the chart.
|
|
53
97
|
*/
|
|
54
98
|
export declare class ListChart extends pulumi.CustomResource {
|
|
55
99
|
/**
|
|
@@ -68,89 +112,90 @@ export declare class ListChart extends pulumi.CustomResource {
|
|
|
68
112
|
*/
|
|
69
113
|
static isInstance(obj: any): obj is ListChart;
|
|
70
114
|
/**
|
|
71
|
-
* Must be
|
|
115
|
+
* (Metric by default) Must be "Scale", "Metric" or "Dimension"
|
|
72
116
|
*/
|
|
73
117
|
readonly colorBy: pulumi.Output<string | undefined>;
|
|
74
118
|
/**
|
|
75
|
-
* Single color range including both the color to display for that range and the borders of the range
|
|
119
|
+
* Single color range including both the color to display for that range and the borders of the range
|
|
76
120
|
*/
|
|
77
121
|
readonly colorScales: pulumi.Output<outputs.ListChartColorScale[] | undefined>;
|
|
78
122
|
/**
|
|
79
|
-
* Description of the chart
|
|
123
|
+
* Description of the chart (Optional)
|
|
80
124
|
*/
|
|
81
125
|
readonly description: pulumi.Output<string | undefined>;
|
|
82
126
|
/**
|
|
83
|
-
* If
|
|
127
|
+
* (false by default) If false, samples a subset of the output MTS, which improves UI performance
|
|
84
128
|
*/
|
|
85
129
|
readonly disableSampling: pulumi.Output<boolean | undefined>;
|
|
86
130
|
/**
|
|
87
|
-
* Seconds since epoch
|
|
131
|
+
* Seconds since epoch to end the visualization
|
|
88
132
|
*/
|
|
89
133
|
readonly endTime: pulumi.Output<number | undefined>;
|
|
90
134
|
/**
|
|
91
|
-
*
|
|
135
|
+
* (false by default) If `true`, missing data points in the chart would be hidden
|
|
92
136
|
*/
|
|
93
137
|
readonly hideMissingValues: pulumi.Output<boolean | undefined>;
|
|
94
138
|
/**
|
|
95
|
-
* List of properties that
|
|
139
|
+
* List of properties that shouldn't be displayed in the chart legend (i.e. dimension names)
|
|
96
140
|
*
|
|
97
141
|
* @deprecated Please use legend_options_fields
|
|
98
142
|
*/
|
|
99
143
|
readonly legendFieldsToHides: pulumi.Output<string[] | undefined>;
|
|
100
144
|
/**
|
|
101
|
-
* List of property
|
|
145
|
+
* List of property and enabled flags to control the order and presence of datatable labels in a chart.
|
|
102
146
|
*/
|
|
103
147
|
readonly legendOptionsFields: pulumi.Output<outputs.ListChartLegendOptionsField[] | undefined>;
|
|
104
148
|
/**
|
|
105
|
-
* How long (in seconds) to wait for late datapoints
|
|
149
|
+
* How long (in seconds) to wait for late datapoints
|
|
106
150
|
*/
|
|
107
151
|
readonly maxDelay: pulumi.Output<number | undefined>;
|
|
108
152
|
/**
|
|
109
|
-
* Maximum number of digits to display when rounding values up or down
|
|
153
|
+
* Maximum number of digits to display when rounding values up or down
|
|
110
154
|
*/
|
|
111
155
|
readonly maxPrecision: pulumi.Output<number | undefined>;
|
|
112
156
|
/**
|
|
113
|
-
* Name of the chart
|
|
157
|
+
* Name of the chart
|
|
114
158
|
*/
|
|
115
159
|
readonly name: pulumi.Output<string>;
|
|
116
160
|
/**
|
|
117
|
-
* Signalflow program text for the chart. More info
|
|
161
|
+
* Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
|
|
118
162
|
*/
|
|
119
163
|
readonly programText: pulumi.Output<string>;
|
|
120
164
|
/**
|
|
121
|
-
* How often (in seconds) to refresh the values of the list
|
|
165
|
+
* How often (in seconds) to refresh the values of the list
|
|
122
166
|
*/
|
|
123
167
|
readonly refreshInterval: pulumi.Output<number | undefined>;
|
|
124
168
|
/**
|
|
125
|
-
*
|
|
169
|
+
* (false by default) What kind of secondary visualization to show (None, Radial, Linear, Sparkline)
|
|
126
170
|
*/
|
|
127
171
|
readonly secondaryVisualization: pulumi.Output<string | undefined>;
|
|
128
172
|
/**
|
|
129
|
-
* The property to use when sorting the elements. Use
|
|
173
|
+
* The property to use when sorting the elements. Use 'value' if you want to sort by value. Must be prepended with + for
|
|
174
|
+
* ascending or - for descending (e.g. -foo)
|
|
130
175
|
*/
|
|
131
176
|
readonly sortBy: pulumi.Output<string | undefined>;
|
|
132
177
|
/**
|
|
133
|
-
* Seconds since epoch
|
|
178
|
+
* Seconds since epoch to start the visualization
|
|
134
179
|
*/
|
|
135
180
|
readonly startTime: pulumi.Output<number | undefined>;
|
|
136
181
|
/**
|
|
137
|
-
*
|
|
182
|
+
* Seconds to display in the visualization. This is a rolling range from the current time. Example: 3600 = `-1h`
|
|
138
183
|
*/
|
|
139
184
|
readonly timeRange: pulumi.Output<number | undefined>;
|
|
140
185
|
/**
|
|
141
|
-
* The property value is a string that denotes the geographic region associated with the time zone, (
|
|
186
|
+
* The property value is a string that denotes the geographic region associated with the time zone, (e.g. Australia/Sydney)
|
|
142
187
|
*/
|
|
143
188
|
readonly timezone: pulumi.Output<string | undefined>;
|
|
144
189
|
/**
|
|
145
|
-
* Must be
|
|
190
|
+
* (Metric by default) Must be "Metric" or "Binary"
|
|
146
191
|
*/
|
|
147
192
|
readonly unitPrefix: pulumi.Output<string | undefined>;
|
|
148
193
|
/**
|
|
149
|
-
*
|
|
194
|
+
* URL of the chart
|
|
150
195
|
*/
|
|
151
196
|
readonly url: pulumi.Output<string>;
|
|
152
197
|
/**
|
|
153
|
-
* Plot-level customization options, associated with a publish statement
|
|
198
|
+
* Plot-level customization options, associated with a publish statement
|
|
154
199
|
*/
|
|
155
200
|
readonly vizOptions: pulumi.Output<outputs.ListChartVizOption[] | undefined>;
|
|
156
201
|
/**
|
|
@@ -167,89 +212,90 @@ export declare class ListChart extends pulumi.CustomResource {
|
|
|
167
212
|
*/
|
|
168
213
|
export interface ListChartState {
|
|
169
214
|
/**
|
|
170
|
-
* Must be
|
|
215
|
+
* (Metric by default) Must be "Scale", "Metric" or "Dimension"
|
|
171
216
|
*/
|
|
172
217
|
colorBy?: pulumi.Input<string>;
|
|
173
218
|
/**
|
|
174
|
-
* Single color range including both the color to display for that range and the borders of the range
|
|
219
|
+
* Single color range including both the color to display for that range and the borders of the range
|
|
175
220
|
*/
|
|
176
221
|
colorScales?: pulumi.Input<pulumi.Input<inputs.ListChartColorScale>[]>;
|
|
177
222
|
/**
|
|
178
|
-
* Description of the chart
|
|
223
|
+
* Description of the chart (Optional)
|
|
179
224
|
*/
|
|
180
225
|
description?: pulumi.Input<string>;
|
|
181
226
|
/**
|
|
182
|
-
* If
|
|
227
|
+
* (false by default) If false, samples a subset of the output MTS, which improves UI performance
|
|
183
228
|
*/
|
|
184
229
|
disableSampling?: pulumi.Input<boolean>;
|
|
185
230
|
/**
|
|
186
|
-
* Seconds since epoch
|
|
231
|
+
* Seconds since epoch to end the visualization
|
|
187
232
|
*/
|
|
188
233
|
endTime?: pulumi.Input<number>;
|
|
189
234
|
/**
|
|
190
|
-
*
|
|
235
|
+
* (false by default) If `true`, missing data points in the chart would be hidden
|
|
191
236
|
*/
|
|
192
237
|
hideMissingValues?: pulumi.Input<boolean>;
|
|
193
238
|
/**
|
|
194
|
-
* List of properties that
|
|
239
|
+
* List of properties that shouldn't be displayed in the chart legend (i.e. dimension names)
|
|
195
240
|
*
|
|
196
241
|
* @deprecated Please use legend_options_fields
|
|
197
242
|
*/
|
|
198
243
|
legendFieldsToHides?: pulumi.Input<pulumi.Input<string>[]>;
|
|
199
244
|
/**
|
|
200
|
-
* List of property
|
|
245
|
+
* List of property and enabled flags to control the order and presence of datatable labels in a chart.
|
|
201
246
|
*/
|
|
202
247
|
legendOptionsFields?: pulumi.Input<pulumi.Input<inputs.ListChartLegendOptionsField>[]>;
|
|
203
248
|
/**
|
|
204
|
-
* How long (in seconds) to wait for late datapoints
|
|
249
|
+
* How long (in seconds) to wait for late datapoints
|
|
205
250
|
*/
|
|
206
251
|
maxDelay?: pulumi.Input<number>;
|
|
207
252
|
/**
|
|
208
|
-
* Maximum number of digits to display when rounding values up or down
|
|
253
|
+
* Maximum number of digits to display when rounding values up or down
|
|
209
254
|
*/
|
|
210
255
|
maxPrecision?: pulumi.Input<number>;
|
|
211
256
|
/**
|
|
212
|
-
* Name of the chart
|
|
257
|
+
* Name of the chart
|
|
213
258
|
*/
|
|
214
259
|
name?: pulumi.Input<string>;
|
|
215
260
|
/**
|
|
216
|
-
* Signalflow program text for the chart. More info
|
|
261
|
+
* Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
|
|
217
262
|
*/
|
|
218
263
|
programText?: pulumi.Input<string>;
|
|
219
264
|
/**
|
|
220
|
-
* How often (in seconds) to refresh the values of the list
|
|
265
|
+
* How often (in seconds) to refresh the values of the list
|
|
221
266
|
*/
|
|
222
267
|
refreshInterval?: pulumi.Input<number>;
|
|
223
268
|
/**
|
|
224
|
-
*
|
|
269
|
+
* (false by default) What kind of secondary visualization to show (None, Radial, Linear, Sparkline)
|
|
225
270
|
*/
|
|
226
271
|
secondaryVisualization?: pulumi.Input<string>;
|
|
227
272
|
/**
|
|
228
|
-
* The property to use when sorting the elements. Use
|
|
273
|
+
* The property to use when sorting the elements. Use 'value' if you want to sort by value. Must be prepended with + for
|
|
274
|
+
* ascending or - for descending (e.g. -foo)
|
|
229
275
|
*/
|
|
230
276
|
sortBy?: pulumi.Input<string>;
|
|
231
277
|
/**
|
|
232
|
-
* Seconds since epoch
|
|
278
|
+
* Seconds since epoch to start the visualization
|
|
233
279
|
*/
|
|
234
280
|
startTime?: pulumi.Input<number>;
|
|
235
281
|
/**
|
|
236
|
-
*
|
|
282
|
+
* Seconds to display in the visualization. This is a rolling range from the current time. Example: 3600 = `-1h`
|
|
237
283
|
*/
|
|
238
284
|
timeRange?: pulumi.Input<number>;
|
|
239
285
|
/**
|
|
240
|
-
* The property value is a string that denotes the geographic region associated with the time zone, (
|
|
286
|
+
* The property value is a string that denotes the geographic region associated with the time zone, (e.g. Australia/Sydney)
|
|
241
287
|
*/
|
|
242
288
|
timezone?: pulumi.Input<string>;
|
|
243
289
|
/**
|
|
244
|
-
* Must be
|
|
290
|
+
* (Metric by default) Must be "Metric" or "Binary"
|
|
245
291
|
*/
|
|
246
292
|
unitPrefix?: pulumi.Input<string>;
|
|
247
293
|
/**
|
|
248
|
-
*
|
|
294
|
+
* URL of the chart
|
|
249
295
|
*/
|
|
250
296
|
url?: pulumi.Input<string>;
|
|
251
297
|
/**
|
|
252
|
-
* Plot-level customization options, associated with a publish statement
|
|
298
|
+
* Plot-level customization options, associated with a publish statement
|
|
253
299
|
*/
|
|
254
300
|
vizOptions?: pulumi.Input<pulumi.Input<inputs.ListChartVizOption>[]>;
|
|
255
301
|
}
|
|
@@ -258,85 +304,86 @@ export interface ListChartState {
|
|
|
258
304
|
*/
|
|
259
305
|
export interface ListChartArgs {
|
|
260
306
|
/**
|
|
261
|
-
* Must be
|
|
307
|
+
* (Metric by default) Must be "Scale", "Metric" or "Dimension"
|
|
262
308
|
*/
|
|
263
309
|
colorBy?: pulumi.Input<string>;
|
|
264
310
|
/**
|
|
265
|
-
* Single color range including both the color to display for that range and the borders of the range
|
|
311
|
+
* Single color range including both the color to display for that range and the borders of the range
|
|
266
312
|
*/
|
|
267
313
|
colorScales?: pulumi.Input<pulumi.Input<inputs.ListChartColorScale>[]>;
|
|
268
314
|
/**
|
|
269
|
-
* Description of the chart
|
|
315
|
+
* Description of the chart (Optional)
|
|
270
316
|
*/
|
|
271
317
|
description?: pulumi.Input<string>;
|
|
272
318
|
/**
|
|
273
|
-
* If
|
|
319
|
+
* (false by default) If false, samples a subset of the output MTS, which improves UI performance
|
|
274
320
|
*/
|
|
275
321
|
disableSampling?: pulumi.Input<boolean>;
|
|
276
322
|
/**
|
|
277
|
-
* Seconds since epoch
|
|
323
|
+
* Seconds since epoch to end the visualization
|
|
278
324
|
*/
|
|
279
325
|
endTime?: pulumi.Input<number>;
|
|
280
326
|
/**
|
|
281
|
-
*
|
|
327
|
+
* (false by default) If `true`, missing data points in the chart would be hidden
|
|
282
328
|
*/
|
|
283
329
|
hideMissingValues?: pulumi.Input<boolean>;
|
|
284
330
|
/**
|
|
285
|
-
* List of properties that
|
|
331
|
+
* List of properties that shouldn't be displayed in the chart legend (i.e. dimension names)
|
|
286
332
|
*
|
|
287
333
|
* @deprecated Please use legend_options_fields
|
|
288
334
|
*/
|
|
289
335
|
legendFieldsToHides?: pulumi.Input<pulumi.Input<string>[]>;
|
|
290
336
|
/**
|
|
291
|
-
* List of property
|
|
337
|
+
* List of property and enabled flags to control the order and presence of datatable labels in a chart.
|
|
292
338
|
*/
|
|
293
339
|
legendOptionsFields?: pulumi.Input<pulumi.Input<inputs.ListChartLegendOptionsField>[]>;
|
|
294
340
|
/**
|
|
295
|
-
* How long (in seconds) to wait for late datapoints
|
|
341
|
+
* How long (in seconds) to wait for late datapoints
|
|
296
342
|
*/
|
|
297
343
|
maxDelay?: pulumi.Input<number>;
|
|
298
344
|
/**
|
|
299
|
-
* Maximum number of digits to display when rounding values up or down
|
|
345
|
+
* Maximum number of digits to display when rounding values up or down
|
|
300
346
|
*/
|
|
301
347
|
maxPrecision?: pulumi.Input<number>;
|
|
302
348
|
/**
|
|
303
|
-
* Name of the chart
|
|
349
|
+
* Name of the chart
|
|
304
350
|
*/
|
|
305
351
|
name?: pulumi.Input<string>;
|
|
306
352
|
/**
|
|
307
|
-
* Signalflow program text for the chart. More info
|
|
353
|
+
* Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
|
|
308
354
|
*/
|
|
309
355
|
programText: pulumi.Input<string>;
|
|
310
356
|
/**
|
|
311
|
-
* How often (in seconds) to refresh the values of the list
|
|
357
|
+
* How often (in seconds) to refresh the values of the list
|
|
312
358
|
*/
|
|
313
359
|
refreshInterval?: pulumi.Input<number>;
|
|
314
360
|
/**
|
|
315
|
-
*
|
|
361
|
+
* (false by default) What kind of secondary visualization to show (None, Radial, Linear, Sparkline)
|
|
316
362
|
*/
|
|
317
363
|
secondaryVisualization?: pulumi.Input<string>;
|
|
318
364
|
/**
|
|
319
|
-
* The property to use when sorting the elements. Use
|
|
365
|
+
* The property to use when sorting the elements. Use 'value' if you want to sort by value. Must be prepended with + for
|
|
366
|
+
* ascending or - for descending (e.g. -foo)
|
|
320
367
|
*/
|
|
321
368
|
sortBy?: pulumi.Input<string>;
|
|
322
369
|
/**
|
|
323
|
-
* Seconds since epoch
|
|
370
|
+
* Seconds since epoch to start the visualization
|
|
324
371
|
*/
|
|
325
372
|
startTime?: pulumi.Input<number>;
|
|
326
373
|
/**
|
|
327
|
-
*
|
|
374
|
+
* Seconds to display in the visualization. This is a rolling range from the current time. Example: 3600 = `-1h`
|
|
328
375
|
*/
|
|
329
376
|
timeRange?: pulumi.Input<number>;
|
|
330
377
|
/**
|
|
331
|
-
* The property value is a string that denotes the geographic region associated with the time zone, (
|
|
378
|
+
* The property value is a string that denotes the geographic region associated with the time zone, (e.g. Australia/Sydney)
|
|
332
379
|
*/
|
|
333
380
|
timezone?: pulumi.Input<string>;
|
|
334
381
|
/**
|
|
335
|
-
* Must be
|
|
382
|
+
* (Metric by default) Must be "Metric" or "Binary"
|
|
336
383
|
*/
|
|
337
384
|
unitPrefix?: pulumi.Input<string>;
|
|
338
385
|
/**
|
|
339
|
-
* Plot-level customization options, associated with a publish statement
|
|
386
|
+
* Plot-level customization options, associated with a publish statement
|
|
340
387
|
*/
|
|
341
388
|
vizOptions?: pulumi.Input<pulumi.Input<inputs.ListChartVizOption>[]>;
|
|
342
389
|
}
|
package/listChart.js
CHANGED
|
@@ -8,9 +8,9 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* This chart type displays current data values in a list format.
|
|
10
10
|
*
|
|
11
|
-
* The name of each value in the chart reflects the name of the plot and any associated dimensions. We recommend you click the Pencil icon and give the plot a meaningful name, as in plot B
|
|
11
|
+
* The name of each value in the chart reflects the name of the plot and any associated dimensions. We recommend you click the Pencil icon and give the plot a meaningful name, as in plot B from the example. Otherwise, just the raw metric name will be displayed on the chart, as in plot A from the example.
|
|
12
12
|
*
|
|
13
|
-
* ## Example
|
|
13
|
+
* ## Example
|
|
14
14
|
*
|
|
15
15
|
* ```typescript
|
|
16
16
|
* import * as pulumi from "@pulumi/pulumi";
|
|
@@ -54,6 +54,50 @@ const utilities = require("./utilities");
|
|
|
54
54
|
* timezone: "Europe/Paris",
|
|
55
55
|
* });
|
|
56
56
|
* ```
|
|
57
|
+
*
|
|
58
|
+
* ## Arguments
|
|
59
|
+
*
|
|
60
|
+
* The following arguments are supported in the resource block:
|
|
61
|
+
*
|
|
62
|
+
* * `name` - (Required) Name of the chart.
|
|
63
|
+
* * `programText` - (Required) Signalflow program text for the chart. More info[in the Splunk Observability Cloud docs](https://developers.signalfx.com/signalflow_analytics/signalflow_overview.html#_signalflow_programming_language).
|
|
64
|
+
* * `description` - (Optional) Description of the chart.
|
|
65
|
+
* * `unitPrefix` - (Optional) Must be `"Metric"` or `"Binary`". `"Metric"` by default.
|
|
66
|
+
* * `colorBy` - (Optional) Must be one of `"Scale"`, `"Dimension"` or `"Metric"`. `"Dimension"` by default.
|
|
67
|
+
* * `maxDelay` - (Optional) How long (in seconds) to wait for late datapoints.
|
|
68
|
+
* * `timezone` - (Optional) The property value is a string that denotes the geographic region associated with the time zone, (default UTC).
|
|
69
|
+
* * `disableSampling` - (Optional) If `false`, samples a subset of the output MTS, which improves UI performance. `false` by default.
|
|
70
|
+
* * `refreshInterval` - (Optional) How often (in seconds) to refresh the values of the list.
|
|
71
|
+
* * `hideMissingValues` - (Optional) Determines whether to hide missing data points in the chart. If `true`, missing data points in the chart would be hidden. `false` by default.
|
|
72
|
+
* * `vizOptions` - (Optional) Plot-level customization options, associated with a publish statement.
|
|
73
|
+
* * `label` - (Required) Label used in the publish statement that displays the plot (metric time series data) you want to customize.
|
|
74
|
+
* * `displayName` - (Optional) Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
|
|
75
|
+
* * `color` - (Optional) 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.
|
|
76
|
+
* * `valueUnit` - (Optional) 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`.
|
|
77
|
+
* * `valuePrefix`, `valueSuffix` - (Optional) Arbitrary prefix/suffix to display with the value of this plot.
|
|
78
|
+
* * `legendFieldsToHide` - (Optional) List of properties that should not be displayed in the chart legend (i.e. dimension names). All the properties are visible by default. Deprecated, please use `legendOptionsFields`.
|
|
79
|
+
* * `legendOptionsFields` - (Optional) List of property names and enabled flags that should be displayed in the data table for the chart, in the order provided. This option cannot be used with `legendFieldsToHide`.
|
|
80
|
+
* * `property` 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://dev.splunk.com/observability/docs/signalflow/functions/data_function/) for the time series being displayed.
|
|
81
|
+
* * `enabled` True or False depending on if you want the property to be shown or hidden.
|
|
82
|
+
* * `maxPrecision` - (Optional) Maximum number of digits to display when rounding values up or down.
|
|
83
|
+
* * `secondaryVisualization` - (Optional) The type of secondary visualization. Can be `None`, `Radial`, `Linear`, or `Sparkline`. If unset, the Splunk Observability Cloud default is used (`Sparkline`).
|
|
84
|
+
* * `colorScale` - (Optional. `colorBy` must be `"Scale"`) Single color range including both the color to display for that range and the borders of the range. Example: `[{ gt = 60, color = "blue" }, { lte = 60, color = "yellow" }]`. Look at this [link](https://docs.splunk.com/observability/en/data-visualization/charts/chart-options.html).
|
|
85
|
+
* * `gt` - (Optional) Indicates the lower threshold non-inclusive value for this range.
|
|
86
|
+
* * `gte` - (Optional) Indicates the lower threshold inclusive value for this range.
|
|
87
|
+
* * `lt` - (Optional) Indicates the upper threshold non-inculsive value for this range.
|
|
88
|
+
* * `lte` - (Optional) Indicates the upper threshold inclusive value for this range.
|
|
89
|
+
* * `color` - (Required) 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.
|
|
90
|
+
* * `sortBy` - (Optional) The property to use when sorting the elements. Use `value` if you want to sort by value. Must be prepended with `+` for ascending or `-` for descending (e.g. `-foo`). Note there are some special values for some of the options provided in the UX: `"value"` for Value, `"sf_originatingMetric"` for Metric, and `"sfMetric"` for plot.
|
|
91
|
+
* * `timeRange` - (Optional) How many seconds ago from which to display data. For example, the last hour would be `3600`, etc. Conflicts with `startTime` and `endTime`.
|
|
92
|
+
* * `startTime` - (Optional) Seconds since epoch. Used for visualization. Conflicts with `timeRange`.
|
|
93
|
+
* * `endTime` - (Optional) Seconds since epoch. Used for visualization. Conflicts with `timeRange`.
|
|
94
|
+
*
|
|
95
|
+
* ## Attributes
|
|
96
|
+
*
|
|
97
|
+
* In a addition to all arguments above, the following attributes are exported:
|
|
98
|
+
*
|
|
99
|
+
* * `id` - The ID of the chart.
|
|
100
|
+
* * `url` - The URL of the chart.
|
|
57
101
|
*/
|
|
58
102
|
class ListChart extends pulumi.CustomResource {
|
|
59
103
|
/**
|
package/listChart.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"listChart.js","sourceRoot":"","sources":["../listChart.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"listChart.js","sourceRoot":"","sources":["../listChart.ts"],"names":[],"mappings":"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"}
|