@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/aws/tokenIntegration.js
CHANGED
|
@@ -8,11 +8,11 @@ const utilities = require("../utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* Splunk Observability AWS CloudWatch integrations using security tokens. For help with this integration see [Connect to AWS CloudWatch](https://docs.signalfx.com/en/latest/integrations/amazon-web-services.html#connect-to-aws).
|
|
10
10
|
*
|
|
11
|
-
* > **NOTE** When managing integrations, use a session token of an administrator to authenticate the Splunk
|
|
11
|
+
* > **NOTE** When managing integrations, use a session token of an administrator to authenticate the Splunk Observabilit Cloud provider. See [Operations that require a session token for an administrator](https://dev.splunk.com/observability/docs/administration/authtokens#Operations-that-require-a-session-token-for-an-administrator).
|
|
12
12
|
*
|
|
13
13
|
* > **WARNING** This resource implements a part of a workflow. You must use it with `signalfx.aws.Integration`.
|
|
14
14
|
*
|
|
15
|
-
* ## Example
|
|
15
|
+
* ## Example
|
|
16
16
|
*
|
|
17
17
|
* ```typescript
|
|
18
18
|
* import * as pulumi from "@pulumi/pulumi";
|
|
@@ -46,6 +46,17 @@ const utilities = require("../utilities");
|
|
|
46
46
|
* }],
|
|
47
47
|
* });
|
|
48
48
|
* ```
|
|
49
|
+
*
|
|
50
|
+
* ## Arguments
|
|
51
|
+
*
|
|
52
|
+
* * `name` - (Required) The name of this integration
|
|
53
|
+
*
|
|
54
|
+
* ## Attributes
|
|
55
|
+
*
|
|
56
|
+
* In addition to all arguments above, the following attributes are exported:
|
|
57
|
+
*
|
|
58
|
+
* * `id` - The ID of the integration to use with `signalfx.aws.Integration`
|
|
59
|
+
* * `signalfxAwsAccount` - The AWS Account ARN to use with your policies/roles, provided by Splunk Observability Cloud.
|
|
49
60
|
*/
|
|
50
61
|
class TokenIntegration extends pulumi.CustomResource {
|
|
51
62
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tokenIntegration.js","sourceRoot":"","sources":["../../aws/tokenIntegration.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"tokenIntegration.js","sourceRoot":"","sources":["../../aws/tokenIntegration.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoDG;AACH,MAAa,gBAAiB,SAAQ,MAAM,CAAC,cAAc;IACvD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA6B,EAAE,IAAmC;QAC3H,OAAO,IAAI,gBAAgB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACvE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,gBAAgB,CAAC,YAAY,CAAC;IACjE,CAAC;IAuBD,YAAY,IAAY,EAAE,WAA0D,EAAE,IAAmC;QACrH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAgD,CAAC;YAC/D,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;SACjE;aAAM;YACH,MAAM,IAAI,GAAG,WAA+C,CAAC;YAC7D,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,oBAAoB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACzD,cAAc,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACjD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,UAAU,GAAG,EAAE,uBAAuB,EAAE,CAAC,oBAAoB,EAAE,SAAS,CAAC,EAAE,CAAC;QAClF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;QAC7C,KAAK,CAAC,gBAAgB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACrE,CAAC;;AAnEL,4CAoEC;AAtDG,gBAAgB;AACO,6BAAY,GAAG,gDAAgD,CAAC"}
|
package/azure/integration.d.ts
CHANGED
|
@@ -2,11 +2,11 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
import * as inputs from "../types/input";
|
|
3
3
|
import * as outputs from "../types/output";
|
|
4
4
|
/**
|
|
5
|
-
*
|
|
5
|
+
* Splunk Observability Cloud Azure integrations. For help with this integration see [Monitoring Microsoft Azure](https://docs.splunk.com/observability/en/gdi/get-data-in/connect/azure/azure.html).
|
|
6
6
|
*
|
|
7
|
-
* > **NOTE** When managing integrations, use a session token of an administrator to authenticate the
|
|
7
|
+
* > **NOTE** When managing integrations, use a session token of an administrator to authenticate the Splunk Observability Cloud provider. See [Operations that require a session token for an administrator](https://dev.splunk.com/observability/docs/administration/authtokens#Operations-that-require-a-session-token-for-an-administrator). Otherwise you'll receive a 4xx error.
|
|
8
8
|
*
|
|
9
|
-
* ## Example
|
|
9
|
+
* ## Example
|
|
10
10
|
*
|
|
11
11
|
* ```typescript
|
|
12
12
|
* import * as pulumi from "@pulumi/pulumi";
|
|
@@ -42,6 +42,32 @@ import * as outputs from "../types/output";
|
|
|
42
42
|
* tenantId: "ZZZ",
|
|
43
43
|
* });
|
|
44
44
|
* ```
|
|
45
|
+
*
|
|
46
|
+
* ## Arguments
|
|
47
|
+
*
|
|
48
|
+
* * `appId` - (Required) Azure application ID for the Splunk Observability Cloud app. To learn how to get this ID, see the topic [Connect to Microsoft Azure](https://docs.splunk.com/observability/en/gdi/get-data-in/connect/azure/azure.html) in the product documentation.
|
|
49
|
+
* * `enabled` - (Required) Whether the integration is enabled.
|
|
50
|
+
* * `customNamespacesPerService` - (Optional) Allows for more fine-grained control of syncing of custom namespaces, should the boolean convenience parameter `syncGuestOsNamespaces` be not enough. The customer may specify a map of services to custom namespaces. If they do so, for each service which is a key in this map, we will attempt to sync metrics from namespaces in the value list in addition to the default namespaces.
|
|
51
|
+
* * `namespaces` - (Required) The additional namespaces.
|
|
52
|
+
* * `service` - (Required) The name of the service.
|
|
53
|
+
* * `environment` (Optional) What type of Azure integration this is. The allowed values are `\"azure_us_government\"` and `\"azure\"`. Defaults to `\"azure\"`.
|
|
54
|
+
* * `name` - (Required) Name of the integration.
|
|
55
|
+
* * `namedToken` - (Optional) Name of the org token to be used for data ingestion. If not specified then default access token is used.
|
|
56
|
+
* * `pollRate` - (Optional) Azure poll rate (in seconds). Value between `60` and `600`. Default: `300`.
|
|
57
|
+
* * `resourceFilterRules` - (Optional) List of rules for filtering Azure resources by their tags.
|
|
58
|
+
* * `filterSource` - (Required) Expression that selects the data that Splunk Observability Cloud 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.
|
|
59
|
+
* * `secretKey` - (Required) Azure secret key that associates the Splunk Observability Cloud app in Azure with the Azure tenant ID. To learn how to get this ID, see the topic [Connect to Microsoft Azure](https://docs.splunk.com/observability/en/gdi/get-data-in/connect/azure/azure.html) in the product documentation.
|
|
60
|
+
* * `services` - (Required) List of Microsoft Azure service names for the Azure services you want Splunk Observability Cloud to monitor. Can be an empty list to import data for all supported services. See [Microsoft Azure services](https://docs.splunk.com/Observability/gdi/get-data-in/integrations.html#azure-integrations) for a list of valid values.
|
|
61
|
+
* * `subscriptions` - (Required) List of Azure subscriptions that Splunk Observability Cloud should monitor.
|
|
62
|
+
* * `syncGuestOsNamespaces` - (Optional) If enabled, Splunk Observability Cloud will try to sync additional namespaces for VMs (including VMs in scale sets): telegraf/mem, telegraf/cpu, azure.vm.windows.guest (these are namespaces recommended by Azure when enabling their Diagnostic Extension). If there are no metrics there, no new datapoints will be ingested. Defaults to false.
|
|
63
|
+
* * `importAzureMonitor` - (Optional) If enabled, Splunk Observability Cloud will sync also Azure Monitor data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
|
|
64
|
+
* * `tenantId` (Required) Azure ID of the Azure tenant. To learn how to get this ID, see the topic [Connect to Microsoft Azure](https://docs.splunk.com/observability/en/gdi/get-data-in/connect/azure/azure.html) in the product documentation.
|
|
65
|
+
*
|
|
66
|
+
* ## Attributes
|
|
67
|
+
*
|
|
68
|
+
* In a addition to all arguments above, the following attributes are exported:
|
|
69
|
+
*
|
|
70
|
+
* * `id` - The ID of the integration.
|
|
45
71
|
*/
|
|
46
72
|
export declare class Integration extends pulumi.CustomResource {
|
|
47
73
|
/**
|
|
@@ -64,59 +90,69 @@ export declare class Integration extends pulumi.CustomResource {
|
|
|
64
90
|
*/
|
|
65
91
|
readonly additionalServices: pulumi.Output<string[] | undefined>;
|
|
66
92
|
/**
|
|
67
|
-
* Azure application ID for the
|
|
93
|
+
* Azure application ID for the Splunk Observability Cloud app.
|
|
68
94
|
*/
|
|
69
95
|
readonly appId: pulumi.Output<string>;
|
|
70
96
|
/**
|
|
71
|
-
* Allows for more fine-grained control of syncing of custom namespaces, should the boolean convenience parameter
|
|
97
|
+
* Allows for more fine-grained control of syncing of custom namespaces, should the boolean convenience parameter
|
|
98
|
+
* `sync_guest_os_namespaces` be not enough. The customer may specify a map of services to custom namespaces. If they do
|
|
99
|
+
* so, for each service which is a key in this map, we will attempt to sync metrics from namespaces in the value list in
|
|
100
|
+
* addition to the default namespaces.
|
|
72
101
|
*/
|
|
73
102
|
readonly customNamespacesPerServices: pulumi.Output<outputs.azure.IntegrationCustomNamespacesPerService[] | undefined>;
|
|
74
103
|
/**
|
|
75
|
-
* Whether the integration is enabled
|
|
104
|
+
* Whether the integration is enabled or not
|
|
76
105
|
*/
|
|
77
106
|
readonly enabled: pulumi.Output<boolean>;
|
|
78
107
|
/**
|
|
79
|
-
*
|
|
108
|
+
* what type of Azure integration this is. The allowed values are `"azure_us_government"` and `"azure"`. Defaults to
|
|
109
|
+
* `"azure"`
|
|
80
110
|
*/
|
|
81
111
|
readonly environment: pulumi.Output<string | undefined>;
|
|
82
112
|
/**
|
|
83
|
-
* If enabled,
|
|
113
|
+
* If enabled, Splunk Observability Cloud will sync also Azure Monitor data. If disabled, Splunk Observability Cloud will
|
|
114
|
+
* import only metadata. Defaults to true.
|
|
84
115
|
*/
|
|
85
116
|
readonly importAzureMonitor: pulumi.Output<boolean | undefined>;
|
|
86
117
|
/**
|
|
87
|
-
* Name of the integration
|
|
118
|
+
* Name of the integration
|
|
88
119
|
*/
|
|
89
120
|
readonly name: pulumi.Output<string>;
|
|
90
121
|
/**
|
|
91
|
-
*
|
|
122
|
+
* A named token to use for ingest
|
|
92
123
|
*/
|
|
93
124
|
readonly namedToken: pulumi.Output<string | undefined>;
|
|
94
125
|
/**
|
|
95
|
-
* Azure poll rate (in seconds).
|
|
126
|
+
* Azure poll rate (in seconds). Between `60` and `600`.
|
|
96
127
|
*/
|
|
97
128
|
readonly pollRate: pulumi.Output<number | undefined>;
|
|
98
129
|
/**
|
|
99
|
-
* List of rules for filtering Azure resources by their tags.
|
|
130
|
+
* List of rules for filtering Azure resources by their tags. The source of each filter rule must be in the form
|
|
131
|
+
* filter('key', 'value'). You can join multiple filter statements using the and and or operators. Referenced keys are
|
|
132
|
+
* limited to tags and must start with the azure_tag_ prefix..
|
|
100
133
|
*/
|
|
101
134
|
readonly resourceFilterRules: pulumi.Output<outputs.azure.IntegrationResourceFilterRule[] | undefined>;
|
|
102
135
|
/**
|
|
103
|
-
* Azure secret key that associates the
|
|
136
|
+
* Azure secret key that associates the Splunk Observability Cloud app in Azure with the Azure tenant.
|
|
104
137
|
*/
|
|
105
138
|
readonly secretKey: pulumi.Output<string>;
|
|
106
139
|
/**
|
|
107
|
-
* List of Microsoft Azure service names for the Azure services you want
|
|
140
|
+
* List of Microsoft Azure service names for the Azure services you want Splunk Observability Cloud to monitor. Splunk
|
|
141
|
+
* Observability Cloud only supports certain services, and if you specify an unsupported one, you receive an API error.
|
|
108
142
|
*/
|
|
109
143
|
readonly services: pulumi.Output<string[]>;
|
|
110
144
|
/**
|
|
111
|
-
* List of Azure subscriptions that
|
|
145
|
+
* List of Azure subscriptions that Splunk Observability Cloud should monitor.
|
|
112
146
|
*/
|
|
113
147
|
readonly subscriptions: pulumi.Output<string[]>;
|
|
114
148
|
/**
|
|
115
|
-
* If enabled,
|
|
149
|
+
* If enabled, Splunk Observability Cloud will try to sync additional namespaces for VMs (including VMs in scale sets):
|
|
150
|
+
* telegraf/mem, telegraf/cpu, azure.vm.windows.guest (these are namespaces recommended by Azure when enabling their
|
|
151
|
+
* Diagnostic Extension). If there are no metrics there, no new datapoints will be ingested.
|
|
116
152
|
*/
|
|
117
153
|
readonly syncGuestOsNamespaces: pulumi.Output<boolean | undefined>;
|
|
118
154
|
/**
|
|
119
|
-
* Azure ID of the Azure tenant.
|
|
155
|
+
* Azure ID of the Azure tenant.
|
|
120
156
|
*/
|
|
121
157
|
readonly tenantId: pulumi.Output<string>;
|
|
122
158
|
/**
|
|
@@ -137,59 +173,69 @@ export interface IntegrationState {
|
|
|
137
173
|
*/
|
|
138
174
|
additionalServices?: pulumi.Input<pulumi.Input<string>[]>;
|
|
139
175
|
/**
|
|
140
|
-
* Azure application ID for the
|
|
176
|
+
* Azure application ID for the Splunk Observability Cloud app.
|
|
141
177
|
*/
|
|
142
178
|
appId?: pulumi.Input<string>;
|
|
143
179
|
/**
|
|
144
|
-
* Allows for more fine-grained control of syncing of custom namespaces, should the boolean convenience parameter
|
|
180
|
+
* Allows for more fine-grained control of syncing of custom namespaces, should the boolean convenience parameter
|
|
181
|
+
* `sync_guest_os_namespaces` be not enough. The customer may specify a map of services to custom namespaces. If they do
|
|
182
|
+
* so, for each service which is a key in this map, we will attempt to sync metrics from namespaces in the value list in
|
|
183
|
+
* addition to the default namespaces.
|
|
145
184
|
*/
|
|
146
185
|
customNamespacesPerServices?: pulumi.Input<pulumi.Input<inputs.azure.IntegrationCustomNamespacesPerService>[]>;
|
|
147
186
|
/**
|
|
148
|
-
* Whether the integration is enabled
|
|
187
|
+
* Whether the integration is enabled or not
|
|
149
188
|
*/
|
|
150
189
|
enabled?: pulumi.Input<boolean>;
|
|
151
190
|
/**
|
|
152
|
-
*
|
|
191
|
+
* what type of Azure integration this is. The allowed values are `"azure_us_government"` and `"azure"`. Defaults to
|
|
192
|
+
* `"azure"`
|
|
153
193
|
*/
|
|
154
194
|
environment?: pulumi.Input<string>;
|
|
155
195
|
/**
|
|
156
|
-
* If enabled,
|
|
196
|
+
* If enabled, Splunk Observability Cloud will sync also Azure Monitor data. If disabled, Splunk Observability Cloud will
|
|
197
|
+
* import only metadata. Defaults to true.
|
|
157
198
|
*/
|
|
158
199
|
importAzureMonitor?: pulumi.Input<boolean>;
|
|
159
200
|
/**
|
|
160
|
-
* Name of the integration
|
|
201
|
+
* Name of the integration
|
|
161
202
|
*/
|
|
162
203
|
name?: pulumi.Input<string>;
|
|
163
204
|
/**
|
|
164
|
-
*
|
|
205
|
+
* A named token to use for ingest
|
|
165
206
|
*/
|
|
166
207
|
namedToken?: pulumi.Input<string>;
|
|
167
208
|
/**
|
|
168
|
-
* Azure poll rate (in seconds).
|
|
209
|
+
* Azure poll rate (in seconds). Between `60` and `600`.
|
|
169
210
|
*/
|
|
170
211
|
pollRate?: pulumi.Input<number>;
|
|
171
212
|
/**
|
|
172
|
-
* List of rules for filtering Azure resources by their tags.
|
|
213
|
+
* List of rules for filtering Azure resources by their tags. The source of each filter rule must be in the form
|
|
214
|
+
* filter('key', 'value'). You can join multiple filter statements using the and and or operators. Referenced keys are
|
|
215
|
+
* limited to tags and must start with the azure_tag_ prefix..
|
|
173
216
|
*/
|
|
174
217
|
resourceFilterRules?: pulumi.Input<pulumi.Input<inputs.azure.IntegrationResourceFilterRule>[]>;
|
|
175
218
|
/**
|
|
176
|
-
* Azure secret key that associates the
|
|
219
|
+
* Azure secret key that associates the Splunk Observability Cloud app in Azure with the Azure tenant.
|
|
177
220
|
*/
|
|
178
221
|
secretKey?: pulumi.Input<string>;
|
|
179
222
|
/**
|
|
180
|
-
* List of Microsoft Azure service names for the Azure services you want
|
|
223
|
+
* List of Microsoft Azure service names for the Azure services you want Splunk Observability Cloud to monitor. Splunk
|
|
224
|
+
* Observability Cloud only supports certain services, and if you specify an unsupported one, you receive an API error.
|
|
181
225
|
*/
|
|
182
226
|
services?: pulumi.Input<pulumi.Input<string>[]>;
|
|
183
227
|
/**
|
|
184
|
-
* List of Azure subscriptions that
|
|
228
|
+
* List of Azure subscriptions that Splunk Observability Cloud should monitor.
|
|
185
229
|
*/
|
|
186
230
|
subscriptions?: pulumi.Input<pulumi.Input<string>[]>;
|
|
187
231
|
/**
|
|
188
|
-
* If enabled,
|
|
232
|
+
* If enabled, Splunk Observability Cloud will try to sync additional namespaces for VMs (including VMs in scale sets):
|
|
233
|
+
* telegraf/mem, telegraf/cpu, azure.vm.windows.guest (these are namespaces recommended by Azure when enabling their
|
|
234
|
+
* Diagnostic Extension). If there are no metrics there, no new datapoints will be ingested.
|
|
189
235
|
*/
|
|
190
236
|
syncGuestOsNamespaces?: pulumi.Input<boolean>;
|
|
191
237
|
/**
|
|
192
|
-
* Azure ID of the Azure tenant.
|
|
238
|
+
* Azure ID of the Azure tenant.
|
|
193
239
|
*/
|
|
194
240
|
tenantId?: pulumi.Input<string>;
|
|
195
241
|
}
|
|
@@ -202,59 +248,69 @@ export interface IntegrationArgs {
|
|
|
202
248
|
*/
|
|
203
249
|
additionalServices?: pulumi.Input<pulumi.Input<string>[]>;
|
|
204
250
|
/**
|
|
205
|
-
* Azure application ID for the
|
|
251
|
+
* Azure application ID for the Splunk Observability Cloud app.
|
|
206
252
|
*/
|
|
207
253
|
appId: pulumi.Input<string>;
|
|
208
254
|
/**
|
|
209
|
-
* Allows for more fine-grained control of syncing of custom namespaces, should the boolean convenience parameter
|
|
255
|
+
* Allows for more fine-grained control of syncing of custom namespaces, should the boolean convenience parameter
|
|
256
|
+
* `sync_guest_os_namespaces` be not enough. The customer may specify a map of services to custom namespaces. If they do
|
|
257
|
+
* so, for each service which is a key in this map, we will attempt to sync metrics from namespaces in the value list in
|
|
258
|
+
* addition to the default namespaces.
|
|
210
259
|
*/
|
|
211
260
|
customNamespacesPerServices?: pulumi.Input<pulumi.Input<inputs.azure.IntegrationCustomNamespacesPerService>[]>;
|
|
212
261
|
/**
|
|
213
|
-
* Whether the integration is enabled
|
|
262
|
+
* Whether the integration is enabled or not
|
|
214
263
|
*/
|
|
215
264
|
enabled: pulumi.Input<boolean>;
|
|
216
265
|
/**
|
|
217
|
-
*
|
|
266
|
+
* what type of Azure integration this is. The allowed values are `"azure_us_government"` and `"azure"`. Defaults to
|
|
267
|
+
* `"azure"`
|
|
218
268
|
*/
|
|
219
269
|
environment?: pulumi.Input<string>;
|
|
220
270
|
/**
|
|
221
|
-
* If enabled,
|
|
271
|
+
* If enabled, Splunk Observability Cloud will sync also Azure Monitor data. If disabled, Splunk Observability Cloud will
|
|
272
|
+
* import only metadata. Defaults to true.
|
|
222
273
|
*/
|
|
223
274
|
importAzureMonitor?: pulumi.Input<boolean>;
|
|
224
275
|
/**
|
|
225
|
-
* Name of the integration
|
|
276
|
+
* Name of the integration
|
|
226
277
|
*/
|
|
227
278
|
name?: pulumi.Input<string>;
|
|
228
279
|
/**
|
|
229
|
-
*
|
|
280
|
+
* A named token to use for ingest
|
|
230
281
|
*/
|
|
231
282
|
namedToken?: pulumi.Input<string>;
|
|
232
283
|
/**
|
|
233
|
-
* Azure poll rate (in seconds).
|
|
284
|
+
* Azure poll rate (in seconds). Between `60` and `600`.
|
|
234
285
|
*/
|
|
235
286
|
pollRate?: pulumi.Input<number>;
|
|
236
287
|
/**
|
|
237
|
-
* List of rules for filtering Azure resources by their tags.
|
|
288
|
+
* List of rules for filtering Azure resources by their tags. The source of each filter rule must be in the form
|
|
289
|
+
* filter('key', 'value'). You can join multiple filter statements using the and and or operators. Referenced keys are
|
|
290
|
+
* limited to tags and must start with the azure_tag_ prefix..
|
|
238
291
|
*/
|
|
239
292
|
resourceFilterRules?: pulumi.Input<pulumi.Input<inputs.azure.IntegrationResourceFilterRule>[]>;
|
|
240
293
|
/**
|
|
241
|
-
* Azure secret key that associates the
|
|
294
|
+
* Azure secret key that associates the Splunk Observability Cloud app in Azure with the Azure tenant.
|
|
242
295
|
*/
|
|
243
296
|
secretKey: pulumi.Input<string>;
|
|
244
297
|
/**
|
|
245
|
-
* List of Microsoft Azure service names for the Azure services you want
|
|
298
|
+
* List of Microsoft Azure service names for the Azure services you want Splunk Observability Cloud to monitor. Splunk
|
|
299
|
+
* Observability Cloud only supports certain services, and if you specify an unsupported one, you receive an API error.
|
|
246
300
|
*/
|
|
247
301
|
services: pulumi.Input<pulumi.Input<string>[]>;
|
|
248
302
|
/**
|
|
249
|
-
* List of Azure subscriptions that
|
|
303
|
+
* List of Azure subscriptions that Splunk Observability Cloud should monitor.
|
|
250
304
|
*/
|
|
251
305
|
subscriptions: pulumi.Input<pulumi.Input<string>[]>;
|
|
252
306
|
/**
|
|
253
|
-
* If enabled,
|
|
307
|
+
* If enabled, Splunk Observability Cloud will try to sync additional namespaces for VMs (including VMs in scale sets):
|
|
308
|
+
* telegraf/mem, telegraf/cpu, azure.vm.windows.guest (these are namespaces recommended by Azure when enabling their
|
|
309
|
+
* Diagnostic Extension). If there are no metrics there, no new datapoints will be ingested.
|
|
254
310
|
*/
|
|
255
311
|
syncGuestOsNamespaces?: pulumi.Input<boolean>;
|
|
256
312
|
/**
|
|
257
|
-
* Azure ID of the Azure tenant.
|
|
313
|
+
* Azure ID of the Azure tenant.
|
|
258
314
|
*/
|
|
259
315
|
tenantId: pulumi.Input<string>;
|
|
260
316
|
}
|
package/azure/integration.js
CHANGED
|
@@ -6,11 +6,11 @@ exports.Integration = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
/**
|
|
9
|
-
*
|
|
9
|
+
* Splunk Observability Cloud Azure integrations. For help with this integration see [Monitoring Microsoft Azure](https://docs.splunk.com/observability/en/gdi/get-data-in/connect/azure/azure.html).
|
|
10
10
|
*
|
|
11
|
-
* > **NOTE** When managing integrations, use a session token of an administrator to authenticate the
|
|
11
|
+
* > **NOTE** When managing integrations, use a session token of an administrator to authenticate the Splunk Observability Cloud provider. See [Operations that require a session token for an administrator](https://dev.splunk.com/observability/docs/administration/authtokens#Operations-that-require-a-session-token-for-an-administrator). Otherwise you'll receive a 4xx error.
|
|
12
12
|
*
|
|
13
|
-
* ## Example
|
|
13
|
+
* ## Example
|
|
14
14
|
*
|
|
15
15
|
* ```typescript
|
|
16
16
|
* import * as pulumi from "@pulumi/pulumi";
|
|
@@ -46,6 +46,32 @@ const utilities = require("../utilities");
|
|
|
46
46
|
* tenantId: "ZZZ",
|
|
47
47
|
* });
|
|
48
48
|
* ```
|
|
49
|
+
*
|
|
50
|
+
* ## Arguments
|
|
51
|
+
*
|
|
52
|
+
* * `appId` - (Required) Azure application ID for the Splunk Observability Cloud app. To learn how to get this ID, see the topic [Connect to Microsoft Azure](https://docs.splunk.com/observability/en/gdi/get-data-in/connect/azure/azure.html) in the product documentation.
|
|
53
|
+
* * `enabled` - (Required) Whether the integration is enabled.
|
|
54
|
+
* * `customNamespacesPerService` - (Optional) Allows for more fine-grained control of syncing of custom namespaces, should the boolean convenience parameter `syncGuestOsNamespaces` be not enough. The customer may specify a map of services to custom namespaces. If they do so, for each service which is a key in this map, we will attempt to sync metrics from namespaces in the value list in addition to the default namespaces.
|
|
55
|
+
* * `namespaces` - (Required) The additional namespaces.
|
|
56
|
+
* * `service` - (Required) The name of the service.
|
|
57
|
+
* * `environment` (Optional) What type of Azure integration this is. The allowed values are `\"azure_us_government\"` and `\"azure\"`. Defaults to `\"azure\"`.
|
|
58
|
+
* * `name` - (Required) Name of the integration.
|
|
59
|
+
* * `namedToken` - (Optional) Name of the org token to be used for data ingestion. If not specified then default access token is used.
|
|
60
|
+
* * `pollRate` - (Optional) Azure poll rate (in seconds). Value between `60` and `600`. Default: `300`.
|
|
61
|
+
* * `resourceFilterRules` - (Optional) List of rules for filtering Azure resources by their tags.
|
|
62
|
+
* * `filterSource` - (Required) Expression that selects the data that Splunk Observability Cloud 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.
|
|
63
|
+
* * `secretKey` - (Required) Azure secret key that associates the Splunk Observability Cloud app in Azure with the Azure tenant ID. To learn how to get this ID, see the topic [Connect to Microsoft Azure](https://docs.splunk.com/observability/en/gdi/get-data-in/connect/azure/azure.html) in the product documentation.
|
|
64
|
+
* * `services` - (Required) List of Microsoft Azure service names for the Azure services you want Splunk Observability Cloud to monitor. Can be an empty list to import data for all supported services. See [Microsoft Azure services](https://docs.splunk.com/Observability/gdi/get-data-in/integrations.html#azure-integrations) for a list of valid values.
|
|
65
|
+
* * `subscriptions` - (Required) List of Azure subscriptions that Splunk Observability Cloud should monitor.
|
|
66
|
+
* * `syncGuestOsNamespaces` - (Optional) If enabled, Splunk Observability Cloud will try to sync additional namespaces for VMs (including VMs in scale sets): telegraf/mem, telegraf/cpu, azure.vm.windows.guest (these are namespaces recommended by Azure when enabling their Diagnostic Extension). If there are no metrics there, no new datapoints will be ingested. Defaults to false.
|
|
67
|
+
* * `importAzureMonitor` - (Optional) If enabled, Splunk Observability Cloud will sync also Azure Monitor data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
|
|
68
|
+
* * `tenantId` (Required) Azure ID of the Azure tenant. To learn how to get this ID, see the topic [Connect to Microsoft Azure](https://docs.splunk.com/observability/en/gdi/get-data-in/connect/azure/azure.html) in the product documentation.
|
|
69
|
+
*
|
|
70
|
+
* ## Attributes
|
|
71
|
+
*
|
|
72
|
+
* In a addition to all arguments above, the following attributes are exported:
|
|
73
|
+
*
|
|
74
|
+
* * `id` - The ID of the integration.
|
|
49
75
|
*/
|
|
50
76
|
class Integration extends pulumi.CustomResource {
|
|
51
77
|
/**
|
package/azure/integration.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"integration.js","sourceRoot":"","sources":["../../azure/integration.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"integration.js","sourceRoot":"","sources":["../../azure/integration.ts"],"names":[],"mappings":"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"}
|
package/config/vars.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* API URL for your
|
|
2
|
+
* API URL for your Splunk Observability Cloud org, may include a realm
|
|
3
3
|
*/
|
|
4
4
|
export declare const apiUrl: string | undefined;
|
|
5
5
|
/**
|
|
6
|
-
*
|
|
6
|
+
* Splunk Observability Cloud auth token
|
|
7
7
|
*/
|
|
8
8
|
export declare const authToken: string | undefined;
|
|
9
9
|
/**
|
|
10
|
-
* Application URL for your
|
|
10
|
+
* Application URL for your Splunk Observability Cloud org, often customized for organizations using SSO
|
|
11
11
|
*/
|
|
12
12
|
export declare const customAppUrl: string | undefined;
|
|
13
13
|
/**
|