pulumi-signalfx 7.2.0a1709367777__py3-none-any.whl → 7.6.0a1736835428__py3-none-any.whl
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.
- pulumi_signalfx/__init__.py +9 -0
- pulumi_signalfx/_inputs.py +1976 -339
- pulumi_signalfx/_utilities.py +41 -5
- pulumi_signalfx/alert_muting_rule.py +110 -86
- pulumi_signalfx/aws/_inputs.py +85 -16
- pulumi_signalfx/aws/external_integration.py +20 -275
- pulumi_signalfx/aws/integration.py +222 -367
- pulumi_signalfx/aws/outputs.py +21 -16
- pulumi_signalfx/aws/token_integration.py +46 -65
- pulumi_signalfx/azure/_inputs.py +41 -4
- pulumi_signalfx/azure/integration.py +144 -259
- pulumi_signalfx/azure/outputs.py +15 -4
- pulumi_signalfx/config/__init__.pyi +22 -0
- pulumi_signalfx/config/vars.py +28 -0
- pulumi_signalfx/dashboard.py +171 -186
- pulumi_signalfx/dashboard_group.py +131 -198
- pulumi_signalfx/data_link.py +76 -141
- pulumi_signalfx/detector.py +264 -369
- pulumi_signalfx/event_feed_chart.py +51 -82
- pulumi_signalfx/gcp/_inputs.py +51 -0
- pulumi_signalfx/gcp/integration.py +224 -192
- pulumi_signalfx/gcp/outputs.py +44 -0
- pulumi_signalfx/get_dimension_values.py +47 -24
- pulumi_signalfx/heatmap_chart.py +165 -228
- pulumi_signalfx/jira/integration.py +70 -119
- pulumi_signalfx/list_chart.py +219 -315
- pulumi_signalfx/log/_inputs.py +33 -2
- pulumi_signalfx/log/outputs.py +7 -2
- pulumi_signalfx/log/timeline.py +64 -99
- pulumi_signalfx/log/view.py +134 -173
- pulumi_signalfx/metric_ruleset.py +217 -70
- pulumi_signalfx/opsgenie/integration.py +41 -60
- pulumi_signalfx/org_token.py +97 -128
- pulumi_signalfx/outputs.py +661 -339
- pulumi_signalfx/pagerduty/get_integration.py +22 -21
- pulumi_signalfx/pagerduty/integration.py +34 -49
- pulumi_signalfx/provider.py +99 -0
- pulumi_signalfx/pulumi-plugin.json +2 -1
- pulumi_signalfx/servicenow/integration.py +52 -107
- pulumi_signalfx/single_value_chart.py +113 -178
- pulumi_signalfx/slack/integration.py +30 -47
- pulumi_signalfx/slo.py +99 -197
- pulumi_signalfx/slo_chart.py +197 -0
- pulumi_signalfx/table_chart.py +50 -75
- pulumi_signalfx/team.py +74 -109
- pulumi_signalfx/text_chart.py +64 -89
- pulumi_signalfx/time_chart.py +271 -400
- pulumi_signalfx/victorops/integration.py +30 -47
- pulumi_signalfx/webhook_integration.py +154 -75
- {pulumi_signalfx-7.2.0a1709367777.dist-info → pulumi_signalfx-7.6.0a1736835428.dist-info}/METADATA +7 -6
- pulumi_signalfx-7.6.0a1736835428.dist-info/RECORD +65 -0
- {pulumi_signalfx-7.2.0a1709367777.dist-info → pulumi_signalfx-7.6.0a1736835428.dist-info}/WHEEL +1 -1
- pulumi_signalfx-7.2.0a1709367777.dist-info/RECORD +0 -64
- {pulumi_signalfx-7.2.0a1709367777.dist-info → pulumi_signalfx-7.6.0a1736835428.dist-info}/top_level.txt +0 -0
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from .. import _utilities
|
|
11
16
|
from . import outputs
|
|
12
17
|
from ._inputs import *
|
|
@@ -33,31 +38,21 @@ class IntegrationArgs:
|
|
|
33
38
|
sync_guest_os_namespaces: Optional[pulumi.Input[bool]] = None):
|
|
34
39
|
"""
|
|
35
40
|
The set of arguments for constructing a Integration resource.
|
|
36
|
-
:param pulumi.Input[str] app_id: Azure application ID for the Splunk Observability Cloud app.
|
|
37
|
-
:param pulumi.Input[bool] enabled: Whether the integration is enabled
|
|
38
|
-
:param pulumi.Input[str] secret_key: Azure secret key that associates the Splunk Observability Cloud app in Azure with the Azure tenant.
|
|
39
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] services: List of Microsoft Azure service names for the Azure services you want Splunk Observability Cloud to monitor.
|
|
40
|
-
Observability Cloud only supports certain services, and if you specify an unsupported one, you receive an API error.
|
|
41
|
+
:param pulumi.Input[str] app_id: 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.
|
|
42
|
+
:param pulumi.Input[bool] enabled: Whether the integration is enabled.
|
|
43
|
+
:param pulumi.Input[str] secret_key: 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.
|
|
44
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] services: 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.
|
|
41
45
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] subscriptions: List of Azure subscriptions that Splunk Observability Cloud should monitor.
|
|
42
|
-
:param pulumi.Input[str] tenant_id: Azure ID of the Azure tenant.
|
|
46
|
+
:param pulumi.Input[str] tenant_id: 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.
|
|
43
47
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] additional_services: Additional Azure resource types that you want to sync with Observability Cloud.
|
|
44
|
-
:param pulumi.Input[Sequence[pulumi.Input['IntegrationCustomNamespacesPerServiceArgs']]] custom_namespaces_per_services: Allows for more fine-grained control of syncing of custom namespaces, should the boolean convenience parameter
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
:param pulumi.Input[str]
|
|
49
|
-
|
|
50
|
-
:param pulumi.Input[
|
|
51
|
-
|
|
52
|
-
:param pulumi.Input[str] name: Name of the integration
|
|
53
|
-
:param pulumi.Input[str] named_token: A named token to use for ingest
|
|
54
|
-
:param pulumi.Input[int] poll_rate: Azure poll rate (in seconds). Between `60` and `600`.
|
|
55
|
-
:param pulumi.Input[Sequence[pulumi.Input['IntegrationResourceFilterRuleArgs']]] resource_filter_rules: List of rules for filtering Azure resources by their tags. The source of each filter rule must be in the form
|
|
56
|
-
filter('key', 'value'). You can join multiple filter statements using the and and or operators. Referenced keys are
|
|
57
|
-
limited to tags and must start with the azure_tag_ prefix..
|
|
58
|
-
:param pulumi.Input[bool] sync_guest_os_namespaces: If enabled, Splunk Observability Cloud will try to sync additional namespaces for VMs (including VMs in scale sets):
|
|
59
|
-
telegraf/mem, telegraf/cpu, azure.vm.windows.guest (these are namespaces recommended by Azure when enabling their
|
|
60
|
-
Diagnostic Extension). If there are no metrics there, no new datapoints will be ingested.
|
|
48
|
+
:param pulumi.Input[Sequence[pulumi.Input['IntegrationCustomNamespacesPerServiceArgs']]] custom_namespaces_per_services: Allows for more fine-grained control of syncing of custom namespaces, should the boolean convenience parameter `sync_guest_os_namespaces` 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.
|
|
49
|
+
:param pulumi.Input[str] environment: What type of Azure integration this is. The allowed values are `\\"azure_us_government\\"` and `\\"azure\\"`. Defaults to `\\"azure\\"`.
|
|
50
|
+
:param pulumi.Input[bool] import_azure_monitor: If enabled, Splunk Observability Cloud will sync also Azure Monitor data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
|
|
51
|
+
:param pulumi.Input[str] name: Name of the integration.
|
|
52
|
+
:param pulumi.Input[str] named_token: Name of the org token to be used for data ingestion. If not specified then default access token is used.
|
|
53
|
+
:param pulumi.Input[int] poll_rate: Azure poll rate (in seconds). Value between `60` and `600`. Default: `300`.
|
|
54
|
+
:param pulumi.Input[Sequence[pulumi.Input['IntegrationResourceFilterRuleArgs']]] resource_filter_rules: List of rules for filtering Azure resources by their tags.
|
|
55
|
+
:param pulumi.Input[bool] sync_guest_os_namespaces: 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.
|
|
61
56
|
"""
|
|
62
57
|
pulumi.set(__self__, "app_id", app_id)
|
|
63
58
|
pulumi.set(__self__, "enabled", enabled)
|
|
@@ -88,7 +83,7 @@ class IntegrationArgs:
|
|
|
88
83
|
@pulumi.getter(name="appId")
|
|
89
84
|
def app_id(self) -> pulumi.Input[str]:
|
|
90
85
|
"""
|
|
91
|
-
Azure application ID for the Splunk Observability Cloud app.
|
|
86
|
+
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.
|
|
92
87
|
"""
|
|
93
88
|
return pulumi.get(self, "app_id")
|
|
94
89
|
|
|
@@ -100,7 +95,7 @@ class IntegrationArgs:
|
|
|
100
95
|
@pulumi.getter
|
|
101
96
|
def enabled(self) -> pulumi.Input[bool]:
|
|
102
97
|
"""
|
|
103
|
-
Whether the integration is enabled
|
|
98
|
+
Whether the integration is enabled.
|
|
104
99
|
"""
|
|
105
100
|
return pulumi.get(self, "enabled")
|
|
106
101
|
|
|
@@ -112,7 +107,7 @@ class IntegrationArgs:
|
|
|
112
107
|
@pulumi.getter(name="secretKey")
|
|
113
108
|
def secret_key(self) -> pulumi.Input[str]:
|
|
114
109
|
"""
|
|
115
|
-
Azure secret key that associates the Splunk Observability Cloud app in Azure with the Azure tenant.
|
|
110
|
+
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.
|
|
116
111
|
"""
|
|
117
112
|
return pulumi.get(self, "secret_key")
|
|
118
113
|
|
|
@@ -124,8 +119,7 @@ class IntegrationArgs:
|
|
|
124
119
|
@pulumi.getter
|
|
125
120
|
def services(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
|
|
126
121
|
"""
|
|
127
|
-
List of Microsoft Azure service names for the Azure services you want Splunk Observability Cloud to monitor.
|
|
128
|
-
Observability Cloud only supports certain services, and if you specify an unsupported one, you receive an API error.
|
|
122
|
+
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.
|
|
129
123
|
"""
|
|
130
124
|
return pulumi.get(self, "services")
|
|
131
125
|
|
|
@@ -149,7 +143,7 @@ class IntegrationArgs:
|
|
|
149
143
|
@pulumi.getter(name="tenantId")
|
|
150
144
|
def tenant_id(self) -> pulumi.Input[str]:
|
|
151
145
|
"""
|
|
152
|
-
Azure ID of the Azure tenant.
|
|
146
|
+
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.
|
|
153
147
|
"""
|
|
154
148
|
return pulumi.get(self, "tenant_id")
|
|
155
149
|
|
|
@@ -173,10 +167,7 @@ class IntegrationArgs:
|
|
|
173
167
|
@pulumi.getter(name="customNamespacesPerServices")
|
|
174
168
|
def custom_namespaces_per_services(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['IntegrationCustomNamespacesPerServiceArgs']]]]:
|
|
175
169
|
"""
|
|
176
|
-
Allows for more fine-grained control of syncing of custom namespaces, should the boolean convenience parameter
|
|
177
|
-
`sync_guest_os_namespaces` be not enough. The customer may specify a map of services to custom namespaces. If they do
|
|
178
|
-
so, for each service which is a key in this map, we will attempt to sync metrics from namespaces in the value list in
|
|
179
|
-
addition to the default namespaces.
|
|
170
|
+
Allows for more fine-grained control of syncing of custom namespaces, should the boolean convenience parameter `sync_guest_os_namespaces` 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.
|
|
180
171
|
"""
|
|
181
172
|
return pulumi.get(self, "custom_namespaces_per_services")
|
|
182
173
|
|
|
@@ -188,8 +179,7 @@ class IntegrationArgs:
|
|
|
188
179
|
@pulumi.getter
|
|
189
180
|
def environment(self) -> Optional[pulumi.Input[str]]:
|
|
190
181
|
"""
|
|
191
|
-
|
|
192
|
-
`"azure"`
|
|
182
|
+
What type of Azure integration this is. The allowed values are `\\"azure_us_government\\"` and `\\"azure\\"`. Defaults to `\\"azure\\"`.
|
|
193
183
|
"""
|
|
194
184
|
return pulumi.get(self, "environment")
|
|
195
185
|
|
|
@@ -201,8 +191,7 @@ class IntegrationArgs:
|
|
|
201
191
|
@pulumi.getter(name="importAzureMonitor")
|
|
202
192
|
def import_azure_monitor(self) -> Optional[pulumi.Input[bool]]:
|
|
203
193
|
"""
|
|
204
|
-
If enabled, Splunk Observability Cloud will sync also Azure Monitor data. If disabled, Splunk Observability Cloud will
|
|
205
|
-
import only metadata. Defaults to true.
|
|
194
|
+
If enabled, Splunk Observability Cloud will sync also Azure Monitor data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
|
|
206
195
|
"""
|
|
207
196
|
return pulumi.get(self, "import_azure_monitor")
|
|
208
197
|
|
|
@@ -214,7 +203,7 @@ class IntegrationArgs:
|
|
|
214
203
|
@pulumi.getter
|
|
215
204
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
216
205
|
"""
|
|
217
|
-
Name of the integration
|
|
206
|
+
Name of the integration.
|
|
218
207
|
"""
|
|
219
208
|
return pulumi.get(self, "name")
|
|
220
209
|
|
|
@@ -226,7 +215,7 @@ class IntegrationArgs:
|
|
|
226
215
|
@pulumi.getter(name="namedToken")
|
|
227
216
|
def named_token(self) -> Optional[pulumi.Input[str]]:
|
|
228
217
|
"""
|
|
229
|
-
|
|
218
|
+
Name of the org token to be used for data ingestion. If not specified then default access token is used.
|
|
230
219
|
"""
|
|
231
220
|
return pulumi.get(self, "named_token")
|
|
232
221
|
|
|
@@ -238,7 +227,7 @@ class IntegrationArgs:
|
|
|
238
227
|
@pulumi.getter(name="pollRate")
|
|
239
228
|
def poll_rate(self) -> Optional[pulumi.Input[int]]:
|
|
240
229
|
"""
|
|
241
|
-
Azure poll rate (in seconds).
|
|
230
|
+
Azure poll rate (in seconds). Value between `60` and `600`. Default: `300`.
|
|
242
231
|
"""
|
|
243
232
|
return pulumi.get(self, "poll_rate")
|
|
244
233
|
|
|
@@ -250,9 +239,7 @@ class IntegrationArgs:
|
|
|
250
239
|
@pulumi.getter(name="resourceFilterRules")
|
|
251
240
|
def resource_filter_rules(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['IntegrationResourceFilterRuleArgs']]]]:
|
|
252
241
|
"""
|
|
253
|
-
List of rules for filtering Azure resources by their tags.
|
|
254
|
-
filter('key', 'value'). You can join multiple filter statements using the and and or operators. Referenced keys are
|
|
255
|
-
limited to tags and must start with the azure_tag_ prefix..
|
|
242
|
+
List of rules for filtering Azure resources by their tags.
|
|
256
243
|
"""
|
|
257
244
|
return pulumi.get(self, "resource_filter_rules")
|
|
258
245
|
|
|
@@ -264,9 +251,7 @@ class IntegrationArgs:
|
|
|
264
251
|
@pulumi.getter(name="syncGuestOsNamespaces")
|
|
265
252
|
def sync_guest_os_namespaces(self) -> Optional[pulumi.Input[bool]]:
|
|
266
253
|
"""
|
|
267
|
-
If enabled, Splunk Observability Cloud will try to sync additional namespaces for VMs (including VMs in scale sets):
|
|
268
|
-
telegraf/mem, telegraf/cpu, azure.vm.windows.guest (these are namespaces recommended by Azure when enabling their
|
|
269
|
-
Diagnostic Extension). If there are no metrics there, no new datapoints will be ingested.
|
|
254
|
+
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.
|
|
270
255
|
"""
|
|
271
256
|
return pulumi.get(self, "sync_guest_os_namespaces")
|
|
272
257
|
|
|
@@ -296,30 +281,20 @@ class _IntegrationState:
|
|
|
296
281
|
"""
|
|
297
282
|
Input properties used for looking up and filtering Integration resources.
|
|
298
283
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] additional_services: Additional Azure resource types that you want to sync with Observability Cloud.
|
|
299
|
-
:param pulumi.Input[str] app_id: Azure application ID for the Splunk Observability Cloud app.
|
|
300
|
-
:param pulumi.Input[Sequence[pulumi.Input['IntegrationCustomNamespacesPerServiceArgs']]] custom_namespaces_per_services: Allows for more fine-grained control of syncing of custom namespaces, should the boolean convenience parameter
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
:param pulumi.Input[
|
|
305
|
-
:param pulumi.Input[str]
|
|
306
|
-
|
|
307
|
-
:param pulumi.Input[
|
|
308
|
-
|
|
309
|
-
:param pulumi.Input[str]
|
|
310
|
-
:param pulumi.Input[str] named_token: A named token to use for ingest
|
|
311
|
-
:param pulumi.Input[int] poll_rate: Azure poll rate (in seconds). Between `60` and `600`.
|
|
312
|
-
:param pulumi.Input[Sequence[pulumi.Input['IntegrationResourceFilterRuleArgs']]] resource_filter_rules: List of rules for filtering Azure resources by their tags. The source of each filter rule must be in the form
|
|
313
|
-
filter('key', 'value'). You can join multiple filter statements using the and and or operators. Referenced keys are
|
|
314
|
-
limited to tags and must start with the azure_tag_ prefix..
|
|
315
|
-
:param pulumi.Input[str] secret_key: Azure secret key that associates the Splunk Observability Cloud app in Azure with the Azure tenant.
|
|
316
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] services: List of Microsoft Azure service names for the Azure services you want Splunk Observability Cloud to monitor. Splunk
|
|
317
|
-
Observability Cloud only supports certain services, and if you specify an unsupported one, you receive an API error.
|
|
284
|
+
:param pulumi.Input[str] app_id: 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.
|
|
285
|
+
:param pulumi.Input[Sequence[pulumi.Input['IntegrationCustomNamespacesPerServiceArgs']]] custom_namespaces_per_services: Allows for more fine-grained control of syncing of custom namespaces, should the boolean convenience parameter `sync_guest_os_namespaces` 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.
|
|
286
|
+
:param pulumi.Input[bool] enabled: Whether the integration is enabled.
|
|
287
|
+
:param pulumi.Input[str] environment: What type of Azure integration this is. The allowed values are `\\"azure_us_government\\"` and `\\"azure\\"`. Defaults to `\\"azure\\"`.
|
|
288
|
+
:param pulumi.Input[bool] import_azure_monitor: If enabled, Splunk Observability Cloud will sync also Azure Monitor data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
|
|
289
|
+
:param pulumi.Input[str] name: Name of the integration.
|
|
290
|
+
:param pulumi.Input[str] named_token: Name of the org token to be used for data ingestion. If not specified then default access token is used.
|
|
291
|
+
:param pulumi.Input[int] poll_rate: Azure poll rate (in seconds). Value between `60` and `600`. Default: `300`.
|
|
292
|
+
:param pulumi.Input[Sequence[pulumi.Input['IntegrationResourceFilterRuleArgs']]] resource_filter_rules: List of rules for filtering Azure resources by their tags.
|
|
293
|
+
:param pulumi.Input[str] secret_key: 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.
|
|
294
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] services: 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.
|
|
318
295
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] subscriptions: List of Azure subscriptions that Splunk Observability Cloud should monitor.
|
|
319
|
-
:param pulumi.Input[bool] sync_guest_os_namespaces: If enabled, Splunk Observability Cloud will try to sync additional namespaces for VMs (including VMs in scale sets):
|
|
320
|
-
|
|
321
|
-
Diagnostic Extension). If there are no metrics there, no new datapoints will be ingested.
|
|
322
|
-
:param pulumi.Input[str] tenant_id: Azure ID of the Azure tenant.
|
|
296
|
+
:param pulumi.Input[bool] sync_guest_os_namespaces: 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.
|
|
297
|
+
:param pulumi.Input[str] tenant_id: 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.
|
|
323
298
|
"""
|
|
324
299
|
if additional_services is not None:
|
|
325
300
|
pulumi.set(__self__, "additional_services", additional_services)
|
|
@@ -368,7 +343,7 @@ class _IntegrationState:
|
|
|
368
343
|
@pulumi.getter(name="appId")
|
|
369
344
|
def app_id(self) -> Optional[pulumi.Input[str]]:
|
|
370
345
|
"""
|
|
371
|
-
Azure application ID for the Splunk Observability Cloud app.
|
|
346
|
+
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.
|
|
372
347
|
"""
|
|
373
348
|
return pulumi.get(self, "app_id")
|
|
374
349
|
|
|
@@ -380,10 +355,7 @@ class _IntegrationState:
|
|
|
380
355
|
@pulumi.getter(name="customNamespacesPerServices")
|
|
381
356
|
def custom_namespaces_per_services(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['IntegrationCustomNamespacesPerServiceArgs']]]]:
|
|
382
357
|
"""
|
|
383
|
-
Allows for more fine-grained control of syncing of custom namespaces, should the boolean convenience parameter
|
|
384
|
-
`sync_guest_os_namespaces` be not enough. The customer may specify a map of services to custom namespaces. If they do
|
|
385
|
-
so, for each service which is a key in this map, we will attempt to sync metrics from namespaces in the value list in
|
|
386
|
-
addition to the default namespaces.
|
|
358
|
+
Allows for more fine-grained control of syncing of custom namespaces, should the boolean convenience parameter `sync_guest_os_namespaces` 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.
|
|
387
359
|
"""
|
|
388
360
|
return pulumi.get(self, "custom_namespaces_per_services")
|
|
389
361
|
|
|
@@ -395,7 +367,7 @@ class _IntegrationState:
|
|
|
395
367
|
@pulumi.getter
|
|
396
368
|
def enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
397
369
|
"""
|
|
398
|
-
Whether the integration is enabled
|
|
370
|
+
Whether the integration is enabled.
|
|
399
371
|
"""
|
|
400
372
|
return pulumi.get(self, "enabled")
|
|
401
373
|
|
|
@@ -407,8 +379,7 @@ class _IntegrationState:
|
|
|
407
379
|
@pulumi.getter
|
|
408
380
|
def environment(self) -> Optional[pulumi.Input[str]]:
|
|
409
381
|
"""
|
|
410
|
-
|
|
411
|
-
`"azure"`
|
|
382
|
+
What type of Azure integration this is. The allowed values are `\\"azure_us_government\\"` and `\\"azure\\"`. Defaults to `\\"azure\\"`.
|
|
412
383
|
"""
|
|
413
384
|
return pulumi.get(self, "environment")
|
|
414
385
|
|
|
@@ -420,8 +391,7 @@ class _IntegrationState:
|
|
|
420
391
|
@pulumi.getter(name="importAzureMonitor")
|
|
421
392
|
def import_azure_monitor(self) -> Optional[pulumi.Input[bool]]:
|
|
422
393
|
"""
|
|
423
|
-
If enabled, Splunk Observability Cloud will sync also Azure Monitor data. If disabled, Splunk Observability Cloud will
|
|
424
|
-
import only metadata. Defaults to true.
|
|
394
|
+
If enabled, Splunk Observability Cloud will sync also Azure Monitor data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
|
|
425
395
|
"""
|
|
426
396
|
return pulumi.get(self, "import_azure_monitor")
|
|
427
397
|
|
|
@@ -433,7 +403,7 @@ class _IntegrationState:
|
|
|
433
403
|
@pulumi.getter
|
|
434
404
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
435
405
|
"""
|
|
436
|
-
Name of the integration
|
|
406
|
+
Name of the integration.
|
|
437
407
|
"""
|
|
438
408
|
return pulumi.get(self, "name")
|
|
439
409
|
|
|
@@ -445,7 +415,7 @@ class _IntegrationState:
|
|
|
445
415
|
@pulumi.getter(name="namedToken")
|
|
446
416
|
def named_token(self) -> Optional[pulumi.Input[str]]:
|
|
447
417
|
"""
|
|
448
|
-
|
|
418
|
+
Name of the org token to be used for data ingestion. If not specified then default access token is used.
|
|
449
419
|
"""
|
|
450
420
|
return pulumi.get(self, "named_token")
|
|
451
421
|
|
|
@@ -457,7 +427,7 @@ class _IntegrationState:
|
|
|
457
427
|
@pulumi.getter(name="pollRate")
|
|
458
428
|
def poll_rate(self) -> Optional[pulumi.Input[int]]:
|
|
459
429
|
"""
|
|
460
|
-
Azure poll rate (in seconds).
|
|
430
|
+
Azure poll rate (in seconds). Value between `60` and `600`. Default: `300`.
|
|
461
431
|
"""
|
|
462
432
|
return pulumi.get(self, "poll_rate")
|
|
463
433
|
|
|
@@ -469,9 +439,7 @@ class _IntegrationState:
|
|
|
469
439
|
@pulumi.getter(name="resourceFilterRules")
|
|
470
440
|
def resource_filter_rules(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['IntegrationResourceFilterRuleArgs']]]]:
|
|
471
441
|
"""
|
|
472
|
-
List of rules for filtering Azure resources by their tags.
|
|
473
|
-
filter('key', 'value'). You can join multiple filter statements using the and and or operators. Referenced keys are
|
|
474
|
-
limited to tags and must start with the azure_tag_ prefix..
|
|
442
|
+
List of rules for filtering Azure resources by their tags.
|
|
475
443
|
"""
|
|
476
444
|
return pulumi.get(self, "resource_filter_rules")
|
|
477
445
|
|
|
@@ -483,7 +451,7 @@ class _IntegrationState:
|
|
|
483
451
|
@pulumi.getter(name="secretKey")
|
|
484
452
|
def secret_key(self) -> Optional[pulumi.Input[str]]:
|
|
485
453
|
"""
|
|
486
|
-
Azure secret key that associates the Splunk Observability Cloud app in Azure with the Azure tenant.
|
|
454
|
+
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.
|
|
487
455
|
"""
|
|
488
456
|
return pulumi.get(self, "secret_key")
|
|
489
457
|
|
|
@@ -495,8 +463,7 @@ class _IntegrationState:
|
|
|
495
463
|
@pulumi.getter
|
|
496
464
|
def services(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
497
465
|
"""
|
|
498
|
-
List of Microsoft Azure service names for the Azure services you want Splunk Observability Cloud to monitor.
|
|
499
|
-
Observability Cloud only supports certain services, and if you specify an unsupported one, you receive an API error.
|
|
466
|
+
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.
|
|
500
467
|
"""
|
|
501
468
|
return pulumi.get(self, "services")
|
|
502
469
|
|
|
@@ -520,9 +487,7 @@ class _IntegrationState:
|
|
|
520
487
|
@pulumi.getter(name="syncGuestOsNamespaces")
|
|
521
488
|
def sync_guest_os_namespaces(self) -> Optional[pulumi.Input[bool]]:
|
|
522
489
|
"""
|
|
523
|
-
If enabled, Splunk Observability Cloud will try to sync additional namespaces for VMs (including VMs in scale sets):
|
|
524
|
-
telegraf/mem, telegraf/cpu, azure.vm.windows.guest (these are namespaces recommended by Azure when enabling their
|
|
525
|
-
Diagnostic Extension). If there are no metrics there, no new datapoints will be ingested.
|
|
490
|
+
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.
|
|
526
491
|
"""
|
|
527
492
|
return pulumi.get(self, "sync_guest_os_namespaces")
|
|
528
493
|
|
|
@@ -534,7 +499,7 @@ class _IntegrationState:
|
|
|
534
499
|
@pulumi.getter(name="tenantId")
|
|
535
500
|
def tenant_id(self) -> Optional[pulumi.Input[str]]:
|
|
536
501
|
"""
|
|
537
|
-
Azure ID of the Azure tenant.
|
|
502
|
+
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.
|
|
538
503
|
"""
|
|
539
504
|
return pulumi.get(self, "tenant_id")
|
|
540
505
|
|
|
@@ -550,14 +515,14 @@ class Integration(pulumi.CustomResource):
|
|
|
550
515
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
551
516
|
additional_services: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
552
517
|
app_id: Optional[pulumi.Input[str]] = None,
|
|
553
|
-
custom_namespaces_per_services: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
518
|
+
custom_namespaces_per_services: Optional[pulumi.Input[Sequence[pulumi.Input[Union['IntegrationCustomNamespacesPerServiceArgs', 'IntegrationCustomNamespacesPerServiceArgsDict']]]]] = None,
|
|
554
519
|
enabled: Optional[pulumi.Input[bool]] = None,
|
|
555
520
|
environment: Optional[pulumi.Input[str]] = None,
|
|
556
521
|
import_azure_monitor: Optional[pulumi.Input[bool]] = None,
|
|
557
522
|
name: Optional[pulumi.Input[str]] = None,
|
|
558
523
|
named_token: Optional[pulumi.Input[str]] = None,
|
|
559
524
|
poll_rate: Optional[pulumi.Input[int]] = None,
|
|
560
|
-
resource_filter_rules: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
525
|
+
resource_filter_rules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['IntegrationResourceFilterRuleArgs', 'IntegrationResourceFilterRuleArgsDict']]]]] = None,
|
|
561
526
|
secret_key: Optional[pulumi.Input[str]] = None,
|
|
562
527
|
services: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
563
528
|
subscriptions: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
@@ -575,89 +540,54 @@ class Integration(pulumi.CustomResource):
|
|
|
575
540
|
import pulumi
|
|
576
541
|
import pulumi_signalfx as signalfx
|
|
577
542
|
|
|
578
|
-
azure_myteam = signalfx.azure.Integration("
|
|
543
|
+
azure_myteam = signalfx.azure.Integration("azure_myteam",
|
|
544
|
+
name="Azure Foo",
|
|
545
|
+
enabled=True,
|
|
546
|
+
environment="azure",
|
|
547
|
+
poll_rate=300,
|
|
548
|
+
secret_key="XXX",
|
|
549
|
+
app_id="YYY",
|
|
550
|
+
tenant_id="ZZZ",
|
|
551
|
+
services=["microsoft.sql/servers/elasticpools"],
|
|
552
|
+
subscriptions=["sub-guid-here"],
|
|
579
553
|
additional_services=[
|
|
580
554
|
"some/service",
|
|
581
555
|
"another/service",
|
|
582
556
|
],
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
namespaces
|
|
557
|
+
custom_namespaces_per_services=[{
|
|
558
|
+
"service": "Microsoft.Compute/virtualMachines",
|
|
559
|
+
"namespaces": [
|
|
586
560
|
"monitoringAgent",
|
|
587
561
|
"customNamespace",
|
|
588
562
|
],
|
|
589
|
-
|
|
590
|
-
)],
|
|
591
|
-
enabled=True,
|
|
592
|
-
environment="azure",
|
|
593
|
-
poll_rate=300,
|
|
563
|
+
}],
|
|
594
564
|
resource_filter_rules=[
|
|
595
|
-
|
|
596
|
-
filter_source
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
filter_source
|
|
600
|
-
|
|
601
|
-
]
|
|
602
|
-
secret_key="XXX",
|
|
603
|
-
services=["microsoft.sql/servers/elasticpools"],
|
|
604
|
-
subscriptions=["sub-guid-here"],
|
|
605
|
-
tenant_id="ZZZ")
|
|
565
|
+
{
|
|
566
|
+
"filter_source": "filter('azure_tag_service', 'payment') and (filter('azure_tag_env', 'prod-us') or filter('azure_tag_env', 'prod-eu'))",
|
|
567
|
+
},
|
|
568
|
+
{
|
|
569
|
+
"filter_source": "filter('azure_tag_service', 'notification') and (filter('azure_tag_env', 'prod-us') or filter('azure_tag_env', 'prod-eu'))",
|
|
570
|
+
},
|
|
571
|
+
])
|
|
606
572
|
```
|
|
607
573
|
|
|
608
|
-
## Arguments
|
|
609
|
-
|
|
610
|
-
* `app_id` - (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.
|
|
611
|
-
* `enabled` - (Required) Whether the integration is enabled.
|
|
612
|
-
* `custom_namespaces_per_service` - (Optional) Allows for more fine-grained control of syncing of custom namespaces, should the boolean convenience parameter `sync_guest_os_namespaces` 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.
|
|
613
|
-
* `namespaces` - (Required) The additional namespaces.
|
|
614
|
-
* `service` - (Required) The name of the service.
|
|
615
|
-
* `environment` (Optional) What type of Azure integration this is. The allowed values are `\\"azure_us_government\\"` and `\\"azure\\"`. Defaults to `\\"azure\\"`.
|
|
616
|
-
* `name` - (Required) Name of the integration.
|
|
617
|
-
* `named_token` - (Optional) Name of the org token to be used for data ingestion. If not specified then default access token is used.
|
|
618
|
-
* `poll_rate` - (Optional) Azure poll rate (in seconds). Value between `60` and `600`. Default: `300`.
|
|
619
|
-
* `resource_filter_rules` - (Optional) List of rules for filtering Azure resources by their tags.
|
|
620
|
-
* `filter_source` - (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.
|
|
621
|
-
* `secret_key` - (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.
|
|
622
|
-
* `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.
|
|
623
|
-
* `subscriptions` - (Required) List of Azure subscriptions that Splunk Observability Cloud should monitor.
|
|
624
|
-
* `sync_guest_os_namespaces` - (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.
|
|
625
|
-
* `import_azure_monitor` - (Optional) If enabled, Splunk Observability Cloud will sync also Azure Monitor data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
|
|
626
|
-
* `tenant_id` (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.
|
|
627
|
-
|
|
628
|
-
## Attributes
|
|
629
|
-
|
|
630
|
-
In a addition to all arguments above, the following attributes are exported:
|
|
631
|
-
|
|
632
|
-
* `id` - The ID of the integration.
|
|
633
|
-
|
|
634
574
|
:param str resource_name: The name of the resource.
|
|
635
575
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
636
576
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] additional_services: Additional Azure resource types that you want to sync with Observability Cloud.
|
|
637
|
-
:param pulumi.Input[str] app_id: Azure application ID for the Splunk Observability Cloud app.
|
|
638
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
:param pulumi.Input[
|
|
643
|
-
:param pulumi.Input[str]
|
|
644
|
-
|
|
645
|
-
:param pulumi.Input[
|
|
646
|
-
|
|
647
|
-
:param pulumi.Input[str]
|
|
648
|
-
:param pulumi.Input[str] named_token: A named token to use for ingest
|
|
649
|
-
:param pulumi.Input[int] poll_rate: Azure poll rate (in seconds). Between `60` and `600`.
|
|
650
|
-
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['IntegrationResourceFilterRuleArgs']]]] resource_filter_rules: List of rules for filtering Azure resources by their tags. The source of each filter rule must be in the form
|
|
651
|
-
filter('key', 'value'). You can join multiple filter statements using the and and or operators. Referenced keys are
|
|
652
|
-
limited to tags and must start with the azure_tag_ prefix..
|
|
653
|
-
:param pulumi.Input[str] secret_key: Azure secret key that associates the Splunk Observability Cloud app in Azure with the Azure tenant.
|
|
654
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] services: List of Microsoft Azure service names for the Azure services you want Splunk Observability Cloud to monitor. Splunk
|
|
655
|
-
Observability Cloud only supports certain services, and if you specify an unsupported one, you receive an API error.
|
|
577
|
+
:param pulumi.Input[str] app_id: 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.
|
|
578
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['IntegrationCustomNamespacesPerServiceArgs', 'IntegrationCustomNamespacesPerServiceArgsDict']]]] custom_namespaces_per_services: Allows for more fine-grained control of syncing of custom namespaces, should the boolean convenience parameter `sync_guest_os_namespaces` 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.
|
|
579
|
+
:param pulumi.Input[bool] enabled: Whether the integration is enabled.
|
|
580
|
+
:param pulumi.Input[str] environment: What type of Azure integration this is. The allowed values are `\\"azure_us_government\\"` and `\\"azure\\"`. Defaults to `\\"azure\\"`.
|
|
581
|
+
:param pulumi.Input[bool] import_azure_monitor: If enabled, Splunk Observability Cloud will sync also Azure Monitor data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
|
|
582
|
+
:param pulumi.Input[str] name: Name of the integration.
|
|
583
|
+
:param pulumi.Input[str] named_token: Name of the org token to be used for data ingestion. If not specified then default access token is used.
|
|
584
|
+
:param pulumi.Input[int] poll_rate: Azure poll rate (in seconds). Value between `60` and `600`. Default: `300`.
|
|
585
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['IntegrationResourceFilterRuleArgs', 'IntegrationResourceFilterRuleArgsDict']]]] resource_filter_rules: List of rules for filtering Azure resources by their tags.
|
|
586
|
+
:param pulumi.Input[str] secret_key: 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.
|
|
587
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] services: 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.
|
|
656
588
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] subscriptions: List of Azure subscriptions that Splunk Observability Cloud should monitor.
|
|
657
|
-
:param pulumi.Input[bool] sync_guest_os_namespaces: If enabled, Splunk Observability Cloud will try to sync additional namespaces for VMs (including VMs in scale sets):
|
|
658
|
-
|
|
659
|
-
Diagnostic Extension). If there are no metrics there, no new datapoints will be ingested.
|
|
660
|
-
:param pulumi.Input[str] tenant_id: Azure ID of the Azure tenant.
|
|
589
|
+
:param pulumi.Input[bool] sync_guest_os_namespaces: 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.
|
|
590
|
+
:param pulumi.Input[str] tenant_id: 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.
|
|
661
591
|
"""
|
|
662
592
|
...
|
|
663
593
|
@overload
|
|
@@ -676,62 +606,37 @@ class Integration(pulumi.CustomResource):
|
|
|
676
606
|
import pulumi
|
|
677
607
|
import pulumi_signalfx as signalfx
|
|
678
608
|
|
|
679
|
-
azure_myteam = signalfx.azure.Integration("
|
|
609
|
+
azure_myteam = signalfx.azure.Integration("azure_myteam",
|
|
610
|
+
name="Azure Foo",
|
|
611
|
+
enabled=True,
|
|
612
|
+
environment="azure",
|
|
613
|
+
poll_rate=300,
|
|
614
|
+
secret_key="XXX",
|
|
615
|
+
app_id="YYY",
|
|
616
|
+
tenant_id="ZZZ",
|
|
617
|
+
services=["microsoft.sql/servers/elasticpools"],
|
|
618
|
+
subscriptions=["sub-guid-here"],
|
|
680
619
|
additional_services=[
|
|
681
620
|
"some/service",
|
|
682
621
|
"another/service",
|
|
683
622
|
],
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
namespaces
|
|
623
|
+
custom_namespaces_per_services=[{
|
|
624
|
+
"service": "Microsoft.Compute/virtualMachines",
|
|
625
|
+
"namespaces": [
|
|
687
626
|
"monitoringAgent",
|
|
688
627
|
"customNamespace",
|
|
689
628
|
],
|
|
690
|
-
|
|
691
|
-
)],
|
|
692
|
-
enabled=True,
|
|
693
|
-
environment="azure",
|
|
694
|
-
poll_rate=300,
|
|
629
|
+
}],
|
|
695
630
|
resource_filter_rules=[
|
|
696
|
-
|
|
697
|
-
filter_source
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
filter_source
|
|
701
|
-
|
|
702
|
-
]
|
|
703
|
-
secret_key="XXX",
|
|
704
|
-
services=["microsoft.sql/servers/elasticpools"],
|
|
705
|
-
subscriptions=["sub-guid-here"],
|
|
706
|
-
tenant_id="ZZZ")
|
|
631
|
+
{
|
|
632
|
+
"filter_source": "filter('azure_tag_service', 'payment') and (filter('azure_tag_env', 'prod-us') or filter('azure_tag_env', 'prod-eu'))",
|
|
633
|
+
},
|
|
634
|
+
{
|
|
635
|
+
"filter_source": "filter('azure_tag_service', 'notification') and (filter('azure_tag_env', 'prod-us') or filter('azure_tag_env', 'prod-eu'))",
|
|
636
|
+
},
|
|
637
|
+
])
|
|
707
638
|
```
|
|
708
639
|
|
|
709
|
-
## Arguments
|
|
710
|
-
|
|
711
|
-
* `app_id` - (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.
|
|
712
|
-
* `enabled` - (Required) Whether the integration is enabled.
|
|
713
|
-
* `custom_namespaces_per_service` - (Optional) Allows for more fine-grained control of syncing of custom namespaces, should the boolean convenience parameter `sync_guest_os_namespaces` 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.
|
|
714
|
-
* `namespaces` - (Required) The additional namespaces.
|
|
715
|
-
* `service` - (Required) The name of the service.
|
|
716
|
-
* `environment` (Optional) What type of Azure integration this is. The allowed values are `\\"azure_us_government\\"` and `\\"azure\\"`. Defaults to `\\"azure\\"`.
|
|
717
|
-
* `name` - (Required) Name of the integration.
|
|
718
|
-
* `named_token` - (Optional) Name of the org token to be used for data ingestion. If not specified then default access token is used.
|
|
719
|
-
* `poll_rate` - (Optional) Azure poll rate (in seconds). Value between `60` and `600`. Default: `300`.
|
|
720
|
-
* `resource_filter_rules` - (Optional) List of rules for filtering Azure resources by their tags.
|
|
721
|
-
* `filter_source` - (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.
|
|
722
|
-
* `secret_key` - (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.
|
|
723
|
-
* `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.
|
|
724
|
-
* `subscriptions` - (Required) List of Azure subscriptions that Splunk Observability Cloud should monitor.
|
|
725
|
-
* `sync_guest_os_namespaces` - (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.
|
|
726
|
-
* `import_azure_monitor` - (Optional) If enabled, Splunk Observability Cloud will sync also Azure Monitor data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
|
|
727
|
-
* `tenant_id` (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.
|
|
728
|
-
|
|
729
|
-
## Attributes
|
|
730
|
-
|
|
731
|
-
In a addition to all arguments above, the following attributes are exported:
|
|
732
|
-
|
|
733
|
-
* `id` - The ID of the integration.
|
|
734
|
-
|
|
735
640
|
:param str resource_name: The name of the resource.
|
|
736
641
|
:param IntegrationArgs args: The arguments to use to populate this resource's properties.
|
|
737
642
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -749,14 +654,14 @@ class Integration(pulumi.CustomResource):
|
|
|
749
654
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
750
655
|
additional_services: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
751
656
|
app_id: Optional[pulumi.Input[str]] = None,
|
|
752
|
-
custom_namespaces_per_services: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
657
|
+
custom_namespaces_per_services: Optional[pulumi.Input[Sequence[pulumi.Input[Union['IntegrationCustomNamespacesPerServiceArgs', 'IntegrationCustomNamespacesPerServiceArgsDict']]]]] = None,
|
|
753
658
|
enabled: Optional[pulumi.Input[bool]] = None,
|
|
754
659
|
environment: Optional[pulumi.Input[str]] = None,
|
|
755
660
|
import_azure_monitor: Optional[pulumi.Input[bool]] = None,
|
|
756
661
|
name: Optional[pulumi.Input[str]] = None,
|
|
757
662
|
named_token: Optional[pulumi.Input[str]] = None,
|
|
758
663
|
poll_rate: Optional[pulumi.Input[int]] = None,
|
|
759
|
-
resource_filter_rules: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
664
|
+
resource_filter_rules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['IntegrationResourceFilterRuleArgs', 'IntegrationResourceFilterRuleArgsDict']]]]] = None,
|
|
760
665
|
secret_key: Optional[pulumi.Input[str]] = None,
|
|
761
666
|
services: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
762
667
|
subscriptions: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
@@ -812,14 +717,14 @@ class Integration(pulumi.CustomResource):
|
|
|
812
717
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
813
718
|
additional_services: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
814
719
|
app_id: Optional[pulumi.Input[str]] = None,
|
|
815
|
-
custom_namespaces_per_services: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
720
|
+
custom_namespaces_per_services: Optional[pulumi.Input[Sequence[pulumi.Input[Union['IntegrationCustomNamespacesPerServiceArgs', 'IntegrationCustomNamespacesPerServiceArgsDict']]]]] = None,
|
|
816
721
|
enabled: Optional[pulumi.Input[bool]] = None,
|
|
817
722
|
environment: Optional[pulumi.Input[str]] = None,
|
|
818
723
|
import_azure_monitor: Optional[pulumi.Input[bool]] = None,
|
|
819
724
|
name: Optional[pulumi.Input[str]] = None,
|
|
820
725
|
named_token: Optional[pulumi.Input[str]] = None,
|
|
821
726
|
poll_rate: Optional[pulumi.Input[int]] = None,
|
|
822
|
-
resource_filter_rules: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
727
|
+
resource_filter_rules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['IntegrationResourceFilterRuleArgs', 'IntegrationResourceFilterRuleArgsDict']]]]] = None,
|
|
823
728
|
secret_key: Optional[pulumi.Input[str]] = None,
|
|
824
729
|
services: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
825
730
|
subscriptions: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
@@ -833,30 +738,20 @@ class Integration(pulumi.CustomResource):
|
|
|
833
738
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
834
739
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
835
740
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] additional_services: Additional Azure resource types that you want to sync with Observability Cloud.
|
|
836
|
-
:param pulumi.Input[str] app_id: Azure application ID for the Splunk Observability Cloud app.
|
|
837
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
:param pulumi.Input[
|
|
842
|
-
:param pulumi.Input[str]
|
|
843
|
-
|
|
844
|
-
:param pulumi.Input[
|
|
845
|
-
|
|
846
|
-
:param pulumi.Input[str]
|
|
847
|
-
:param pulumi.Input[str] named_token: A named token to use for ingest
|
|
848
|
-
:param pulumi.Input[int] poll_rate: Azure poll rate (in seconds). Between `60` and `600`.
|
|
849
|
-
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['IntegrationResourceFilterRuleArgs']]]] resource_filter_rules: List of rules for filtering Azure resources by their tags. The source of each filter rule must be in the form
|
|
850
|
-
filter('key', 'value'). You can join multiple filter statements using the and and or operators. Referenced keys are
|
|
851
|
-
limited to tags and must start with the azure_tag_ prefix..
|
|
852
|
-
:param pulumi.Input[str] secret_key: Azure secret key that associates the Splunk Observability Cloud app in Azure with the Azure tenant.
|
|
853
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] services: List of Microsoft Azure service names for the Azure services you want Splunk Observability Cloud to monitor. Splunk
|
|
854
|
-
Observability Cloud only supports certain services, and if you specify an unsupported one, you receive an API error.
|
|
741
|
+
:param pulumi.Input[str] app_id: 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.
|
|
742
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['IntegrationCustomNamespacesPerServiceArgs', 'IntegrationCustomNamespacesPerServiceArgsDict']]]] custom_namespaces_per_services: Allows for more fine-grained control of syncing of custom namespaces, should the boolean convenience parameter `sync_guest_os_namespaces` 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.
|
|
743
|
+
:param pulumi.Input[bool] enabled: Whether the integration is enabled.
|
|
744
|
+
:param pulumi.Input[str] environment: What type of Azure integration this is. The allowed values are `\\"azure_us_government\\"` and `\\"azure\\"`. Defaults to `\\"azure\\"`.
|
|
745
|
+
:param pulumi.Input[bool] import_azure_monitor: If enabled, Splunk Observability Cloud will sync also Azure Monitor data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
|
|
746
|
+
:param pulumi.Input[str] name: Name of the integration.
|
|
747
|
+
:param pulumi.Input[str] named_token: Name of the org token to be used for data ingestion. If not specified then default access token is used.
|
|
748
|
+
:param pulumi.Input[int] poll_rate: Azure poll rate (in seconds). Value between `60` and `600`. Default: `300`.
|
|
749
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['IntegrationResourceFilterRuleArgs', 'IntegrationResourceFilterRuleArgsDict']]]] resource_filter_rules: List of rules for filtering Azure resources by their tags.
|
|
750
|
+
:param pulumi.Input[str] secret_key: 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.
|
|
751
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] services: 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.
|
|
855
752
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] subscriptions: List of Azure subscriptions that Splunk Observability Cloud should monitor.
|
|
856
|
-
:param pulumi.Input[bool] sync_guest_os_namespaces: If enabled, Splunk Observability Cloud will try to sync additional namespaces for VMs (including VMs in scale sets):
|
|
857
|
-
|
|
858
|
-
Diagnostic Extension). If there are no metrics there, no new datapoints will be ingested.
|
|
859
|
-
:param pulumi.Input[str] tenant_id: Azure ID of the Azure tenant.
|
|
753
|
+
:param pulumi.Input[bool] sync_guest_os_namespaces: 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.
|
|
754
|
+
:param pulumi.Input[str] tenant_id: 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.
|
|
860
755
|
"""
|
|
861
756
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
862
757
|
|
|
@@ -891,7 +786,7 @@ class Integration(pulumi.CustomResource):
|
|
|
891
786
|
@pulumi.getter(name="appId")
|
|
892
787
|
def app_id(self) -> pulumi.Output[str]:
|
|
893
788
|
"""
|
|
894
|
-
Azure application ID for the Splunk Observability Cloud app.
|
|
789
|
+
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.
|
|
895
790
|
"""
|
|
896
791
|
return pulumi.get(self, "app_id")
|
|
897
792
|
|
|
@@ -899,10 +794,7 @@ class Integration(pulumi.CustomResource):
|
|
|
899
794
|
@pulumi.getter(name="customNamespacesPerServices")
|
|
900
795
|
def custom_namespaces_per_services(self) -> pulumi.Output[Optional[Sequence['outputs.IntegrationCustomNamespacesPerService']]]:
|
|
901
796
|
"""
|
|
902
|
-
Allows for more fine-grained control of syncing of custom namespaces, should the boolean convenience parameter
|
|
903
|
-
`sync_guest_os_namespaces` be not enough. The customer may specify a map of services to custom namespaces. If they do
|
|
904
|
-
so, for each service which is a key in this map, we will attempt to sync metrics from namespaces in the value list in
|
|
905
|
-
addition to the default namespaces.
|
|
797
|
+
Allows for more fine-grained control of syncing of custom namespaces, should the boolean convenience parameter `sync_guest_os_namespaces` 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.
|
|
906
798
|
"""
|
|
907
799
|
return pulumi.get(self, "custom_namespaces_per_services")
|
|
908
800
|
|
|
@@ -910,7 +802,7 @@ class Integration(pulumi.CustomResource):
|
|
|
910
802
|
@pulumi.getter
|
|
911
803
|
def enabled(self) -> pulumi.Output[bool]:
|
|
912
804
|
"""
|
|
913
|
-
Whether the integration is enabled
|
|
805
|
+
Whether the integration is enabled.
|
|
914
806
|
"""
|
|
915
807
|
return pulumi.get(self, "enabled")
|
|
916
808
|
|
|
@@ -918,8 +810,7 @@ class Integration(pulumi.CustomResource):
|
|
|
918
810
|
@pulumi.getter
|
|
919
811
|
def environment(self) -> pulumi.Output[Optional[str]]:
|
|
920
812
|
"""
|
|
921
|
-
|
|
922
|
-
`"azure"`
|
|
813
|
+
What type of Azure integration this is. The allowed values are `\\"azure_us_government\\"` and `\\"azure\\"`. Defaults to `\\"azure\\"`.
|
|
923
814
|
"""
|
|
924
815
|
return pulumi.get(self, "environment")
|
|
925
816
|
|
|
@@ -927,8 +818,7 @@ class Integration(pulumi.CustomResource):
|
|
|
927
818
|
@pulumi.getter(name="importAzureMonitor")
|
|
928
819
|
def import_azure_monitor(self) -> pulumi.Output[Optional[bool]]:
|
|
929
820
|
"""
|
|
930
|
-
If enabled, Splunk Observability Cloud will sync also Azure Monitor data. If disabled, Splunk Observability Cloud will
|
|
931
|
-
import only metadata. Defaults to true.
|
|
821
|
+
If enabled, Splunk Observability Cloud will sync also Azure Monitor data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
|
|
932
822
|
"""
|
|
933
823
|
return pulumi.get(self, "import_azure_monitor")
|
|
934
824
|
|
|
@@ -936,7 +826,7 @@ class Integration(pulumi.CustomResource):
|
|
|
936
826
|
@pulumi.getter
|
|
937
827
|
def name(self) -> pulumi.Output[str]:
|
|
938
828
|
"""
|
|
939
|
-
Name of the integration
|
|
829
|
+
Name of the integration.
|
|
940
830
|
"""
|
|
941
831
|
return pulumi.get(self, "name")
|
|
942
832
|
|
|
@@ -944,7 +834,7 @@ class Integration(pulumi.CustomResource):
|
|
|
944
834
|
@pulumi.getter(name="namedToken")
|
|
945
835
|
def named_token(self) -> pulumi.Output[Optional[str]]:
|
|
946
836
|
"""
|
|
947
|
-
|
|
837
|
+
Name of the org token to be used for data ingestion. If not specified then default access token is used.
|
|
948
838
|
"""
|
|
949
839
|
return pulumi.get(self, "named_token")
|
|
950
840
|
|
|
@@ -952,7 +842,7 @@ class Integration(pulumi.CustomResource):
|
|
|
952
842
|
@pulumi.getter(name="pollRate")
|
|
953
843
|
def poll_rate(self) -> pulumi.Output[Optional[int]]:
|
|
954
844
|
"""
|
|
955
|
-
Azure poll rate (in seconds).
|
|
845
|
+
Azure poll rate (in seconds). Value between `60` and `600`. Default: `300`.
|
|
956
846
|
"""
|
|
957
847
|
return pulumi.get(self, "poll_rate")
|
|
958
848
|
|
|
@@ -960,9 +850,7 @@ class Integration(pulumi.CustomResource):
|
|
|
960
850
|
@pulumi.getter(name="resourceFilterRules")
|
|
961
851
|
def resource_filter_rules(self) -> pulumi.Output[Optional[Sequence['outputs.IntegrationResourceFilterRule']]]:
|
|
962
852
|
"""
|
|
963
|
-
List of rules for filtering Azure resources by their tags.
|
|
964
|
-
filter('key', 'value'). You can join multiple filter statements using the and and or operators. Referenced keys are
|
|
965
|
-
limited to tags and must start with the azure_tag_ prefix..
|
|
853
|
+
List of rules for filtering Azure resources by their tags.
|
|
966
854
|
"""
|
|
967
855
|
return pulumi.get(self, "resource_filter_rules")
|
|
968
856
|
|
|
@@ -970,7 +858,7 @@ class Integration(pulumi.CustomResource):
|
|
|
970
858
|
@pulumi.getter(name="secretKey")
|
|
971
859
|
def secret_key(self) -> pulumi.Output[str]:
|
|
972
860
|
"""
|
|
973
|
-
Azure secret key that associates the Splunk Observability Cloud app in Azure with the Azure tenant.
|
|
861
|
+
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.
|
|
974
862
|
"""
|
|
975
863
|
return pulumi.get(self, "secret_key")
|
|
976
864
|
|
|
@@ -978,8 +866,7 @@ class Integration(pulumi.CustomResource):
|
|
|
978
866
|
@pulumi.getter
|
|
979
867
|
def services(self) -> pulumi.Output[Sequence[str]]:
|
|
980
868
|
"""
|
|
981
|
-
List of Microsoft Azure service names for the Azure services you want Splunk Observability Cloud to monitor.
|
|
982
|
-
Observability Cloud only supports certain services, and if you specify an unsupported one, you receive an API error.
|
|
869
|
+
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.
|
|
983
870
|
"""
|
|
984
871
|
return pulumi.get(self, "services")
|
|
985
872
|
|
|
@@ -995,9 +882,7 @@ class Integration(pulumi.CustomResource):
|
|
|
995
882
|
@pulumi.getter(name="syncGuestOsNamespaces")
|
|
996
883
|
def sync_guest_os_namespaces(self) -> pulumi.Output[Optional[bool]]:
|
|
997
884
|
"""
|
|
998
|
-
If enabled, Splunk Observability Cloud will try to sync additional namespaces for VMs (including VMs in scale sets):
|
|
999
|
-
telegraf/mem, telegraf/cpu, azure.vm.windows.guest (these are namespaces recommended by Azure when enabling their
|
|
1000
|
-
Diagnostic Extension). If there are no metrics there, no new datapoints will be ingested.
|
|
885
|
+
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.
|
|
1001
886
|
"""
|
|
1002
887
|
return pulumi.get(self, "sync_guest_os_namespaces")
|
|
1003
888
|
|
|
@@ -1005,7 +890,7 @@ class Integration(pulumi.CustomResource):
|
|
|
1005
890
|
@pulumi.getter(name="tenantId")
|
|
1006
891
|
def tenant_id(self) -> pulumi.Output[str]:
|
|
1007
892
|
"""
|
|
1008
|
-
Azure ID of the Azure tenant.
|
|
893
|
+
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.
|
|
1009
894
|
"""
|
|
1010
895
|
return pulumi.get(self, "tenant_id")
|
|
1011
896
|
|