pulumi-logtail 2.1.0 → 2.1.1
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/README.md +2 -2
- package/bin/collectorTarget.d.ts +6 -6
- package/bin/dashboardAlert.d.ts +12 -12
- package/bin/explorationAlert.d.ts +12 -12
- package/bin/package.json +6 -6
- package/bin/types/input.d.ts +24 -8
- package/bin/types/input.d.ts.map +1 -1
- package/bin/types/output.d.ts +113 -93
- package/bin/types/output.d.ts.map +1 -1
- package/bin/utilities.js +3 -3
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -263,8 +263,8 @@ const healthMetrics = [
|
|
|
263
263
|
- **SourceAwsAccount**: Link an AWS account to an `aws` platform `Source`, either by reusing an already-connected account (`awsAccountId`) or by connecting a new one with the `awsRoleArn`/`awsExternalId` pair from the Better Stack CloudFormation stack. Added in 10.14.0.
|
|
264
264
|
- **SourceGroup**: Logical groups for organizing related log sources
|
|
265
265
|
- **Metric**: Custom metrics based on log data for monitoring and alerting
|
|
266
|
-
- **Collector**: Self-hosted agent that collects metrics from databases and processes inside your infrastructure
|
|
267
|
-
- **CollectorTarget**: Individual scrape target attached to a collector (postgres, mysql, redis, mongodb, memcached, elasticsearch, nginx, apache, kafka, prometheus). Added in 10.11.3 and now the preferred way to configure collector targets instead of the deprecated `databases` field on `Collector`.
|
|
266
|
+
- **Collector**: Self-hosted agent that collects metrics from databases and processes inside your infrastructure. Supports multi-line log merging (`mergeLogs`/`mergeLogsConfig`) and disk-buffer tuning (`bufferMaxEvents`, plus an overflow policy of `dropNewest` or `block`), added in 10.14.2.
|
|
267
|
+
- **CollectorTarget**: Individual scrape target attached to a collector (postgres, pgbouncer, mysql, redis, mongodb, memcached, elasticsearch, nginx, apache, kafka, prometheus). Added in 10.11.3 and now the preferred way to configure collector targets instead of the deprecated `databases` field on `Collector`. The `pgbouncer` kind was added in 10.14.2.
|
|
268
268
|
- **Connection**: Connect external data sources for log ingestion
|
|
269
269
|
- **Dashboard / DashboardGroup / DashboardSection / DashboardChart / DashboardAlert**: Build and organize log dashboards and alerts
|
|
270
270
|
- **Exploration / ExplorationGroup / ExplorationAlert**: Saved log explorations and their alerts
|
package/bin/collectorTarget.d.ts
CHANGED
|
@@ -44,11 +44,11 @@ export declare class CollectorTarget extends pulumi.CustomResource {
|
|
|
44
44
|
*/
|
|
45
45
|
readonly endpoint: pulumi.Output<string | undefined>;
|
|
46
46
|
/**
|
|
47
|
-
* Hostname or IP of the database server. Use this for database kinds (postgres, mysql, redis, mongodb, memcached, elasticsearch). For process kinds use <span pulumi-lang-nodejs="`collectorHost`" pulumi-lang-dotnet="`CollectorHost`" pulumi-lang-go="`collectorHost`" pulumi-lang-python="`collector_host`" pulumi-lang-yaml="`collectorHost`" pulumi-lang-java="`collectorHost`" pulumi-lang-hcl="`collector_host`">`collectorHost`</span> instead.
|
|
47
|
+
* Hostname or IP of the database server. Use this for database kinds (postgres, pgbouncer, mysql, redis, mongodb, memcached, elasticsearch). For process kinds use <span pulumi-lang-nodejs="`collectorHost`" pulumi-lang-dotnet="`CollectorHost`" pulumi-lang-go="`collectorHost`" pulumi-lang-python="`collector_host`" pulumi-lang-yaml="`collectorHost`" pulumi-lang-java="`collectorHost`" pulumi-lang-hcl="`collector_host`">`collectorHost`</span> instead.
|
|
48
48
|
*/
|
|
49
49
|
readonly host: pulumi.Output<string | undefined>;
|
|
50
50
|
/**
|
|
51
|
-
* The target kind. One of: postgres, mysql, redis, mongodb, memcached, elasticsearch, nginx, apache, kafka, prometheus.
|
|
51
|
+
* The target kind. One of: postgres, pgbouncer, mysql, redis, mongodb, memcached, elasticsearch, nginx, apache, kafka, prometheus.
|
|
52
52
|
*/
|
|
53
53
|
readonly kind: pulumi.Output<string>;
|
|
54
54
|
/**
|
|
@@ -133,11 +133,11 @@ export interface CollectorTargetState {
|
|
|
133
133
|
*/
|
|
134
134
|
endpoint?: pulumi.Input<string | undefined>;
|
|
135
135
|
/**
|
|
136
|
-
* Hostname or IP of the database server. Use this for database kinds (postgres, mysql, redis, mongodb, memcached, elasticsearch). For process kinds use <span pulumi-lang-nodejs="`collectorHost`" pulumi-lang-dotnet="`CollectorHost`" pulumi-lang-go="`collectorHost`" pulumi-lang-python="`collector_host`" pulumi-lang-yaml="`collectorHost`" pulumi-lang-java="`collectorHost`" pulumi-lang-hcl="`collector_host`">`collectorHost`</span> instead.
|
|
136
|
+
* Hostname or IP of the database server. Use this for database kinds (postgres, pgbouncer, mysql, redis, mongodb, memcached, elasticsearch). For process kinds use <span pulumi-lang-nodejs="`collectorHost`" pulumi-lang-dotnet="`CollectorHost`" pulumi-lang-go="`collectorHost`" pulumi-lang-python="`collector_host`" pulumi-lang-yaml="`collectorHost`" pulumi-lang-java="`collectorHost`" pulumi-lang-hcl="`collector_host`">`collectorHost`</span> instead.
|
|
137
137
|
*/
|
|
138
138
|
host?: pulumi.Input<string | undefined>;
|
|
139
139
|
/**
|
|
140
|
-
* The target kind. One of: postgres, mysql, redis, mongodb, memcached, elasticsearch, nginx, apache, kafka, prometheus.
|
|
140
|
+
* The target kind. One of: postgres, pgbouncer, mysql, redis, mongodb, memcached, elasticsearch, nginx, apache, kafka, prometheus.
|
|
141
141
|
*/
|
|
142
142
|
kind?: pulumi.Input<string | undefined>;
|
|
143
143
|
/**
|
|
@@ -206,11 +206,11 @@ export interface CollectorTargetArgs {
|
|
|
206
206
|
*/
|
|
207
207
|
endpoint?: pulumi.Input<string | undefined>;
|
|
208
208
|
/**
|
|
209
|
-
* Hostname or IP of the database server. Use this for database kinds (postgres, mysql, redis, mongodb, memcached, elasticsearch). For process kinds use <span pulumi-lang-nodejs="`collectorHost`" pulumi-lang-dotnet="`CollectorHost`" pulumi-lang-go="`collectorHost`" pulumi-lang-python="`collector_host`" pulumi-lang-yaml="`collectorHost`" pulumi-lang-java="`collectorHost`" pulumi-lang-hcl="`collector_host`">`collectorHost`</span> instead.
|
|
209
|
+
* Hostname or IP of the database server. Use this for database kinds (postgres, pgbouncer, mysql, redis, mongodb, memcached, elasticsearch). For process kinds use <span pulumi-lang-nodejs="`collectorHost`" pulumi-lang-dotnet="`CollectorHost`" pulumi-lang-go="`collectorHost`" pulumi-lang-python="`collector_host`" pulumi-lang-yaml="`collectorHost`" pulumi-lang-java="`collectorHost`" pulumi-lang-hcl="`collector_host`">`collectorHost`</span> instead.
|
|
210
210
|
*/
|
|
211
211
|
host?: pulumi.Input<string | undefined>;
|
|
212
212
|
/**
|
|
213
|
-
* The target kind. One of: postgres, mysql, redis, mongodb, memcached, elasticsearch, nginx, apache, kafka, prometheus.
|
|
213
|
+
* The target kind. One of: postgres, pgbouncer, mysql, redis, mongodb, memcached, elasticsearch, nginx, apache, kafka, prometheus.
|
|
214
214
|
*/
|
|
215
215
|
kind: pulumi.Input<string>;
|
|
216
216
|
/**
|
package/bin/dashboardAlert.d.ts
CHANGED
|
@@ -42,11 +42,11 @@ export declare class DashboardAlert extends pulumi.CustomResource {
|
|
|
42
42
|
*/
|
|
43
43
|
readonly chartId: pulumi.Output<string>;
|
|
44
44
|
/**
|
|
45
|
-
* How often to check the alert condition in seconds.
|
|
45
|
+
* How often to check the alert condition in seconds. Required for threshold and relative alerts; ignored for anomaly alerts, which derive their cadence from query_period.
|
|
46
46
|
*/
|
|
47
47
|
readonly checkPeriod: pulumi.Output<number>;
|
|
48
48
|
/**
|
|
49
|
-
* The confirmation delay in seconds before triggering
|
|
49
|
+
* The confirmation delay in seconds before triggering.
|
|
50
50
|
*/
|
|
51
51
|
readonly confirmationPeriod: pulumi.Output<number>;
|
|
52
52
|
/**
|
|
@@ -88,7 +88,7 @@ export declare class DashboardAlert extends pulumi.CustomResource {
|
|
|
88
88
|
*/
|
|
89
89
|
readonly name: pulumi.Output<string>;
|
|
90
90
|
/**
|
|
91
|
-
* The comparison operator. For threshold: 'equal', 'not_equal', 'higher_than', 'higher_than_or_equal', 'lower_than', 'lower_than_or_equal'. For relative: 'increases_by', 'decreases_by', 'changes_by'.
|
|
91
|
+
* The comparison operator. Required for threshold and relative alerts; not used for anomaly alerts. For threshold: 'equal', 'not_equal', 'higher_than', 'higher_than_or_equal', 'lower_than', 'lower_than_or_equal'. For relative: 'increases_by', 'decreases_by', 'changes_by'.
|
|
92
92
|
*/
|
|
93
93
|
readonly operator: pulumi.Output<string>;
|
|
94
94
|
/**
|
|
@@ -104,7 +104,7 @@ export declare class DashboardAlert extends pulumi.CustomResource {
|
|
|
104
104
|
*/
|
|
105
105
|
readonly push: pulumi.Output<boolean>;
|
|
106
106
|
/**
|
|
107
|
-
* The query evaluation window in seconds
|
|
107
|
+
* The query evaluation window in seconds.
|
|
108
108
|
*/
|
|
109
109
|
readonly queryPeriod: pulumi.Output<number>;
|
|
110
110
|
/**
|
|
@@ -181,11 +181,11 @@ export interface DashboardAlertState {
|
|
|
181
181
|
*/
|
|
182
182
|
chartId?: pulumi.Input<string | undefined>;
|
|
183
183
|
/**
|
|
184
|
-
* How often to check the alert condition in seconds.
|
|
184
|
+
* How often to check the alert condition in seconds. Required for threshold and relative alerts; ignored for anomaly alerts, which derive their cadence from query_period.
|
|
185
185
|
*/
|
|
186
186
|
checkPeriod?: pulumi.Input<number | undefined>;
|
|
187
187
|
/**
|
|
188
|
-
* The confirmation delay in seconds before triggering
|
|
188
|
+
* The confirmation delay in seconds before triggering.
|
|
189
189
|
*/
|
|
190
190
|
confirmationPeriod?: pulumi.Input<number | undefined>;
|
|
191
191
|
/**
|
|
@@ -227,7 +227,7 @@ export interface DashboardAlertState {
|
|
|
227
227
|
*/
|
|
228
228
|
name?: pulumi.Input<string | undefined>;
|
|
229
229
|
/**
|
|
230
|
-
* The comparison operator. For threshold: 'equal', 'not_equal', 'higher_than', 'higher_than_or_equal', 'lower_than', 'lower_than_or_equal'. For relative: 'increases_by', 'decreases_by', 'changes_by'.
|
|
230
|
+
* The comparison operator. Required for threshold and relative alerts; not used for anomaly alerts. For threshold: 'equal', 'not_equal', 'higher_than', 'higher_than_or_equal', 'lower_than', 'lower_than_or_equal'. For relative: 'increases_by', 'decreases_by', 'changes_by'.
|
|
231
231
|
*/
|
|
232
232
|
operator?: pulumi.Input<string | undefined>;
|
|
233
233
|
/**
|
|
@@ -243,7 +243,7 @@ export interface DashboardAlertState {
|
|
|
243
243
|
*/
|
|
244
244
|
push?: pulumi.Input<boolean | undefined>;
|
|
245
245
|
/**
|
|
246
|
-
* The query evaluation window in seconds
|
|
246
|
+
* The query evaluation window in seconds.
|
|
247
247
|
*/
|
|
248
248
|
queryPeriod?: pulumi.Input<number | undefined>;
|
|
249
249
|
/**
|
|
@@ -312,11 +312,11 @@ export interface DashboardAlertArgs {
|
|
|
312
312
|
*/
|
|
313
313
|
chartId: pulumi.Input<string>;
|
|
314
314
|
/**
|
|
315
|
-
* How often to check the alert condition in seconds.
|
|
315
|
+
* How often to check the alert condition in seconds. Required for threshold and relative alerts; ignored for anomaly alerts, which derive their cadence from query_period.
|
|
316
316
|
*/
|
|
317
317
|
checkPeriod?: pulumi.Input<number | undefined>;
|
|
318
318
|
/**
|
|
319
|
-
* The confirmation delay in seconds before triggering
|
|
319
|
+
* The confirmation delay in seconds before triggering.
|
|
320
320
|
*/
|
|
321
321
|
confirmationPeriod?: pulumi.Input<number | undefined>;
|
|
322
322
|
/**
|
|
@@ -354,7 +354,7 @@ export interface DashboardAlertArgs {
|
|
|
354
354
|
*/
|
|
355
355
|
name?: pulumi.Input<string | undefined>;
|
|
356
356
|
/**
|
|
357
|
-
* The comparison operator. For threshold: 'equal', 'not_equal', 'higher_than', 'higher_than_or_equal', 'lower_than', 'lower_than_or_equal'. For relative: 'increases_by', 'decreases_by', 'changes_by'.
|
|
357
|
+
* The comparison operator. Required for threshold and relative alerts; not used for anomaly alerts. For threshold: 'equal', 'not_equal', 'higher_than', 'higher_than_or_equal', 'lower_than', 'lower_than_or_equal'. For relative: 'increases_by', 'decreases_by', 'changes_by'.
|
|
358
358
|
*/
|
|
359
359
|
operator?: pulumi.Input<string | undefined>;
|
|
360
360
|
/**
|
|
@@ -366,7 +366,7 @@ export interface DashboardAlertArgs {
|
|
|
366
366
|
*/
|
|
367
367
|
push?: pulumi.Input<boolean | undefined>;
|
|
368
368
|
/**
|
|
369
|
-
* The query evaluation window in seconds
|
|
369
|
+
* The query evaluation window in seconds.
|
|
370
370
|
*/
|
|
371
371
|
queryPeriod?: pulumi.Input<number | undefined>;
|
|
372
372
|
/**
|
|
@@ -38,11 +38,11 @@ export declare class ExplorationAlert extends pulumi.CustomResource {
|
|
|
38
38
|
*/
|
|
39
39
|
readonly call: pulumi.Output<boolean>;
|
|
40
40
|
/**
|
|
41
|
-
* How often to check the alert condition in seconds.
|
|
41
|
+
* How often to check the alert condition in seconds. Required for threshold and relative alerts; ignored for anomaly alerts, which derive their cadence from query_period.
|
|
42
42
|
*/
|
|
43
43
|
readonly checkPeriod: pulumi.Output<number>;
|
|
44
44
|
/**
|
|
45
|
-
* The confirmation delay in seconds before triggering
|
|
45
|
+
* The confirmation delay in seconds before triggering.
|
|
46
46
|
*/
|
|
47
47
|
readonly confirmationPeriod: pulumi.Output<number>;
|
|
48
48
|
/**
|
|
@@ -84,7 +84,7 @@ export declare class ExplorationAlert extends pulumi.CustomResource {
|
|
|
84
84
|
*/
|
|
85
85
|
readonly name: pulumi.Output<string>;
|
|
86
86
|
/**
|
|
87
|
-
* The comparison operator. For threshold: 'equal', 'not_equal', 'higher_than', 'higher_than_or_equal', 'lower_than', 'lower_than_or_equal'. For relative: 'increases_by', 'decreases_by', 'changes_by'.
|
|
87
|
+
* The comparison operator. Required for threshold and relative alerts; not used for anomaly alerts. For threshold: 'equal', 'not_equal', 'higher_than', 'higher_than_or_equal', 'lower_than', 'lower_than_or_equal'. For relative: 'increases_by', 'decreases_by', 'changes_by'.
|
|
88
88
|
*/
|
|
89
89
|
readonly operator: pulumi.Output<string>;
|
|
90
90
|
/**
|
|
@@ -100,7 +100,7 @@ export declare class ExplorationAlert extends pulumi.CustomResource {
|
|
|
100
100
|
*/
|
|
101
101
|
readonly push: pulumi.Output<boolean>;
|
|
102
102
|
/**
|
|
103
|
-
* The query evaluation window in seconds
|
|
103
|
+
* The query evaluation window in seconds.
|
|
104
104
|
*/
|
|
105
105
|
readonly queryPeriod: pulumi.Output<number>;
|
|
106
106
|
/**
|
|
@@ -173,11 +173,11 @@ export interface ExplorationAlertState {
|
|
|
173
173
|
*/
|
|
174
174
|
call?: pulumi.Input<boolean | undefined>;
|
|
175
175
|
/**
|
|
176
|
-
* How often to check the alert condition in seconds.
|
|
176
|
+
* How often to check the alert condition in seconds. Required for threshold and relative alerts; ignored for anomaly alerts, which derive their cadence from query_period.
|
|
177
177
|
*/
|
|
178
178
|
checkPeriod?: pulumi.Input<number | undefined>;
|
|
179
179
|
/**
|
|
180
|
-
* The confirmation delay in seconds before triggering
|
|
180
|
+
* The confirmation delay in seconds before triggering.
|
|
181
181
|
*/
|
|
182
182
|
confirmationPeriod?: pulumi.Input<number | undefined>;
|
|
183
183
|
/**
|
|
@@ -219,7 +219,7 @@ export interface ExplorationAlertState {
|
|
|
219
219
|
*/
|
|
220
220
|
name?: pulumi.Input<string | undefined>;
|
|
221
221
|
/**
|
|
222
|
-
* The comparison operator. For threshold: 'equal', 'not_equal', 'higher_than', 'higher_than_or_equal', 'lower_than', 'lower_than_or_equal'. For relative: 'increases_by', 'decreases_by', 'changes_by'.
|
|
222
|
+
* The comparison operator. Required for threshold and relative alerts; not used for anomaly alerts. For threshold: 'equal', 'not_equal', 'higher_than', 'higher_than_or_equal', 'lower_than', 'lower_than_or_equal'. For relative: 'increases_by', 'decreases_by', 'changes_by'.
|
|
223
223
|
*/
|
|
224
224
|
operator?: pulumi.Input<string | undefined>;
|
|
225
225
|
/**
|
|
@@ -235,7 +235,7 @@ export interface ExplorationAlertState {
|
|
|
235
235
|
*/
|
|
236
236
|
push?: pulumi.Input<boolean | undefined>;
|
|
237
237
|
/**
|
|
238
|
-
* The query evaluation window in seconds
|
|
238
|
+
* The query evaluation window in seconds.
|
|
239
239
|
*/
|
|
240
240
|
queryPeriod?: pulumi.Input<number | undefined>;
|
|
241
241
|
/**
|
|
@@ -300,11 +300,11 @@ export interface ExplorationAlertArgs {
|
|
|
300
300
|
*/
|
|
301
301
|
call?: pulumi.Input<boolean | undefined>;
|
|
302
302
|
/**
|
|
303
|
-
* How often to check the alert condition in seconds.
|
|
303
|
+
* How often to check the alert condition in seconds. Required for threshold and relative alerts; ignored for anomaly alerts, which derive their cadence from query_period.
|
|
304
304
|
*/
|
|
305
305
|
checkPeriod?: pulumi.Input<number | undefined>;
|
|
306
306
|
/**
|
|
307
|
-
* The confirmation delay in seconds before triggering
|
|
307
|
+
* The confirmation delay in seconds before triggering.
|
|
308
308
|
*/
|
|
309
309
|
confirmationPeriod?: pulumi.Input<number | undefined>;
|
|
310
310
|
/**
|
|
@@ -342,7 +342,7 @@ export interface ExplorationAlertArgs {
|
|
|
342
342
|
*/
|
|
343
343
|
name?: pulumi.Input<string | undefined>;
|
|
344
344
|
/**
|
|
345
|
-
* The comparison operator. For threshold: 'equal', 'not_equal', 'higher_than', 'higher_than_or_equal', 'lower_than', 'lower_than_or_equal'. For relative: 'increases_by', 'decreases_by', 'changes_by'.
|
|
345
|
+
* The comparison operator. Required for threshold and relative alerts; not used for anomaly alerts. For threshold: 'equal', 'not_equal', 'higher_than', 'higher_than_or_equal', 'lower_than', 'lower_than_or_equal'. For relative: 'increases_by', 'decreases_by', 'changes_by'.
|
|
346
346
|
*/
|
|
347
347
|
operator?: pulumi.Input<string | undefined>;
|
|
348
348
|
/**
|
|
@@ -354,7 +354,7 @@ export interface ExplorationAlertArgs {
|
|
|
354
354
|
*/
|
|
355
355
|
push?: pulumi.Input<boolean | undefined>;
|
|
356
356
|
/**
|
|
357
|
-
* The query evaluation window in seconds
|
|
357
|
+
* The query evaluation window in seconds.
|
|
358
358
|
*/
|
|
359
359
|
queryPeriod?: pulumi.Input<number | undefined>;
|
|
360
360
|
/**
|
package/bin/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pulumi-logtail",
|
|
3
3
|
"description": "A Pulumi provider for managing Logtail log management and analytics resources, dynamically bridged from the Terraform Logtail provider with support for sources, metrics, and log aggregation.",
|
|
4
|
-
"version": "2.1.
|
|
4
|
+
"version": "2.1.1",
|
|
5
5
|
"homepage": "https://pulumi.khanh.id/docs/providers/logtail",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"async-mutex": "0.5.0"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@pulumi/pulumi": "3.
|
|
25
|
-
"@types/node": "24.13.
|
|
24
|
+
"@pulumi/pulumi": "3.246.0",
|
|
25
|
+
"@types/node": "24.13.2",
|
|
26
26
|
"typescript": "5.9.3"
|
|
27
27
|
},
|
|
28
28
|
"peerDependencies": {
|
|
@@ -54,11 +54,11 @@
|
|
|
54
54
|
"pulumi": {
|
|
55
55
|
"resource": true,
|
|
56
56
|
"name": "terraform-provider",
|
|
57
|
-
"version": "1.1.
|
|
57
|
+
"version": "1.1.4",
|
|
58
58
|
"parameterization": {
|
|
59
59
|
"name": "logtail",
|
|
60
|
-
"version": "10.14.
|
|
61
|
-
"value": "
|
|
60
|
+
"version": "10.14.2",
|
|
61
|
+
"value": "eyJyZW1vdGUiOnsidXJsIjoicmVnaXN0cnkub3BlbnRvZnUub3JnL2JldHRlcnN0YWNraHEvbG9ndGFpbCIsInZlcnNpb24iOiIxMC4xNC4yIn19"
|
|
62
62
|
}
|
|
63
63
|
}
|
|
64
64
|
}
|
package/bin/types/input.d.ts
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import * as inputs from "../types/input";
|
|
3
3
|
export interface CollectorConfiguration {
|
|
4
|
+
/**
|
|
5
|
+
* Maximum number of events held in the collector's in-memory buffer before overflowing to the disk buffer. Defaults to 10000.
|
|
6
|
+
*/
|
|
7
|
+
bufferMaxEvents?: pulumi.Input<number | undefined>;
|
|
4
8
|
/**
|
|
5
9
|
* Enable or disable specific collector components. Maps to the Logs, Metrics, and eBPF tabs in the collector settings UI.
|
|
6
10
|
*/
|
|
@@ -21,6 +25,14 @@ export interface CollectorConfiguration {
|
|
|
21
25
|
* Memory batch size in MB for outgoing requests. Maximum 40 MB.
|
|
22
26
|
*/
|
|
23
27
|
memoryBatchSizeMb?: pulumi.Input<number | undefined>;
|
|
28
|
+
/**
|
|
29
|
+
* Whether to merge multi-line logs (e.g. stack traces) into single log entries on the collector host before transmission. Matches the Merge logs tab in the collector's Transform data UI.
|
|
30
|
+
*/
|
|
31
|
+
mergeLogs?: pulumi.Input<boolean | undefined>;
|
|
32
|
+
/**
|
|
33
|
+
* VRL condition detecting the first line of a new log entry — consecutive lines not matching it are merged into the preceding entry. Leave unset to use the built-in heuristic (lines starting with a timestamp or log level). Only used when <span pulumi-lang-nodejs="`mergeLogs`" pulumi-lang-dotnet="`MergeLogs`" pulumi-lang-go="`mergeLogs`" pulumi-lang-python="`merge_logs`" pulumi-lang-yaml="`mergeLogs`" pulumi-lang-java="`mergeLogs`" pulumi-lang-hcl="`merge_logs`">`mergeLogs`</span> is <span pulumi-lang-nodejs="`true`" pulumi-lang-dotnet="`True`" pulumi-lang-go="`true`" pulumi-lang-python="`true`" pulumi-lang-yaml="`true`" pulumi-lang-java="`true`" pulumi-lang-hcl="`true`">`true`</span>.
|
|
34
|
+
*/
|
|
35
|
+
mergeLogsConfig?: pulumi.Input<string | undefined>;
|
|
24
36
|
/**
|
|
25
37
|
* Per-namespace overrides for log sampling rate and trace ingestion (Kubernetes only). Order-independent; entries are identified by name.
|
|
26
38
|
*/
|
|
@@ -37,6 +49,10 @@ export interface CollectorConfiguration {
|
|
|
37
49
|
* VRL transformation that runs on the collector host, inside your infrastructure, before data is transmitted to Better Stack. Use this for PII redaction and sensitive data filtering — raw data never leaves your network. For server-side transformations that run during ingestion on Better Stack, use the top-level <span pulumi-lang-nodejs="`sourceVrlTransformation`" pulumi-lang-dotnet="`SourceVrlTransformation`" pulumi-lang-go="`sourceVrlTransformation`" pulumi-lang-python="`source_vrl_transformation`" pulumi-lang-yaml="`sourceVrlTransformation`" pulumi-lang-java="`sourceVrlTransformation`" pulumi-lang-hcl="`source_vrl_transformation`">`sourceVrlTransformation`</span> attribute instead. Read more about [VRL transformations](https://betterstack.com/docs/logs/using-logtail/transforming-ingested-data/logs-vrl/).
|
|
38
50
|
*/
|
|
39
51
|
vrlTransformation?: pulumi.Input<string | undefined>;
|
|
52
|
+
/**
|
|
53
|
+
* What the collector does when the disk buffer is full. <span pulumi-lang-nodejs="`dropNewest`" pulumi-lang-dotnet="`DropNewest`" pulumi-lang-go="`dropNewest`" pulumi-lang-python="`drop_newest`" pulumi-lang-yaml="`dropNewest`" pulumi-lang-java="`dropNewest`" pulumi-lang-hcl="`drop_newest`">`dropNewest`</span> (default) drops incoming data, preferring availability; <span pulumi-lang-nodejs="`block`" pulumi-lang-dotnet="`Block`" pulumi-lang-go="`block`" pulumi-lang-python="`block`" pulumi-lang-yaml="`block`" pulumi-lang-java="`block`" pulumi-lang-hcl="`block`">`block`</span> applies backpressure to producers, preferring completeness.
|
|
54
|
+
*/
|
|
55
|
+
whenFull?: pulumi.Input<string | undefined>;
|
|
40
56
|
}
|
|
41
57
|
export interface CollectorConfigurationComponents {
|
|
42
58
|
/**
|
|
@@ -173,10 +189,10 @@ export interface CollectorDatabase {
|
|
|
173
189
|
username?: pulumi.Input<string | undefined>;
|
|
174
190
|
}
|
|
175
191
|
export interface ConnectionDataSource {
|
|
176
|
-
dataSources
|
|
177
|
-
sourceId
|
|
178
|
-
sourceName
|
|
179
|
-
teamName
|
|
192
|
+
dataSources?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
193
|
+
sourceId?: pulumi.Input<number | undefined>;
|
|
194
|
+
sourceName?: pulumi.Input<string | undefined>;
|
|
195
|
+
teamName?: pulumi.Input<string | undefined>;
|
|
180
196
|
}
|
|
181
197
|
export interface DashboardAlertEscalationTarget {
|
|
182
198
|
/**
|
|
@@ -228,7 +244,7 @@ export interface DashboardChartQuery {
|
|
|
228
244
|
}
|
|
229
245
|
export interface DashboardVariable {
|
|
230
246
|
/**
|
|
231
|
-
*
|
|
247
|
+
* For 'string', 'number', and 'boolean' variables: fallback value used when <span pulumi-lang-nodejs="`values`" pulumi-lang-dotnet="`Values`" pulumi-lang-go="`values`" pulumi-lang-python="`values`" pulumi-lang-yaml="`values`" pulumi-lang-java="`values`" pulumi-lang-hcl="`values`">`values`</span> is empty. For 'select_value' variables: the predefined options shown in the picker. Unused for other types.
|
|
232
248
|
*/
|
|
233
249
|
defaultValues?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
234
250
|
/**
|
|
@@ -240,7 +256,7 @@ export interface DashboardVariable {
|
|
|
240
256
|
*/
|
|
241
257
|
sqlDefinition?: pulumi.Input<string | undefined>;
|
|
242
258
|
/**
|
|
243
|
-
*
|
|
259
|
+
* The selected values. For 'source' variables these are the source IDs the variable resolves to (e.g. `logtail_source.web.id`) — this is the field that selects the source. For other types it is the current picker selection or input.
|
|
244
260
|
*/
|
|
245
261
|
values?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
246
262
|
/**
|
|
@@ -338,7 +354,7 @@ export interface ExplorationQuery {
|
|
|
338
354
|
}
|
|
339
355
|
export interface ExplorationVariable {
|
|
340
356
|
/**
|
|
341
|
-
*
|
|
357
|
+
* For 'string', 'number', and 'boolean' variables: fallback value used when <span pulumi-lang-nodejs="`values`" pulumi-lang-dotnet="`Values`" pulumi-lang-go="`values`" pulumi-lang-python="`values`" pulumi-lang-yaml="`values`" pulumi-lang-java="`values`" pulumi-lang-hcl="`values`">`values`</span> is empty. For 'select_value' variables: the predefined options shown in the picker. Unused for other types.
|
|
342
358
|
*/
|
|
343
359
|
defaultValues?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
344
360
|
/**
|
|
@@ -350,7 +366,7 @@ export interface ExplorationVariable {
|
|
|
350
366
|
*/
|
|
351
367
|
sqlDefinition?: pulumi.Input<string | undefined>;
|
|
352
368
|
/**
|
|
353
|
-
*
|
|
369
|
+
* The selected values. For 'source' variables these are the source IDs the variable resolves to (e.g. `logtail_source.web.id`) — this is the field that selects the source. For other types it is the current picker selection or input.
|
|
354
370
|
*/
|
|
355
371
|
values?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
356
372
|
/**
|
package/bin/types/input.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"input.d.ts","sourceRoot":"","sources":["../../types/input.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAGzC,MAAM,WAAW,sBAAsB;IACnC;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,gCAAgC,GAAG,SAAS,CAAC,CAAC;IAC/E;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACnD;;OAEG;IACH,oBAAoB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACxD;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAClD;;OAEG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACrD;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,qCAAqC,CAAC,EAAE,GAAG,SAAS,CAAC,CAAC;IAC1G;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,mCAAmC,CAAC,EAAE,GAAG,SAAS,CAAC,CAAC;IACtG;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACpD;;OAEG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"input.d.ts","sourceRoot":"","sources":["../../types/input.ts"],"names":[],"mappings":"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"}
|
package/bin/types/output.d.ts
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import * as outputs from "../types/output";
|
|
2
2
|
export interface CollectorConfiguration {
|
|
3
|
+
/**
|
|
4
|
+
* Maximum number of events held in the collector's in-memory buffer before overflowing to the disk buffer. Defaults to 10000.
|
|
5
|
+
*/
|
|
6
|
+
bufferMaxEvents: number;
|
|
3
7
|
/**
|
|
4
8
|
* Enable or disable specific collector components. Maps to the Logs, Metrics, and eBPF tabs in the collector settings UI.
|
|
5
9
|
*/
|
|
@@ -20,6 +24,14 @@ export interface CollectorConfiguration {
|
|
|
20
24
|
* Memory batch size in MB for outgoing requests. Maximum 40 MB.
|
|
21
25
|
*/
|
|
22
26
|
memoryBatchSizeMb: number;
|
|
27
|
+
/**
|
|
28
|
+
* Whether to merge multi-line logs (e.g. stack traces) into single log entries on the collector host before transmission. Matches the Merge logs tab in the collector's Transform data UI.
|
|
29
|
+
*/
|
|
30
|
+
mergeLogs: boolean;
|
|
31
|
+
/**
|
|
32
|
+
* VRL condition detecting the first line of a new log entry — consecutive lines not matching it are merged into the preceding entry. Leave unset to use the built-in heuristic (lines starting with a timestamp or log level). Only used when <span pulumi-lang-nodejs="`mergeLogs`" pulumi-lang-dotnet="`MergeLogs`" pulumi-lang-go="`mergeLogs`" pulumi-lang-python="`merge_logs`" pulumi-lang-yaml="`mergeLogs`" pulumi-lang-java="`mergeLogs`" pulumi-lang-hcl="`merge_logs`">`mergeLogs`</span> is <span pulumi-lang-nodejs="`true`" pulumi-lang-dotnet="`True`" pulumi-lang-go="`true`" pulumi-lang-python="`true`" pulumi-lang-yaml="`true`" pulumi-lang-java="`true`" pulumi-lang-hcl="`true`">`true`</span>.
|
|
33
|
+
*/
|
|
34
|
+
mergeLogsConfig: string;
|
|
23
35
|
/**
|
|
24
36
|
* Per-namespace overrides for log sampling rate and trace ingestion (Kubernetes only). Order-independent; entries are identified by name.
|
|
25
37
|
*/
|
|
@@ -36,6 +48,10 @@ export interface CollectorConfiguration {
|
|
|
36
48
|
* VRL transformation that runs on the collector host, inside your infrastructure, before data is transmitted to Better Stack. Use this for PII redaction and sensitive data filtering — raw data never leaves your network. For server-side transformations that run during ingestion on Better Stack, use the top-level <span pulumi-lang-nodejs="`sourceVrlTransformation`" pulumi-lang-dotnet="`SourceVrlTransformation`" pulumi-lang-go="`sourceVrlTransformation`" pulumi-lang-python="`source_vrl_transformation`" pulumi-lang-yaml="`sourceVrlTransformation`" pulumi-lang-java="`sourceVrlTransformation`" pulumi-lang-hcl="`source_vrl_transformation`">`sourceVrlTransformation`</span> attribute instead. Read more about [VRL transformations](https://betterstack.com/docs/logs/using-logtail/transforming-ingested-data/logs-vrl/).
|
|
37
49
|
*/
|
|
38
50
|
vrlTransformation: string;
|
|
51
|
+
/**
|
|
52
|
+
* What the collector does when the disk buffer is full. <span pulumi-lang-nodejs="`dropNewest`" pulumi-lang-dotnet="`DropNewest`" pulumi-lang-go="`dropNewest`" pulumi-lang-python="`drop_newest`" pulumi-lang-yaml="`dropNewest`" pulumi-lang-java="`dropNewest`" pulumi-lang-hcl="`drop_newest`">`dropNewest`</span> (default) drops incoming data, preferring availability; <span pulumi-lang-nodejs="`block`" pulumi-lang-dotnet="`Block`" pulumi-lang-go="`block`" pulumi-lang-python="`block`" pulumi-lang-yaml="`block`" pulumi-lang-java="`block`" pulumi-lang-hcl="`block`">`block`</span> applies backpressure to producers, preferring completeness.
|
|
53
|
+
*/
|
|
54
|
+
whenFull: string;
|
|
39
55
|
}
|
|
40
56
|
export interface CollectorConfigurationComponents {
|
|
41
57
|
/**
|
|
@@ -172,10 +188,10 @@ export interface CollectorDatabase {
|
|
|
172
188
|
username?: string;
|
|
173
189
|
}
|
|
174
190
|
export interface ConnectionDataSource {
|
|
175
|
-
dataSources
|
|
176
|
-
sourceId
|
|
177
|
-
sourceName
|
|
178
|
-
teamName
|
|
191
|
+
dataSources?: string[];
|
|
192
|
+
sourceId?: number;
|
|
193
|
+
sourceName?: string;
|
|
194
|
+
teamName?: string;
|
|
179
195
|
}
|
|
180
196
|
export interface DashboardAlertEscalationTarget {
|
|
181
197
|
/**
|
|
@@ -227,7 +243,7 @@ export interface DashboardChartQuery {
|
|
|
227
243
|
}
|
|
228
244
|
export interface DashboardVariable {
|
|
229
245
|
/**
|
|
230
|
-
*
|
|
246
|
+
* For 'string', 'number', and 'boolean' variables: fallback value used when <span pulumi-lang-nodejs="`values`" pulumi-lang-dotnet="`Values`" pulumi-lang-go="`values`" pulumi-lang-python="`values`" pulumi-lang-yaml="`values`" pulumi-lang-java="`values`" pulumi-lang-hcl="`values`">`values`</span> is empty. For 'select_value' variables: the predefined options shown in the picker. Unused for other types.
|
|
231
247
|
*/
|
|
232
248
|
defaultValues: string[];
|
|
233
249
|
/**
|
|
@@ -239,7 +255,7 @@ export interface DashboardVariable {
|
|
|
239
255
|
*/
|
|
240
256
|
sqlDefinition: string;
|
|
241
257
|
/**
|
|
242
|
-
*
|
|
258
|
+
* The selected values. For 'source' variables these are the source IDs the variable resolves to (e.g. `logtail_source.web.id`) — this is the field that selects the source. For other types it is the current picker selection or input.
|
|
243
259
|
*/
|
|
244
260
|
values: string[];
|
|
245
261
|
/**
|
|
@@ -337,7 +353,7 @@ export interface ExplorationQuery {
|
|
|
337
353
|
}
|
|
338
354
|
export interface ExplorationVariable {
|
|
339
355
|
/**
|
|
340
|
-
*
|
|
356
|
+
* For 'string', 'number', and 'boolean' variables: fallback value used when <span pulumi-lang-nodejs="`values`" pulumi-lang-dotnet="`Values`" pulumi-lang-go="`values`" pulumi-lang-python="`values`" pulumi-lang-yaml="`values`" pulumi-lang-java="`values`" pulumi-lang-hcl="`values`">`values`</span> is empty. For 'select_value' variables: the predefined options shown in the picker. Unused for other types.
|
|
341
357
|
*/
|
|
342
358
|
defaultValues?: string[];
|
|
343
359
|
/**
|
|
@@ -349,7 +365,7 @@ export interface ExplorationVariable {
|
|
|
349
365
|
*/
|
|
350
366
|
sqlDefinition?: string;
|
|
351
367
|
/**
|
|
352
|
-
*
|
|
368
|
+
* The selected values. For 'source' variables these are the source IDs the variable resolves to (e.g. `logtail_source.web.id`) — this is the field that selects the source. For other types it is the current picker selection or input.
|
|
353
369
|
*/
|
|
354
370
|
values?: string[];
|
|
355
371
|
/**
|
|
@@ -358,119 +374,123 @@ export interface ExplorationVariable {
|
|
|
358
374
|
variableType: string;
|
|
359
375
|
}
|
|
360
376
|
export interface GetCollectorConfiguration {
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
377
|
+
bufferMaxEvents?: number;
|
|
378
|
+
components?: outputs.GetCollectorConfigurationComponent[];
|
|
379
|
+
diskBatchSizeMb?: number;
|
|
380
|
+
logLineLengthLimitKb?: number;
|
|
381
|
+
logsSampleRate?: number;
|
|
382
|
+
memoryBatchSizeMb?: number;
|
|
383
|
+
mergeLogs?: boolean;
|
|
384
|
+
mergeLogsConfig?: string;
|
|
385
|
+
namespaceOptions?: outputs.GetCollectorConfigurationNamespaceOption[];
|
|
386
|
+
serviceOptions?: outputs.GetCollectorConfigurationServiceOption[];
|
|
387
|
+
tracesSampleRate?: number;
|
|
388
|
+
vrlTransformation?: string;
|
|
389
|
+
whenFull?: string;
|
|
370
390
|
}
|
|
371
391
|
export interface GetCollectorConfigurationComponent {
|
|
372
|
-
ebpfMetrics
|
|
373
|
-
ebpfRedMetrics
|
|
374
|
-
ebpfTracingBasic
|
|
375
|
-
ebpfTracingFull
|
|
376
|
-
logsCollectorInternals
|
|
377
|
-
logsDocker
|
|
378
|
-
logsHost
|
|
379
|
-
logsKubernetes
|
|
380
|
-
metricsApache
|
|
381
|
-
metricsDatabases
|
|
382
|
-
metricsNginx
|
|
383
|
-
tracesOpentelemetry
|
|
392
|
+
ebpfMetrics?: boolean;
|
|
393
|
+
ebpfRedMetrics?: boolean;
|
|
394
|
+
ebpfTracingBasic?: boolean;
|
|
395
|
+
ebpfTracingFull?: boolean;
|
|
396
|
+
logsCollectorInternals?: boolean;
|
|
397
|
+
logsDocker?: boolean;
|
|
398
|
+
logsHost?: boolean;
|
|
399
|
+
logsKubernetes?: boolean;
|
|
400
|
+
metricsApache?: boolean;
|
|
401
|
+
metricsDatabases?: boolean;
|
|
402
|
+
metricsNginx?: boolean;
|
|
403
|
+
tracesOpentelemetry?: boolean;
|
|
384
404
|
}
|
|
385
405
|
export interface GetCollectorConfigurationNamespaceOption {
|
|
386
|
-
ingestTraces
|
|
387
|
-
logSampling
|
|
388
|
-
name
|
|
406
|
+
ingestTraces?: boolean;
|
|
407
|
+
logSampling?: number;
|
|
408
|
+
name?: string;
|
|
389
409
|
}
|
|
390
410
|
export interface GetCollectorConfigurationServiceOption {
|
|
391
|
-
ingestTraces
|
|
392
|
-
logSampling
|
|
393
|
-
name
|
|
411
|
+
ingestTraces?: boolean;
|
|
412
|
+
logSampling?: number;
|
|
413
|
+
name?: string;
|
|
394
414
|
}
|
|
395
415
|
export interface GetCollectorCustomBucket {
|
|
396
|
-
accessKeyId
|
|
397
|
-
endpoint
|
|
398
|
-
keepDataAfterRetention
|
|
399
|
-
name
|
|
400
|
-
secretAccessKey
|
|
416
|
+
accessKeyId?: string;
|
|
417
|
+
endpoint?: string;
|
|
418
|
+
keepDataAfterRetention?: boolean;
|
|
419
|
+
name?: string;
|
|
420
|
+
secretAccessKey?: string;
|
|
401
421
|
}
|
|
402
422
|
export interface GetCollectorDatabase {
|
|
403
|
-
host
|
|
404
|
-
id
|
|
405
|
-
password
|
|
406
|
-
port
|
|
407
|
-
serviceType
|
|
408
|
-
sslMode
|
|
409
|
-
tls
|
|
410
|
-
username
|
|
423
|
+
host?: string;
|
|
424
|
+
id?: number;
|
|
425
|
+
password?: string;
|
|
426
|
+
port?: number;
|
|
427
|
+
serviceType?: string;
|
|
428
|
+
sslMode?: string;
|
|
429
|
+
tls?: string;
|
|
430
|
+
username?: string;
|
|
411
431
|
}
|
|
412
432
|
export interface GetConnectionDataSource {
|
|
413
|
-
dataSources
|
|
414
|
-
sourceId
|
|
415
|
-
sourceName
|
|
416
|
-
teamName
|
|
433
|
+
dataSources?: string[];
|
|
434
|
+
sourceId?: number;
|
|
435
|
+
sourceName?: string;
|
|
436
|
+
teamName?: string;
|
|
417
437
|
}
|
|
418
438
|
export interface GetDashboardAlertEscalationTarget {
|
|
419
|
-
policyId
|
|
420
|
-
policyName
|
|
421
|
-
teamId
|
|
422
|
-
teamName
|
|
439
|
+
policyId?: number;
|
|
440
|
+
policyName?: string;
|
|
441
|
+
teamId?: number;
|
|
442
|
+
teamName?: string;
|
|
423
443
|
}
|
|
424
444
|
export interface GetDashboardChartQuery {
|
|
425
|
-
id
|
|
426
|
-
name
|
|
427
|
-
queryType
|
|
428
|
-
sourceVariable
|
|
429
|
-
sqlQuery
|
|
430
|
-
staticText
|
|
431
|
-
whereCondition
|
|
445
|
+
id?: number;
|
|
446
|
+
name?: string;
|
|
447
|
+
queryType?: string;
|
|
448
|
+
sourceVariable?: string;
|
|
449
|
+
sqlQuery?: string;
|
|
450
|
+
staticText?: string;
|
|
451
|
+
whereCondition?: string;
|
|
432
452
|
}
|
|
433
453
|
export interface GetErrorsApplicationCustomBucket {
|
|
434
|
-
accessKeyId
|
|
435
|
-
endpoint
|
|
436
|
-
keepDataAfterRetention
|
|
437
|
-
name
|
|
438
|
-
secretAccessKey
|
|
454
|
+
accessKeyId?: string;
|
|
455
|
+
endpoint?: string;
|
|
456
|
+
keepDataAfterRetention?: boolean;
|
|
457
|
+
name?: string;
|
|
458
|
+
secretAccessKey?: string;
|
|
439
459
|
}
|
|
440
460
|
export interface GetExplorationAlertEscalationTarget {
|
|
441
|
-
policyId
|
|
442
|
-
policyName
|
|
443
|
-
teamId
|
|
444
|
-
teamName
|
|
461
|
+
policyId?: number;
|
|
462
|
+
policyName?: string;
|
|
463
|
+
teamId?: number;
|
|
464
|
+
teamName?: string;
|
|
445
465
|
}
|
|
446
466
|
export interface GetExplorationChart {
|
|
447
|
-
chartType
|
|
448
|
-
description
|
|
449
|
-
name
|
|
450
|
-
settings
|
|
467
|
+
chartType?: string;
|
|
468
|
+
description?: string;
|
|
469
|
+
name?: string;
|
|
470
|
+
settings?: string;
|
|
451
471
|
}
|
|
452
472
|
export interface GetExplorationQuery {
|
|
453
|
-
id
|
|
454
|
-
name
|
|
455
|
-
queryType
|
|
456
|
-
sourceVariable
|
|
457
|
-
sqlQuery
|
|
458
|
-
staticText
|
|
459
|
-
whereCondition
|
|
473
|
+
id?: number;
|
|
474
|
+
name?: string;
|
|
475
|
+
queryType?: string;
|
|
476
|
+
sourceVariable?: string;
|
|
477
|
+
sqlQuery?: string;
|
|
478
|
+
staticText?: string;
|
|
479
|
+
whereCondition?: string;
|
|
460
480
|
}
|
|
461
481
|
export interface GetExplorationVariable {
|
|
462
|
-
defaultValues
|
|
463
|
-
name
|
|
464
|
-
sqlDefinition
|
|
465
|
-
values
|
|
466
|
-
variableType
|
|
482
|
+
defaultValues?: string[];
|
|
483
|
+
name?: string;
|
|
484
|
+
sqlDefinition?: string;
|
|
485
|
+
values?: string[];
|
|
486
|
+
variableType?: string;
|
|
467
487
|
}
|
|
468
488
|
export interface GetSourceCustomBucket {
|
|
469
|
-
accessKeyId
|
|
470
|
-
endpoint
|
|
471
|
-
keepDataAfterRetention
|
|
472
|
-
name
|
|
473
|
-
secretAccessKey
|
|
489
|
+
accessKeyId?: string;
|
|
490
|
+
endpoint?: string;
|
|
491
|
+
keepDataAfterRetention?: boolean;
|
|
492
|
+
name?: string;
|
|
493
|
+
secretAccessKey?: string;
|
|
474
494
|
}
|
|
475
495
|
export interface SourceCustomBucket {
|
|
476
496
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"output.d.ts","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,OAAO,MAAM,iBAAiB,CAAC;AAE3C,MAAM,WAAW,sBAAsB;IACnC;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC,gCAAgC,CAAC;IACtD;;OAEG;IACH,eAAe,EAAE,MAAM,CAAC;IACxB;;OAEG;IACH,oBAAoB,EAAE,MAAM,CAAC;IAC7B;;OAEG;IACH,cAAc,EAAE,MAAM,CAAC;IACvB;;OAEG;IACH,iBAAiB,EAAE,MAAM,CAAC;IAC1B;;OAEG;IACH,gBAAgB,CAAC,EAAE,OAAO,CAAC,qCAAqC,EAAE,CAAC;IACnE;;OAEG;IACH,cAAc,CAAC,EAAE,OAAO,CAAC,mCAAmC,EAAE,CAAC;IAC/D;;OAEG;IACH,gBAAgB,EAAE,MAAM,CAAC;IACzB;;OAEG;IACH,iBAAiB,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"output.d.ts","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":"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"}
|
package/bin/utilities.js
CHANGED
|
@@ -124,11 +124,11 @@ async function callAsync(tok, props, res, opts) {
|
|
|
124
124
|
async function getPackage() {
|
|
125
125
|
return runtime.registerPackage({
|
|
126
126
|
baseProviderName: "terraform-provider",
|
|
127
|
-
baseProviderVersion: "1.1.
|
|
127
|
+
baseProviderVersion: "1.1.4",
|
|
128
128
|
baseProviderDownloadUrl: "",
|
|
129
129
|
packageName: "logtail",
|
|
130
|
-
packageVersion: "10.14.
|
|
131
|
-
base64Parameter: "
|
|
130
|
+
packageVersion: "10.14.2",
|
|
131
|
+
base64Parameter: "eyJyZW1vdGUiOnsidXJsIjoicmVnaXN0cnkub3BlbnRvZnUub3JnL2JldHRlcnN0YWNraHEvbG9ndGFpbCIsInZlcnNpb24iOiIxMC4xNC4yIn19",
|
|
132
132
|
});
|
|
133
133
|
}
|
|
134
134
|
//# sourceMappingURL=utilities.js.map
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pulumi-logtail",
|
|
3
3
|
"description": "A Pulumi provider for managing Logtail log management and analytics resources, dynamically bridged from the Terraform Logtail provider with support for sources, metrics, and log aggregation.",
|
|
4
|
-
"version": "2.1.
|
|
4
|
+
"version": "2.1.1",
|
|
5
5
|
"homepage": "https://pulumi.khanh.id/docs/providers/logtail",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"async-mutex": "0.5.0"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@pulumi/pulumi": "3.
|
|
25
|
-
"@types/node": "24.13.
|
|
24
|
+
"@pulumi/pulumi": "3.246.0",
|
|
25
|
+
"@types/node": "24.13.2",
|
|
26
26
|
"typescript": "5.9.3"
|
|
27
27
|
},
|
|
28
28
|
"peerDependencies": {
|
|
@@ -54,11 +54,11 @@
|
|
|
54
54
|
"pulumi": {
|
|
55
55
|
"resource": true,
|
|
56
56
|
"name": "terraform-provider",
|
|
57
|
-
"version": "1.1.
|
|
57
|
+
"version": "1.1.4",
|
|
58
58
|
"parameterization": {
|
|
59
59
|
"name": "logtail",
|
|
60
|
-
"version": "10.14.
|
|
61
|
-
"value": "
|
|
60
|
+
"version": "10.14.2",
|
|
61
|
+
"value": "eyJyZW1vdGUiOnsidXJsIjoicmVnaXN0cnkub3BlbnRvZnUub3JnL2JldHRlcnN0YWNraHEvbG9ndGFpbCIsInZlcnNpb24iOiIxMC4xNC4yIn19"
|
|
62
62
|
}
|
|
63
63
|
}
|
|
64
64
|
}
|