@grepr/cli 1.6.27-a43d0a3 → 1.6.29-bea24ac
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.
|
@@ -2709,6 +2709,7 @@ export type webhooks = Record<string, never>;
|
|
|
2709
2709
|
export interface components {
|
|
2710
2710
|
schemas: {
|
|
2711
2711
|
AccessConfig: {
|
|
2712
|
+
/** @default true */
|
|
2712
2713
|
autoSignupEnabled?: boolean;
|
|
2713
2714
|
};
|
|
2714
2715
|
/** @description Base class of all Action Rules */
|
|
@@ -2729,6 +2730,7 @@ export interface components {
|
|
|
2729
2730
|
limit?: number;
|
|
2730
2731
|
/**
|
|
2731
2732
|
* @description Optional filter by log types. If null or empty, matches all log types.
|
|
2733
|
+
* @default []
|
|
2732
2734
|
* @example [
|
|
2733
2735
|
* "INTEGRATION_IMPORT",
|
|
2734
2736
|
* "JOB_EXECUTION"
|
|
@@ -2743,6 +2745,7 @@ export interface components {
|
|
|
2743
2745
|
offset?: number;
|
|
2744
2746
|
/**
|
|
2745
2747
|
* @description Optional resource filters. Multiple filters use OR logic. If null or empty, matches all resources the user has access to (requires system logs permission if no filters specified).
|
|
2748
|
+
* @default []
|
|
2746
2749
|
* @example [
|
|
2747
2750
|
* {
|
|
2748
2751
|
* "resourceId": "int-123",
|
|
@@ -2768,6 +2771,7 @@ export interface components {
|
|
|
2768
2771
|
startTime?: string;
|
|
2769
2772
|
/**
|
|
2770
2773
|
* @description Optional filter by log statuses. If null or empty, matches all log statuses.
|
|
2774
|
+
* @default []
|
|
2771
2775
|
* @example [
|
|
2772
2776
|
* "INFO",
|
|
2773
2777
|
* "ERROR"
|
|
@@ -2776,6 +2780,7 @@ export interface components {
|
|
|
2776
2780
|
statuses?: ActivityLogsSearchStatuses[];
|
|
2777
2781
|
/**
|
|
2778
2782
|
* @description Optional filter by user IDs who triggered the activity. If null or empty, matches all users.
|
|
2783
|
+
* @default []
|
|
2779
2784
|
* @example [
|
|
2780
2785
|
* "user123",
|
|
2781
2786
|
* "user456"
|
|
@@ -2891,7 +2896,10 @@ export interface components {
|
|
|
2891
2896
|
};
|
|
2892
2897
|
/** @description One aggregation function declaration. */
|
|
2893
2898
|
AggregationDecl: {
|
|
2894
|
-
/**
|
|
2899
|
+
/**
|
|
2900
|
+
* @description Function arguments. Heterogeneous; validated at pipeline construction.
|
|
2901
|
+
* @default []
|
|
2902
|
+
*/
|
|
2895
2903
|
args?: Record<string, never>[];
|
|
2896
2904
|
/** @description Output suffix. Omitted = preserve source metric name; in rule conditions the output is addressed as `<alias>.val` (at most one as-less aggregation per block). */
|
|
2897
2905
|
as?: string;
|
|
@@ -2935,6 +2943,7 @@ export interface components {
|
|
|
2935
2943
|
/**
|
|
2936
2944
|
* Child predicates
|
|
2937
2945
|
* @description List of predicates that must all match for this predicate to match.
|
|
2946
|
+
* @default []
|
|
2938
2947
|
*/
|
|
2939
2948
|
queries: components["schemas"]["EventPredicate"][];
|
|
2940
2949
|
/**
|
|
@@ -2946,6 +2955,7 @@ export interface components {
|
|
|
2946
2955
|
AndQueryNode: {
|
|
2947
2956
|
/**
|
|
2948
2957
|
* @description The and query node. This is a list of expressions that are combined with an AND operator.
|
|
2958
|
+
* @default []
|
|
2949
2959
|
* @example [
|
|
2950
2960
|
* "attribute",
|
|
2951
2961
|
* "index=main"
|
|
@@ -2974,7 +2984,10 @@ export interface components {
|
|
|
2974
2984
|
};
|
|
2975
2985
|
/** @description Commitment summary for Annual - Data Processing plans. */
|
|
2976
2986
|
AnnualDataProcessingSummary: {
|
|
2977
|
-
/**
|
|
2987
|
+
/**
|
|
2988
|
+
* @description One row per metric the customer is pre-committed on (e.g. Data Processing GB, Compute Units).
|
|
2989
|
+
* @default []
|
|
2990
|
+
*/
|
|
2978
2991
|
rows: components["schemas"]["MeteredDimensionCommitment"][];
|
|
2979
2992
|
/**
|
|
2980
2993
|
* @description discriminator enum property added by openapi-typescript
|
|
@@ -2984,7 +2997,10 @@ export interface components {
|
|
|
2984
2997
|
};
|
|
2985
2998
|
/** @description Pre-commitment summary for Annual + SaaS plans. */
|
|
2986
2999
|
AnnualSaasPreCommitmentSummary: {
|
|
2987
|
-
/**
|
|
3000
|
+
/**
|
|
3001
|
+
* @description One row per metric the customer is pre-committed on, ordered by the configured displayed brick id list.
|
|
3002
|
+
* @default []
|
|
3003
|
+
*/
|
|
2988
3004
|
rows: components["schemas"]["MeteredDimensionCommitment"][];
|
|
2989
3005
|
/**
|
|
2990
3006
|
* @description discriminator enum property added by openapi-typescript
|
|
@@ -3009,11 +3025,17 @@ export interface components {
|
|
|
3009
3025
|
* @example obj.avg > coh.p90
|
|
3010
3026
|
*/
|
|
3011
3027
|
condition: string;
|
|
3012
|
-
/**
|
|
3028
|
+
/**
|
|
3029
|
+
* @description Alias → aggregation declaration.
|
|
3030
|
+
* @default {}
|
|
3031
|
+
*/
|
|
3013
3032
|
from: {
|
|
3014
3033
|
[key: string]: components["schemas"]["MetricAggregation"];
|
|
3015
3034
|
};
|
|
3016
|
-
/**
|
|
3035
|
+
/**
|
|
3036
|
+
* @description Join expressions linking aliases (Calcite-parsed SQL).
|
|
3037
|
+
* @default []
|
|
3038
|
+
*/
|
|
3017
3039
|
joinOn?: string[];
|
|
3018
3040
|
/**
|
|
3019
3041
|
* @description Unique rule name.
|
|
@@ -3084,6 +3106,7 @@ export interface components {
|
|
|
3084
3106
|
AttributeKeyTermNode: {
|
|
3085
3107
|
/**
|
|
3086
3108
|
* @description The string that is matched against the attribute key.
|
|
3109
|
+
* @default
|
|
3087
3110
|
* @example "app"
|
|
3088
3111
|
*/
|
|
3089
3112
|
attribute: string;
|
|
@@ -3096,11 +3119,13 @@ export interface components {
|
|
|
3096
3119
|
AttributeNode: {
|
|
3097
3120
|
/**
|
|
3098
3121
|
* @description The attribute name
|
|
3122
|
+
* @default
|
|
3099
3123
|
* @example "service"
|
|
3100
3124
|
*/
|
|
3101
3125
|
attribute: string;
|
|
3102
3126
|
/**
|
|
3103
3127
|
* @description The term to match. This is a string that is matched against the attribute.
|
|
3128
|
+
* @default
|
|
3104
3129
|
* @example "grepr-service-1"
|
|
3105
3130
|
*/
|
|
3106
3131
|
term: string;
|
|
@@ -3113,11 +3138,13 @@ export interface components {
|
|
|
3113
3138
|
AttributePrefixNode: {
|
|
3114
3139
|
/**
|
|
3115
3140
|
* @description The attribute name
|
|
3141
|
+
* @default
|
|
3116
3142
|
* @example "service"
|
|
3117
3143
|
*/
|
|
3118
3144
|
attribute: string;
|
|
3119
3145
|
/**
|
|
3120
3146
|
* @description The prefix to match in the attribute.
|
|
3147
|
+
* @default
|
|
3121
3148
|
* @example "grepr-service"
|
|
3122
3149
|
*/
|
|
3123
3150
|
prefix: string;
|
|
@@ -3130,11 +3157,13 @@ export interface components {
|
|
|
3130
3157
|
AttributeRe2Node: {
|
|
3131
3158
|
/**
|
|
3132
3159
|
* @description This is the attribute that is matched against the value of the regex field.
|
|
3160
|
+
* @default
|
|
3133
3161
|
* @example "appName"
|
|
3134
3162
|
*/
|
|
3135
3163
|
attribute: string;
|
|
3136
3164
|
/**
|
|
3137
3165
|
* @description The regex to match. This is a regex string that is matched against the value of the attribute field.
|
|
3166
|
+
* @default
|
|
3138
3167
|
* @example "grepr-service-1.*"
|
|
3139
3168
|
*/
|
|
3140
3169
|
regex: string;
|
|
@@ -3166,6 +3195,7 @@ export interface components {
|
|
|
3166
3195
|
AttributeWildcardNode: {
|
|
3167
3196
|
/**
|
|
3168
3197
|
* @description The attribute name
|
|
3198
|
+
* @default
|
|
3169
3199
|
* @example "service"
|
|
3170
3200
|
*/
|
|
3171
3201
|
attribute: string;
|
|
@@ -3176,6 +3206,7 @@ export interface components {
|
|
|
3176
3206
|
type: AttributeWildcardNodeType;
|
|
3177
3207
|
/**
|
|
3178
3208
|
* @description The term to match. This is a wildcard string that contains wildcards
|
|
3209
|
+
* @default
|
|
3179
3210
|
* @example "grepr-service*"
|
|
3180
3211
|
*/
|
|
3181
3212
|
wildcard: string;
|
|
@@ -3183,17 +3214,20 @@ export interface components {
|
|
|
3183
3214
|
AttributeWithComparatorNode: {
|
|
3184
3215
|
/**
|
|
3185
3216
|
* @description The attribute name
|
|
3217
|
+
* @default
|
|
3186
3218
|
* @example "service"
|
|
3187
3219
|
*/
|
|
3188
3220
|
attribute: string;
|
|
3189
3221
|
/**
|
|
3190
3222
|
* @description The comparator to use for the match.
|
|
3223
|
+
* @default EQUAL
|
|
3191
3224
|
* @example "EQUALS"
|
|
3192
3225
|
* @enum {string}
|
|
3193
3226
|
*/
|
|
3194
3227
|
comparator: AttributeWithComparatorNodeComparator;
|
|
3195
3228
|
/**
|
|
3196
3229
|
* @description The term to match. This is a string that is matched against the attribute.
|
|
3230
|
+
* @default
|
|
3197
3231
|
* @example "grepr-service-1"
|
|
3198
3232
|
*/
|
|
3199
3233
|
term: string;
|
|
@@ -3236,7 +3270,10 @@ export interface components {
|
|
|
3236
3270
|
AvailablePermission: {
|
|
3237
3271
|
/** @description Action being permitted (e.g., view, edit) */
|
|
3238
3272
|
action: string;
|
|
3239
|
-
/**
|
|
3273
|
+
/**
|
|
3274
|
+
* @description The category that the permission belongs to
|
|
3275
|
+
* @default Other
|
|
3276
|
+
*/
|
|
3240
3277
|
category: string;
|
|
3241
3278
|
/** @description Human-readable description of what this permission allows */
|
|
3242
3279
|
description: string;
|
|
@@ -3274,6 +3311,7 @@ export interface components {
|
|
|
3274
3311
|
/**
|
|
3275
3312
|
* Format: int32
|
|
3276
3313
|
* @description Maximum number of logs to backfill. Default and max is 500,000.
|
|
3314
|
+
* @default 500000
|
|
3277
3315
|
* @example 100000
|
|
3278
3316
|
*/
|
|
3279
3317
|
limit?: number;
|
|
@@ -3288,7 +3326,10 @@ export interface components {
|
|
|
3288
3326
|
* @example 1
|
|
3289
3327
|
*/
|
|
3290
3328
|
order?: number;
|
|
3291
|
-
/**
|
|
3329
|
+
/**
|
|
3330
|
+
* @description Specifies the sinks that should be used for the backfill job.
|
|
3331
|
+
* @default []
|
|
3332
|
+
*/
|
|
3292
3333
|
sinkOperations: components["schemas"]["Operation"][];
|
|
3293
3334
|
/**
|
|
3294
3335
|
* @description Backfills data from the raw logs to the configured sink. This action runs an asynch batch job to backfill data from the raw logs table to the configured sink. The back-filled data is also added to the processed logs table to ensure that the same log is not backfilled twice leading to duplicates. The context on what needs to be backfilled is provided by the 'backfillQuery' which will filter logs that will be backfilled. (enum property replaced by openapi-typescript)
|
|
@@ -3300,7 +3341,10 @@ export interface components {
|
|
|
3300
3341
|
BillingPeriodsResponse: {
|
|
3301
3342
|
/** @description Customer display name (e.g. "ACME, Inc."). */
|
|
3302
3343
|
customerName: string;
|
|
3303
|
-
/**
|
|
3344
|
+
/**
|
|
3345
|
+
* @description Reporting periods available for this customer, newest first.
|
|
3346
|
+
* @default []
|
|
3347
|
+
*/
|
|
3304
3348
|
periods: components["schemas"]["PeriodEntry"][];
|
|
3305
3349
|
};
|
|
3306
3350
|
/** @description Plan-specific usage summary. */
|
|
@@ -3355,6 +3399,7 @@ export interface components {
|
|
|
3355
3399
|
CloudTrailLogsFileSource: {
|
|
3356
3400
|
/**
|
|
3357
3401
|
* @description The list of account IDs from which to read logs.
|
|
3402
|
+
* @default []
|
|
3358
3403
|
* @example [
|
|
3359
3404
|
* "123456789012",
|
|
3360
3405
|
* "987654321098"
|
|
@@ -3367,11 +3412,44 @@ export interface components {
|
|
|
3367
3412
|
name: string;
|
|
3368
3413
|
/**
|
|
3369
3414
|
* @description The s3 path under the provided bucket to monitor. Optional.In the case of CloudTrail logs, this is the path to the AWSLogs/ directory.
|
|
3415
|
+
* @default
|
|
3370
3416
|
* @example path/to/monitor
|
|
3371
3417
|
*/
|
|
3372
3418
|
pathPrefix?: string;
|
|
3373
3419
|
/**
|
|
3374
3420
|
* @description The list of regions from which to read logs from. If empty or null, reads logs from all regions.
|
|
3421
|
+
* @default [
|
|
3422
|
+
* "US_EAST_1",
|
|
3423
|
+
* "US_EAST_2",
|
|
3424
|
+
* "US_WEST_1",
|
|
3425
|
+
* "US_WEST_2",
|
|
3426
|
+
* "AF_SOUTH_1",
|
|
3427
|
+
* "AP_EAST_1",
|
|
3428
|
+
* "AP_SOUTH_1",
|
|
3429
|
+
* "AP_SOUTH_2",
|
|
3430
|
+
* "AP_SOUTHEAST_1",
|
|
3431
|
+
* "AP_SOUTHEAST_2",
|
|
3432
|
+
* "AP_SOUTHEAST_3",
|
|
3433
|
+
* "AP_SOUTHEAST_4",
|
|
3434
|
+
* "AP_NORTHEAST_1",
|
|
3435
|
+
* "AP_NORTHEAST_2",
|
|
3436
|
+
* "AP_NORTHEAST_3",
|
|
3437
|
+
* "CA_CENTRAL_1",
|
|
3438
|
+
* "CN_NORTH_1",
|
|
3439
|
+
* "CN_NORTHWEST_1",
|
|
3440
|
+
* "EU_CENTRAL_1",
|
|
3441
|
+
* "EU_CENTRAL_2",
|
|
3442
|
+
* "EU_WEST_1",
|
|
3443
|
+
* "EU_WEST_2",
|
|
3444
|
+
* "EU_WEST_3",
|
|
3445
|
+
* "EU_NORTH_1",
|
|
3446
|
+
* "EU_SOUTH_1",
|
|
3447
|
+
* "EU_SOUTH_2",
|
|
3448
|
+
* "IL_CENTRAL_1",
|
|
3449
|
+
* "ME_CENTRAL_1",
|
|
3450
|
+
* "ME_SOUTH_1",
|
|
3451
|
+
* "SA_EAST_1"
|
|
3452
|
+
* ]
|
|
3375
3453
|
* @example [
|
|
3376
3454
|
* "us-east-1",
|
|
3377
3455
|
* "us-west-2"
|
|
@@ -3395,7 +3473,10 @@ export interface components {
|
|
|
3395
3473
|
};
|
|
3396
3474
|
/** @description One cohort-output entry. */
|
|
3397
3475
|
CohortOutputDecl: {
|
|
3398
|
-
/**
|
|
3476
|
+
/**
|
|
3477
|
+
* @description Aggregations to emit. Null = [{ fn: DEFAULT }].
|
|
3478
|
+
* @default []
|
|
3479
|
+
*/
|
|
3399
3480
|
aggregations?: components["schemas"]["AggregationDecl"][];
|
|
3400
3481
|
selectors?: components["schemas"]["FilterPrimitive"];
|
|
3401
3482
|
};
|
|
@@ -3403,13 +3484,17 @@ export interface components {
|
|
|
3403
3484
|
CohortsConfig: {
|
|
3404
3485
|
/**
|
|
3405
3486
|
* @description Level-prefixed attribute keys that group objects into cohorts.
|
|
3487
|
+
* @default []
|
|
3406
3488
|
* @example [
|
|
3407
3489
|
* "resource.cluster",
|
|
3408
3490
|
* "resource.region"
|
|
3409
3491
|
* ]
|
|
3410
3492
|
*/
|
|
3411
3493
|
identifyingAttributes?: string[];
|
|
3412
|
-
/**
|
|
3494
|
+
/**
|
|
3495
|
+
* @description Level-prefixed attribute keys describing cohorts.
|
|
3496
|
+
* @default []
|
|
3497
|
+
*/
|
|
3413
3498
|
metadataAttributes?: string[];
|
|
3414
3499
|
/**
|
|
3415
3500
|
* Format: int32
|
|
@@ -3418,7 +3503,10 @@ export interface components {
|
|
|
3418
3503
|
* @example 4
|
|
3419
3504
|
*/
|
|
3420
3505
|
numShardBits?: number;
|
|
3421
|
-
/**
|
|
3506
|
+
/**
|
|
3507
|
+
* @description Ordered cohort-output entries (first-match-wins).
|
|
3508
|
+
* @default []
|
|
3509
|
+
*/
|
|
3422
3510
|
outputs?: components["schemas"]["CohortOutputDecl"][];
|
|
3423
3511
|
};
|
|
3424
3512
|
/** @description A complete span with its resource and instrumentation scope context. */
|
|
@@ -3449,6 +3537,7 @@ export interface components {
|
|
|
3449
3537
|
type: CompleteSpanType;
|
|
3450
3538
|
};
|
|
3451
3539
|
CompositeAttributesMergeStrategy: {
|
|
3540
|
+
/** @default [] */
|
|
3452
3541
|
strategies: components["schemas"]["AttributesMergeStrategy"][];
|
|
3453
3542
|
/**
|
|
3454
3543
|
* @description CompositeAttributesMergeStrategy: Applies multiple merge strategies to produce multiple output attributes with suffixed keys. (enum property replaced by openapi-typescript)
|
|
@@ -3485,6 +3574,7 @@ export interface components {
|
|
|
3485
3574
|
* }
|
|
3486
3575
|
*/
|
|
3487
3576
|
Condition: {
|
|
3577
|
+
/** @default [] */
|
|
3488
3578
|
actionRules: components["schemas"]["ActionRule"][];
|
|
3489
3579
|
};
|
|
3490
3580
|
/** @description One conditional branch in the raw log if-else routing ladder. */
|
|
@@ -3530,6 +3620,7 @@ export interface components {
|
|
|
3530
3620
|
CreateJob: {
|
|
3531
3621
|
/**
|
|
3532
3622
|
* @description Execution mode of the job
|
|
3623
|
+
* @default ASYNCHRONOUS
|
|
3533
3624
|
* @example ASYNCHRONOUS
|
|
3534
3625
|
* @enum {string}
|
|
3535
3626
|
*/
|
|
@@ -3542,12 +3633,14 @@ export interface components {
|
|
|
3542
3633
|
name: string;
|
|
3543
3634
|
/**
|
|
3544
3635
|
* @description Processing method of the job
|
|
3636
|
+
* @default STREAMING
|
|
3545
3637
|
* @example STREAMING
|
|
3546
3638
|
* @enum {string}
|
|
3547
3639
|
*/
|
|
3548
3640
|
processing: PathsV1JobsGetParametersQueryProcessing;
|
|
3549
3641
|
/**
|
|
3550
3642
|
* @description Custom tags added to the job for ease of search
|
|
3643
|
+
* @default {}
|
|
3551
3644
|
* @example {
|
|
3552
3645
|
* "env": "dev",
|
|
3553
3646
|
* "type": "logs"
|
|
@@ -3556,7 +3649,10 @@ export interface components {
|
|
|
3556
3649
|
tags?: {
|
|
3557
3650
|
[key: string]: string;
|
|
3558
3651
|
};
|
|
3559
|
-
/**
|
|
3652
|
+
/**
|
|
3653
|
+
* @description The team IDs that this job is associated with.
|
|
3654
|
+
* @default []
|
|
3655
|
+
*/
|
|
3560
3656
|
teamIds?: string[];
|
|
3561
3657
|
};
|
|
3562
3658
|
CreateRole: {
|
|
@@ -3566,6 +3662,7 @@ export interface components {
|
|
|
3566
3662
|
name: string;
|
|
3567
3663
|
/**
|
|
3568
3664
|
* @description Permission IDs to assign to this role
|
|
3665
|
+
* @default []
|
|
3569
3666
|
* @example [
|
|
3570
3667
|
* "perm_001",
|
|
3571
3668
|
* "perm_002"
|
|
@@ -3582,6 +3679,7 @@ export interface components {
|
|
|
3582
3679
|
name: string;
|
|
3583
3680
|
/**
|
|
3584
3681
|
* @description List of role IDs to assign to the service account
|
|
3682
|
+
* @default []
|
|
3585
3683
|
* @example [
|
|
3586
3684
|
* "rol_AlphaNum1234",
|
|
3587
3685
|
* "rol_alphaNum5678"
|
|
@@ -3631,9 +3729,15 @@ export interface components {
|
|
|
3631
3729
|
DailyTable: {
|
|
3632
3730
|
/** @description True when the reporting period contains today. Same semantic as PeriodEntry.current — the last entry of days[] represents an incomplete day, so consumers should mark it as in-progress. */
|
|
3633
3731
|
current?: boolean;
|
|
3634
|
-
/**
|
|
3732
|
+
/**
|
|
3733
|
+
* @description The reporting period's days in ascending order.
|
|
3734
|
+
* @default []
|
|
3735
|
+
*/
|
|
3635
3736
|
days: string[];
|
|
3636
|
-
/**
|
|
3737
|
+
/**
|
|
3738
|
+
* @description One usage series per metered dimension, in display order. Bricks absent from the configured displayed-brick list are skipped.
|
|
3739
|
+
* @default []
|
|
3740
|
+
*/
|
|
3637
3741
|
metrics: components["schemas"]["MeteredDimensionUsage"][];
|
|
3638
3742
|
};
|
|
3639
3743
|
Data: {
|
|
@@ -3655,6 +3759,7 @@ export interface components {
|
|
|
3655
3759
|
Datadog: {
|
|
3656
3760
|
/**
|
|
3657
3761
|
* @description Tags to add when writing data to Datadog
|
|
3762
|
+
* @default []
|
|
3658
3763
|
* @example [
|
|
3659
3764
|
* "tag1:value1",
|
|
3660
3765
|
* "tag2:value2"
|
|
@@ -3682,6 +3787,7 @@ export interface components {
|
|
|
3682
3787
|
};
|
|
3683
3788
|
/**
|
|
3684
3789
|
* @description Filter to apply when reading any data from the Datadog API
|
|
3790
|
+
* @default
|
|
3685
3791
|
* @example service:my-service
|
|
3686
3792
|
*/
|
|
3687
3793
|
filterQuery: string;
|
|
@@ -3704,6 +3810,7 @@ export interface components {
|
|
|
3704
3810
|
validateKeysOnSave?: boolean;
|
|
3705
3811
|
};
|
|
3706
3812
|
DatadogLogAgentSource: {
|
|
3813
|
+
/** @default false */
|
|
3707
3814
|
hostEnrichmentEnabled?: boolean;
|
|
3708
3815
|
/** @description The integration id for the observability vendor. */
|
|
3709
3816
|
integrationId: string;
|
|
@@ -3724,6 +3831,7 @@ export interface components {
|
|
|
3724
3831
|
DatadogLogCloudSource: {
|
|
3725
3832
|
/**
|
|
3726
3833
|
* @description The Datadog query filter to use when reading logs from Datadog. This is concatenated with the one from the integration.
|
|
3834
|
+
* @default
|
|
3727
3835
|
* @example tag1,tag2
|
|
3728
3836
|
*/
|
|
3729
3837
|
filterQuery?: string;
|
|
@@ -3740,6 +3848,7 @@ export interface components {
|
|
|
3740
3848
|
DatadogLogSink: {
|
|
3741
3849
|
/**
|
|
3742
3850
|
* @description Additional tags to add to the logs when writing to Datadog. Gets combined with the integration's additionalTags.
|
|
3851
|
+
* @default []
|
|
3743
3852
|
* @example [
|
|
3744
3853
|
* "additional_tag"
|
|
3745
3854
|
* ]
|
|
@@ -3747,6 +3856,7 @@ export interface components {
|
|
|
3747
3856
|
additionalTags?: string[];
|
|
3748
3857
|
/**
|
|
3749
3858
|
* @description Group by attributes to use when writing logs to Datadog browser intake.Defaults to ["http.useragent", "network.client.ip"].
|
|
3859
|
+
* @default []
|
|
3750
3860
|
* @example [
|
|
3751
3861
|
* "http.useragent",
|
|
3752
3862
|
* "network.client.ip"
|
|
@@ -3784,6 +3894,7 @@ export interface components {
|
|
|
3784
3894
|
DatadogMetricsSink: {
|
|
3785
3895
|
/**
|
|
3786
3896
|
* @description Additional tags to add to the logs when writing to Datadog. Gets combined with the integration's additionalTags.
|
|
3897
|
+
* @default []
|
|
3787
3898
|
* @example [
|
|
3788
3899
|
* "env:dev"
|
|
3789
3900
|
* ]
|
|
@@ -3802,6 +3913,7 @@ export interface components {
|
|
|
3802
3913
|
DatadogQueryPredicate: {
|
|
3803
3914
|
/**
|
|
3804
3915
|
* @description The datadog query used by the predicate. See https://docs.datadoghq.com/tracing/trace_explorer/query_syntax
|
|
3916
|
+
* @default
|
|
3805
3917
|
* @example service:grepr-service-1
|
|
3806
3918
|
*/
|
|
3807
3919
|
query: string;
|
|
@@ -3827,6 +3939,8 @@ export interface components {
|
|
|
3827
3939
|
baselineRate?: number;
|
|
3828
3940
|
/** Format: double */
|
|
3829
3941
|
effectiveThreshold?: number;
|
|
3942
|
+
/** @default true */
|
|
3943
|
+
enabled?: boolean;
|
|
3830
3944
|
/** @description Name of the LLM prompt operator that created this rule. Used to route trigger actions back to the originating prompt. */
|
|
3831
3945
|
originatingLlmPromptOperatorName?: string;
|
|
3832
3946
|
/**
|
|
@@ -3837,6 +3951,7 @@ export interface components {
|
|
|
3837
3951
|
/**
|
|
3838
3952
|
* Format: double
|
|
3839
3953
|
* @description Rate threshold (events/min) above which the rule triggers. If baselineMultiplier and baselineRate are both set, the effective threshold is baselineRate * baselineMultiplier instead.
|
|
3954
|
+
* @default 10
|
|
3840
3955
|
* @example 10
|
|
3841
3956
|
*/
|
|
3842
3957
|
rateThreshold?: number;
|
|
@@ -3853,6 +3968,7 @@ export interface components {
|
|
|
3853
3968
|
DatadogStatsSink: {
|
|
3854
3969
|
/**
|
|
3855
3970
|
* @description Additional tags to add to stats when writing to Datadog. Gets combined with the integration's and global additionalTags.
|
|
3971
|
+
* @default {}
|
|
3856
3972
|
* @example {
|
|
3857
3973
|
* "env": "prod",
|
|
3858
3974
|
* "team": "platform"
|
|
@@ -3897,6 +4013,7 @@ export interface components {
|
|
|
3897
4013
|
DatadogTraceSink: {
|
|
3898
4014
|
/**
|
|
3899
4015
|
* @description Additional attributes to add to traces when writing to Datadog. Gets combined with the integration's additionalAttributes.
|
|
4016
|
+
* @default {}
|
|
3900
4017
|
* @example {
|
|
3901
4018
|
* "env": "prod",
|
|
3902
4019
|
* "team": "platform"
|
|
@@ -3918,7 +4035,10 @@ export interface components {
|
|
|
3918
4035
|
DatasetCreate: {
|
|
3919
4036
|
integrationId: string;
|
|
3920
4037
|
name: string;
|
|
3921
|
-
/**
|
|
4038
|
+
/**
|
|
4039
|
+
* @description The team IDs that this dataset is associated with.
|
|
4040
|
+
* @default []
|
|
4041
|
+
*/
|
|
3922
4042
|
teamIds?: string[];
|
|
3923
4043
|
};
|
|
3924
4044
|
DatasetEstimationConfig: {
|
|
@@ -3944,7 +4064,7 @@ export interface components {
|
|
|
3944
4064
|
/**
|
|
3945
4065
|
* Format: ISO-8601
|
|
3946
4066
|
* @description How often to recalculate impact percentages. ISO-8601 duration format.
|
|
3947
|
-
* @default
|
|
4067
|
+
* @default PT168H
|
|
3948
4068
|
* @example PT20.345S
|
|
3949
4069
|
*/
|
|
3950
4070
|
refreshPeriod: string;
|
|
@@ -3956,20 +4076,32 @@ export interface components {
|
|
|
3956
4076
|
integrationId: string;
|
|
3957
4077
|
name: string;
|
|
3958
4078
|
organizationId: string;
|
|
3959
|
-
/**
|
|
4079
|
+
/**
|
|
4080
|
+
* @description Per-table configuration overrides, keyed by table key (e.g. logs_raw). Absent entries use system defaults.
|
|
4081
|
+
* @default {}
|
|
4082
|
+
*/
|
|
3960
4083
|
tables?: {
|
|
3961
4084
|
[key: string]: components["schemas"]["TableConfig"];
|
|
3962
4085
|
};
|
|
3963
|
-
/**
|
|
4086
|
+
/**
|
|
4087
|
+
* @description The team IDs that this dataset is associated with.
|
|
4088
|
+
* @default []
|
|
4089
|
+
*/
|
|
3964
4090
|
teamIds?: string[];
|
|
3965
4091
|
};
|
|
3966
4092
|
DatasetUpdate: {
|
|
3967
4093
|
name: string;
|
|
3968
|
-
/**
|
|
4094
|
+
/**
|
|
4095
|
+
* @description Per-table configuration overrides. Read-only here; use /datasets/{id}/{tableKey}/config to mutate.
|
|
4096
|
+
* @default {}
|
|
4097
|
+
*/
|
|
3969
4098
|
tables?: {
|
|
3970
4099
|
[key: string]: components["schemas"]["TableConfig"];
|
|
3971
4100
|
};
|
|
3972
|
-
/**
|
|
4101
|
+
/**
|
|
4102
|
+
* @description The team IDs that this dataset is associated with.
|
|
4103
|
+
* @default []
|
|
4104
|
+
*/
|
|
3973
4105
|
teamIds?: string[];
|
|
3974
4106
|
};
|
|
3975
4107
|
/** @description Sink that discards all of its input. */
|
|
@@ -4005,6 +4137,7 @@ export interface components {
|
|
|
4005
4137
|
DropRule: {
|
|
4006
4138
|
/**
|
|
4007
4139
|
* @description Level-prefixed attribute key → glob pattern. All entries must match.
|
|
4140
|
+
* @default {}
|
|
4008
4141
|
* @example {
|
|
4009
4142
|
* "resource.test": "true"
|
|
4010
4143
|
* }
|
|
@@ -4041,7 +4174,9 @@ export interface components {
|
|
|
4041
4174
|
* @example 50
|
|
4042
4175
|
*/
|
|
4043
4176
|
capacity?: number;
|
|
4177
|
+
/** @default [] */
|
|
4044
4178
|
entityAttributes?: string[];
|
|
4179
|
+
/** @default [] */
|
|
4045
4180
|
entityTags?: string[];
|
|
4046
4181
|
/**
|
|
4047
4182
|
* @description The LLM integration ID (Gemini or OpenAI).
|
|
@@ -4125,6 +4260,7 @@ export interface components {
|
|
|
4125
4260
|
* @example logs-prod
|
|
4126
4261
|
*/
|
|
4127
4262
|
datasetName: string;
|
|
4263
|
+
/** @default [] */
|
|
4128
4264
|
pipelines: components["schemas"]["PipelineRef"][];
|
|
4129
4265
|
};
|
|
4130
4266
|
/** @description Base class of all Event Actions */
|
|
@@ -4136,6 +4272,7 @@ export interface components {
|
|
|
4136
4272
|
actionPredicate: components["schemas"]["EventPredicate"];
|
|
4137
4273
|
/**
|
|
4138
4274
|
* @description Actions to take on a matching event.
|
|
4275
|
+
* @default []
|
|
4139
4276
|
* @example [
|
|
4140
4277
|
* {
|
|
4141
4278
|
* "tagKey": "hosts",
|
|
@@ -4180,6 +4317,7 @@ export interface components {
|
|
|
4180
4317
|
EventPredicateTrigger: {
|
|
4181
4318
|
/**
|
|
4182
4319
|
* @description The ids for the conditions that are activated by this trigger.
|
|
4320
|
+
* @default []
|
|
4183
4321
|
* @example [
|
|
4184
4322
|
* "condition-1",
|
|
4185
4323
|
* "condition-2"
|
|
@@ -4200,6 +4338,7 @@ export interface components {
|
|
|
4200
4338
|
type: EventPredicateTriggerType;
|
|
4201
4339
|
/**
|
|
4202
4340
|
* @description Map from variable names to paths for variables to extract from a matching event. If starting with '@', the path indicates an attribute. Otherwise, it's a tag. The variable names must start with '__' and be unique. Note that __timestamp (and __severity for logs) variable is automatically extracted from the respective top level fields of the matching event.
|
|
4341
|
+
* @default {}
|
|
4203
4342
|
* @example {
|
|
4204
4343
|
* "__variable1": "tag1",
|
|
4205
4344
|
* "__variable2": "@attribute1"
|
|
@@ -4230,6 +4369,7 @@ export interface components {
|
|
|
4230
4369
|
ExternalSourceTrigger: {
|
|
4231
4370
|
/**
|
|
4232
4371
|
* @description The ids for the conditions that are activated by this trigger.
|
|
4372
|
+
* @default []
|
|
4233
4373
|
* @example [
|
|
4234
4374
|
* "condition-1, condition-2"
|
|
4235
4375
|
* ]
|
|
@@ -4291,6 +4431,7 @@ export interface components {
|
|
|
4291
4431
|
FilterPrimitive: {
|
|
4292
4432
|
/**
|
|
4293
4433
|
* @description Level-prefixed attribute key → glob pattern. All entries must match.
|
|
4434
|
+
* @default {}
|
|
4294
4435
|
* @example {
|
|
4295
4436
|
* "resource.env": "prod"
|
|
4296
4437
|
* }
|
|
@@ -4320,6 +4461,7 @@ export interface components {
|
|
|
4320
4461
|
GreprJobGraph: {
|
|
4321
4462
|
/**
|
|
4322
4463
|
* @description Edges that connect the vertices of the Grepr job graph
|
|
4464
|
+
* @default []
|
|
4323
4465
|
* @example [
|
|
4324
4466
|
* "source -> sink"
|
|
4325
4467
|
* ]
|
|
@@ -4327,6 +4469,7 @@ export interface components {
|
|
|
4327
4469
|
edges: string[];
|
|
4328
4470
|
/**
|
|
4329
4471
|
* @description Operations that make up the vertices of the Grepr job graph
|
|
4472
|
+
* @default []
|
|
4330
4473
|
* @example [
|
|
4331
4474
|
* {
|
|
4332
4475
|
* "end": "2024-08-07T22:05:07Z",
|
|
@@ -4375,6 +4518,7 @@ export interface components {
|
|
|
4375
4518
|
query: components["schemas"]["query"];
|
|
4376
4519
|
/**
|
|
4377
4520
|
* @description The order in which the rows should be sorted by
|
|
4521
|
+
* @default ASCENDING
|
|
4378
4522
|
* @enum {string}
|
|
4379
4523
|
*/
|
|
4380
4524
|
sortOrder?: GreprLlmPromptResultsSourceSortOrder;
|
|
@@ -4414,7 +4558,10 @@ export interface components {
|
|
|
4414
4558
|
additionalTags?: {
|
|
4415
4559
|
[key: string]: string[];
|
|
4416
4560
|
};
|
|
4417
|
-
/**
|
|
4561
|
+
/**
|
|
4562
|
+
* @description The list of metrics to load. Will load all possible metrics if nothing is specified
|
|
4563
|
+
* @default []
|
|
4564
|
+
*/
|
|
4418
4565
|
metrics?: GreprMetricsSourceMetrics[];
|
|
4419
4566
|
/** @example operation_name */
|
|
4420
4567
|
name: string;
|
|
@@ -4450,6 +4597,7 @@ export interface components {
|
|
|
4450
4597
|
query: components["schemas"]["query"];
|
|
4451
4598
|
/**
|
|
4452
4599
|
* @description The order in which the rows should be sorted by
|
|
4600
|
+
* @default ASCENDING
|
|
4453
4601
|
* @enum {string}
|
|
4454
4602
|
*/
|
|
4455
4603
|
sortOrder?: GreprLlmPromptResultsSourceSortOrder;
|
|
@@ -4508,11 +4656,13 @@ export interface components {
|
|
|
4508
4656
|
/**
|
|
4509
4657
|
* Format: ISO-8601
|
|
4510
4658
|
* @description The interval used by the Log Reducer for the query. Uses ISO 8601 format for intervals.
|
|
4659
|
+
* @default PT2M
|
|
4511
4660
|
* @example PT20.345S
|
|
4512
4661
|
*/
|
|
4513
4662
|
reductionInterval: string;
|
|
4514
4663
|
/**
|
|
4515
4664
|
* @description The order in which the rows should be sorted by
|
|
4665
|
+
* @default ASCENDING
|
|
4516
4666
|
* @enum {string}
|
|
4517
4667
|
*/
|
|
4518
4668
|
sortOrder?: GreprLlmPromptResultsSourceSortOrder;
|
|
@@ -4569,6 +4719,7 @@ export interface components {
|
|
|
4569
4719
|
grokParser: components["schemas"]["GrokParser"];
|
|
4570
4720
|
/**
|
|
4571
4721
|
* @description Log sample to parse using the provided Grok rules.
|
|
4722
|
+
* @default []
|
|
4572
4723
|
* @example john id:12345 connected on 11/08/2017 on server XYZ in production
|
|
4573
4724
|
*/
|
|
4574
4725
|
logSamples: string[];
|
|
@@ -4577,6 +4728,7 @@ export interface components {
|
|
|
4577
4728
|
results?: components["schemas"]["GrokParseResponse"][];
|
|
4578
4729
|
};
|
|
4579
4730
|
GrokParseErrors: {
|
|
4731
|
+
/** @default [] */
|
|
4580
4732
|
errors: components["schemas"]["GrokRuleErrors"][];
|
|
4581
4733
|
};
|
|
4582
4734
|
GrokParseRequest: {
|
|
@@ -4639,6 +4791,7 @@ export interface components {
|
|
|
4639
4791
|
/** @description Optional attribute to extract. Does nothing if it does not refer to a string attribute */
|
|
4640
4792
|
extractAttribute?: string;
|
|
4641
4793
|
/**
|
|
4794
|
+
* @default []
|
|
4642
4795
|
* @example [
|
|
4643
4796
|
* "user %{word:user.name} id:%{integer:user.id}",
|
|
4644
4797
|
* "connection connected on %{date(\"MM/dd/yyyy\"):connect_date}",
|
|
@@ -4648,6 +4801,7 @@ export interface components {
|
|
|
4648
4801
|
grokHelperRules?: string[];
|
|
4649
4802
|
/**
|
|
4650
4803
|
* @description The Grok parser enriches log events by parsing unstructured text into structured attributes.
|
|
4804
|
+
* @default []
|
|
4651
4805
|
* @example [
|
|
4652
4806
|
* "MyParsingRule %{user} %{connection} %{server}"
|
|
4653
4807
|
* ]
|
|
@@ -4663,12 +4817,15 @@ export interface components {
|
|
|
4663
4817
|
type: GrokParserType;
|
|
4664
4818
|
};
|
|
4665
4819
|
GrokRuleError: {
|
|
4820
|
+
/** @default */
|
|
4666
4821
|
message?: string;
|
|
4667
4822
|
/** Format: int32 */
|
|
4668
4823
|
position?: number;
|
|
4669
4824
|
};
|
|
4670
4825
|
GrokRuleErrors: {
|
|
4826
|
+
/** @default */
|
|
4671
4827
|
rule?: string;
|
|
4828
|
+
/** @default [] */
|
|
4672
4829
|
ruleErrors?: components["schemas"]["GrokRuleError"][];
|
|
4673
4830
|
};
|
|
4674
4831
|
/** @description Predicate that determines whether a span matches a head sampling rule. */
|
|
@@ -4730,6 +4887,7 @@ export interface components {
|
|
|
4730
4887
|
query: components["schemas"]["query"];
|
|
4731
4888
|
/**
|
|
4732
4889
|
* @description The order in which the rows should be sorted by
|
|
4890
|
+
* @default ASCENDING
|
|
4733
4891
|
* @enum {string}
|
|
4734
4892
|
*/
|
|
4735
4893
|
sortOrder?: GreprLlmPromptResultsSourceSortOrder;
|
|
@@ -4802,6 +4960,7 @@ export interface components {
|
|
|
4802
4960
|
* @example 0n1fhg95fhgp2
|
|
4803
4961
|
*/
|
|
4804
4962
|
datasetId?: string;
|
|
4963
|
+
/** @default [] */
|
|
4805
4964
|
ids?: string[];
|
|
4806
4965
|
/**
|
|
4807
4966
|
* Integration ID
|
|
@@ -4871,73 +5030,99 @@ export interface components {
|
|
|
4871
5030
|
};
|
|
4872
5031
|
Invitee: {
|
|
4873
5032
|
email?: string;
|
|
4874
|
-
/**
|
|
5033
|
+
/**
|
|
5034
|
+
* @description Role IDs assigned to the invitation
|
|
5035
|
+
* @default []
|
|
5036
|
+
*/
|
|
4875
5037
|
roleIds?: string[];
|
|
4876
|
-
/**
|
|
5038
|
+
/**
|
|
5039
|
+
* @description Team-specific role assignments
|
|
5040
|
+
* @default []
|
|
5041
|
+
*/
|
|
4877
5042
|
teamAssignments?: components["schemas"]["TeamAssignment"][];
|
|
4878
5043
|
};
|
|
4879
5044
|
ItemsCollectionLogEvent: {
|
|
5045
|
+
/** @default [] */
|
|
4880
5046
|
items?: components["schemas"]["LogEvent"][];
|
|
4881
5047
|
};
|
|
4882
5048
|
ItemsCollectionReadAnthropic: {
|
|
5049
|
+
/** @default [] */
|
|
4883
5050
|
items?: components["schemas"]["ReadAnthropic"][];
|
|
4884
5051
|
};
|
|
4885
5052
|
ItemsCollectionReadDataWarehouse: {
|
|
5053
|
+
/** @default [] */
|
|
4886
5054
|
items?: components["schemas"]["ReadDataWarehouse"][];
|
|
4887
5055
|
};
|
|
4888
5056
|
ItemsCollectionReadDatadog: {
|
|
5057
|
+
/** @default [] */
|
|
4889
5058
|
items?: components["schemas"]["ReadDatadog"][];
|
|
4890
5059
|
};
|
|
4891
5060
|
ItemsCollectionReadDatadogMcp: {
|
|
5061
|
+
/** @default [] */
|
|
4892
5062
|
items?: components["schemas"]["ReadDatadogMcp"][];
|
|
4893
5063
|
};
|
|
4894
5064
|
ItemsCollectionReadGemini: {
|
|
5065
|
+
/** @default [] */
|
|
4895
5066
|
items?: components["schemas"]["ReadGemini"][];
|
|
4896
5067
|
};
|
|
4897
5068
|
ItemsCollectionReadInvitation: {
|
|
5069
|
+
/** @default [] */
|
|
4898
5070
|
items?: components["schemas"]["ReadInvitation"][];
|
|
4899
5071
|
};
|
|
4900
5072
|
ItemsCollectionReadJob: {
|
|
4901
5073
|
items?: components["schemas"]["ReadJob"][];
|
|
4902
5074
|
};
|
|
4903
5075
|
ItemsCollectionReadJobSignal: {
|
|
5076
|
+
/** @default [] */
|
|
4904
5077
|
items?: components["schemas"]["ReadJobSignal"][];
|
|
4905
5078
|
};
|
|
4906
5079
|
ItemsCollectionReadNewRelic: {
|
|
5080
|
+
/** @default [] */
|
|
4907
5081
|
items?: components["schemas"]["ReadNewRelic"][];
|
|
4908
5082
|
};
|
|
4909
5083
|
ItemsCollectionReadOpenAi: {
|
|
5084
|
+
/** @default [] */
|
|
4910
5085
|
items?: components["schemas"]["ReadOpenAi"][];
|
|
4911
5086
|
};
|
|
4912
5087
|
ItemsCollectionReadOtlp: {
|
|
5088
|
+
/** @default [] */
|
|
4913
5089
|
items?: components["schemas"]["ReadOtlp"][];
|
|
4914
5090
|
};
|
|
4915
5091
|
ItemsCollectionReadPagerDutyMcp: {
|
|
5092
|
+
/** @default [] */
|
|
4916
5093
|
items?: components["schemas"]["ReadPagerDutyMcp"][];
|
|
4917
5094
|
};
|
|
4918
5095
|
ItemsCollectionReadS3DataWarehouse: {
|
|
5096
|
+
/** @default [] */
|
|
4919
5097
|
items?: components["schemas"]["ReadS3DataWarehouse"][];
|
|
4920
5098
|
};
|
|
4921
5099
|
ItemsCollectionReadS3VectorIndex: {
|
|
5100
|
+
/** @default [] */
|
|
4922
5101
|
items?: components["schemas"]["ReadS3VectorIndex"][];
|
|
4923
5102
|
};
|
|
4924
5103
|
ItemsCollectionReadSplunk: {
|
|
5104
|
+
/** @default [] */
|
|
4925
5105
|
items?: components["schemas"]["ReadSplunk"][];
|
|
4926
5106
|
};
|
|
4927
5107
|
ItemsCollectionReadSumo: {
|
|
5108
|
+
/** @default [] */
|
|
4928
5109
|
items?: components["schemas"]["ReadSumo"][];
|
|
4929
5110
|
};
|
|
4930
5111
|
ItemsCollectionReadUser: {
|
|
5112
|
+
/** @default [] */
|
|
4931
5113
|
items?: components["schemas"]["ReadUser"][];
|
|
4932
5114
|
};
|
|
4933
5115
|
ItemsCollectionServiceAccountRead: {
|
|
5116
|
+
/** @default [] */
|
|
4934
5117
|
items?: components["schemas"]["ServiceAccountRead"][];
|
|
4935
5118
|
};
|
|
4936
5119
|
ItemsCollectionTemplate: {
|
|
5120
|
+
/** @default [] */
|
|
4937
5121
|
items?: components["schemas"]["Template"][];
|
|
4938
5122
|
};
|
|
4939
5123
|
/** @description Collection of vendor imported exceptions */
|
|
4940
5124
|
ItemsCollectionVendorImportedException: {
|
|
5125
|
+
/** @default [] */
|
|
4941
5126
|
items?: components["schemas"]["VendorImportedException"][];
|
|
4942
5127
|
};
|
|
4943
5128
|
/** @description Base class of all Job Actions */
|
|
@@ -4947,6 +5132,7 @@ export interface components {
|
|
|
4947
5132
|
order?: number;
|
|
4948
5133
|
} & components["schemas"]["BackfillJobAction"];
|
|
4949
5134
|
JobActionRule: {
|
|
5135
|
+
/** @default [] */
|
|
4950
5136
|
actions?: components["schemas"]["JobAction"][];
|
|
4951
5137
|
/**
|
|
4952
5138
|
* @description This takes job actions when the rule is triggered. (enum property replaced by openapi-typescript)
|
|
@@ -5052,6 +5238,7 @@ export interface components {
|
|
|
5052
5238
|
LegacyDatadogMetricsSink: {
|
|
5053
5239
|
/**
|
|
5054
5240
|
* @description Additional tags to add to the metrics when writing to Datadog. Gets combined with the integration's additionalTags.
|
|
5241
|
+
* @default []
|
|
5055
5242
|
* @example [
|
|
5056
5243
|
* "env:dev"
|
|
5057
5244
|
* ]
|
|
@@ -5083,6 +5270,7 @@ export interface components {
|
|
|
5083
5270
|
model: string;
|
|
5084
5271
|
/**
|
|
5085
5272
|
* @description Provider-specific configuration. For OPENAI, may include 'baseUrl'. For GEMINI, may include 'projectId'.
|
|
5273
|
+
* @default {}
|
|
5086
5274
|
* @example {
|
|
5087
5275
|
* "baseUrl": "https://api.openai.com/v1"
|
|
5088
5276
|
* }
|
|
@@ -5101,13 +5289,17 @@ export interface components {
|
|
|
5101
5289
|
LlmPrompt: {
|
|
5102
5290
|
/**
|
|
5103
5291
|
* @description Rule types that the LLM can produce as output. When non-empty, the LLM output schema is augmented with a 'rules' field describing the available rule type schemas. Rules returned by the LLM are parsed and persisted to the LogRulesApplication operator for dynamic per-pattern rule application.
|
|
5292
|
+
* @default []
|
|
5104
5293
|
* @example [
|
|
5105
5294
|
* "masking",
|
|
5106
5295
|
* "time-series"
|
|
5107
5296
|
* ]
|
|
5108
5297
|
*/
|
|
5109
5298
|
availableRuleTypes?: string[];
|
|
5110
|
-
/**
|
|
5299
|
+
/**
|
|
5300
|
+
* @description MCP tool integrations available for the LLM to invoke as terminal actions. Each entry references an integration that exposes MCP-compatible tools.
|
|
5301
|
+
* @default []
|
|
5302
|
+
*/
|
|
5111
5303
|
availableTools?: components["schemas"]["LlmToolConfig"][];
|
|
5112
5304
|
/**
|
|
5113
5305
|
* Format: int32
|
|
@@ -5133,6 +5325,7 @@ export interface components {
|
|
|
5133
5325
|
name: string;
|
|
5134
5326
|
/**
|
|
5135
5327
|
* @description Controls where LLM-enriched events are routed after processing. Multiple actions can be combined.
|
|
5328
|
+
* @default []
|
|
5136
5329
|
* @example [
|
|
5137
5330
|
* "FORWARD_TO_SINKS"
|
|
5138
5331
|
* ]
|
|
@@ -5196,6 +5389,7 @@ export interface components {
|
|
|
5196
5389
|
query: components["schemas"]["query"];
|
|
5197
5390
|
/**
|
|
5198
5391
|
* @description The order in which the rows should be sorted by
|
|
5392
|
+
* @default ASCENDING
|
|
5199
5393
|
* @enum {string}
|
|
5200
5394
|
*/
|
|
5201
5395
|
sortOrder?: GreprLlmPromptResultsSourceSortOrder;
|
|
@@ -5237,7 +5431,10 @@ export interface components {
|
|
|
5237
5431
|
/** @description Configuration for the LLM workflow strategy. */
|
|
5238
5432
|
LlmWorkflowConfig: components["schemas"]["Simple"] | components["schemas"]["Rag"];
|
|
5239
5433
|
LogAttributesRemapper: {
|
|
5240
|
-
/**
|
|
5434
|
+
/**
|
|
5435
|
+
* @description List of attribute-to-attribute remapping rules. Each rule moves the value from a source attribute path to a target attribute path, removing the source unless the rule's preserveSource flag is set. An optional predicate filter controls when each rule is applied.
|
|
5436
|
+
* @default []
|
|
5437
|
+
*/
|
|
5241
5438
|
attributeRemappingRules?: components["schemas"]["AttributeRemappingRule"][];
|
|
5242
5439
|
/**
|
|
5243
5440
|
* @description When true, preserves the source host attribute after remapping instead of removing it. Defaults to true (source is preserved).
|
|
@@ -5263,9 +5460,11 @@ export interface components {
|
|
|
5263
5460
|
/**
|
|
5264
5461
|
* @description Attributes to search for host values
|
|
5265
5462
|
* @default [
|
|
5266
|
-
* "
|
|
5463
|
+
* "host",
|
|
5267
5464
|
* "hostname",
|
|
5268
|
-
* "syslog.hostname"
|
|
5465
|
+
* "syslog.hostname",
|
|
5466
|
+
* "kubernetes.host",
|
|
5467
|
+
* "sourceIPAddress"
|
|
5269
5468
|
* ]
|
|
5270
5469
|
*/
|
|
5271
5470
|
hostReservedAttributes?: string[];
|
|
@@ -5336,7 +5535,8 @@ export interface components {
|
|
|
5336
5535
|
* "kubernetes.labels.app",
|
|
5337
5536
|
* "labels.app",
|
|
5338
5537
|
* "kubernetes.labels.k8s-app",
|
|
5339
|
-
* "labels.k8s-app"
|
|
5538
|
+
* "labels.k8s-app",
|
|
5539
|
+
* "eventSource"
|
|
5340
5540
|
* ]
|
|
5341
5541
|
*/
|
|
5342
5542
|
serviceReservedAttributes?: string[];
|
|
@@ -5368,22 +5568,34 @@ export interface components {
|
|
|
5368
5568
|
* ]
|
|
5369
5569
|
*/
|
|
5370
5570
|
statusReservedAttributes?: string[];
|
|
5371
|
-
/**
|
|
5571
|
+
/**
|
|
5572
|
+
* @description Map from tag key to an ordered list of attribute paths to search for values. All paths will be tried, and all found values will be added. If no value is found, the tag will not be changed. The attribute paths are a list of paths. This does not remove existing tag values.
|
|
5573
|
+
* @default {}
|
|
5574
|
+
*/
|
|
5372
5575
|
tagMappingPaths?: {
|
|
5373
5576
|
[key: string]: string[][];
|
|
5374
5577
|
};
|
|
5375
|
-
/**
|
|
5578
|
+
/**
|
|
5579
|
+
* @description Map from tag key to an ordered list of attribute paths to search for values. All paths will be tried, and all found values will be added. If no value is found, the tag will not be changed. The attribute paths are dot-separated. This does not remove existing tag values.
|
|
5580
|
+
* @default {}
|
|
5581
|
+
*/
|
|
5376
5582
|
tagMappings?: {
|
|
5377
5583
|
[key: string]: string[];
|
|
5378
5584
|
};
|
|
5379
|
-
/**
|
|
5585
|
+
/**
|
|
5586
|
+
* @description Possible locations of a map of string to string or to collection of strings that has tags. Added to tags, without replacement.
|
|
5587
|
+
* @default []
|
|
5588
|
+
*/
|
|
5380
5589
|
tagMappingsLocationPaths?: string[][];
|
|
5381
5590
|
/**
|
|
5382
5591
|
* @description When true, preserves the source tag map location attributes after remapping instead of removing them. Defaults to false (source is removed after remapping).
|
|
5383
5592
|
* @default false
|
|
5384
5593
|
*/
|
|
5385
5594
|
tagMappingsLocationPreserveSource?: boolean;
|
|
5386
|
-
/**
|
|
5595
|
+
/**
|
|
5596
|
+
* @description Possible locations of a map of string to string or to collection of strings that has tags. Added to tags, without replacement.
|
|
5597
|
+
* @default []
|
|
5598
|
+
*/
|
|
5387
5599
|
tagMappingsLocations?: string[];
|
|
5388
5600
|
/**
|
|
5389
5601
|
* @description When true, preserves the source tag mappings attributes after remapping instead of removing them. Defaults to false (source is removed).
|
|
@@ -5441,7 +5653,8 @@ export interface components {
|
|
|
5441
5653
|
* @description Attributes to search for traceId values
|
|
5442
5654
|
* @default [
|
|
5443
5655
|
* "dd.trace_id",
|
|
5444
|
-
* "contextMap.dd.trace_id"
|
|
5656
|
+
* "contextMap.dd.trace_id",
|
|
5657
|
+
* "otelTraceID"
|
|
5445
5658
|
* ]
|
|
5446
5659
|
*/
|
|
5447
5660
|
traceIdReservedAttributes?: string[];
|
|
@@ -5500,6 +5713,7 @@ export interface components {
|
|
|
5500
5713
|
/**
|
|
5501
5714
|
* Attributes merge strategy entries
|
|
5502
5715
|
* @description List of attribute paths and their corresponding merge strategies. If no strategy is defined for a path, the terminal merge strategy will be used.
|
|
5716
|
+
* @default []
|
|
5503
5717
|
*/
|
|
5504
5718
|
attributeMergeStrategyEntries?: components["schemas"]["AttributesMergeStrategyEntry"][];
|
|
5505
5719
|
/**
|
|
@@ -5514,7 +5728,38 @@ export interface components {
|
|
|
5514
5728
|
/**
|
|
5515
5729
|
* Token delimiters
|
|
5516
5730
|
* @description Characters to use for splitting tokens. Default is missing '@' to avoid splitting email addresses. Also missing '.' to avoid splitting identifiers using it.
|
|
5517
|
-
* @default [
|
|
5731
|
+
* @default [
|
|
5732
|
+
* ":",
|
|
5733
|
+
* "#",
|
|
5734
|
+
* "[",
|
|
5735
|
+
* "]",
|
|
5736
|
+
* "(",
|
|
5737
|
+
* ")",
|
|
5738
|
+
* "{",
|
|
5739
|
+
* "}",
|
|
5740
|
+
* "|",
|
|
5741
|
+
* ",",
|
|
5742
|
+
* ";",
|
|
5743
|
+
* "\"",
|
|
5744
|
+
* "'",
|
|
5745
|
+
* " ",
|
|
5746
|
+
* "\t",
|
|
5747
|
+
* "\n",
|
|
5748
|
+
* "\r",
|
|
5749
|
+
* "&",
|
|
5750
|
+
* "=",
|
|
5751
|
+
* "?",
|
|
5752
|
+
* "!",
|
|
5753
|
+
* "+",
|
|
5754
|
+
* "*",
|
|
5755
|
+
* "/",
|
|
5756
|
+
* "<",
|
|
5757
|
+
* ">",
|
|
5758
|
+
* "%",
|
|
5759
|
+
* "^",
|
|
5760
|
+
* "~",
|
|
5761
|
+
* "`"
|
|
5762
|
+
* ]
|
|
5518
5763
|
* @example [":", "#", "[", "]", "(", ")", "{", "}", "|", ",", ";", """, "'", " ", "\t", "\n", "\r"]
|
|
5519
5764
|
*/
|
|
5520
5765
|
delimiters: string[];
|
|
@@ -5544,6 +5789,7 @@ export interface components {
|
|
|
5544
5789
|
/**
|
|
5545
5790
|
* Vendor imported exceptions
|
|
5546
5791
|
* @description Exception configs that define which exceptions to use from the ones imported from the observability vendor integrations.
|
|
5792
|
+
* @default []
|
|
5547
5793
|
* @example {
|
|
5548
5794
|
* "autoSync": true,
|
|
5549
5795
|
* "ids": [
|
|
@@ -5557,6 +5803,7 @@ export interface components {
|
|
|
5557
5803
|
/**
|
|
5558
5804
|
* Event predicate
|
|
5559
5805
|
* @description Predicate for skipping events. Logs matching these predicates won't be aggregated.
|
|
5806
|
+
* @default []
|
|
5560
5807
|
* @example {
|
|
5561
5808
|
* "query": "status:error",
|
|
5562
5809
|
* "type": "datadog-query"
|
|
@@ -5566,7 +5813,32 @@ export interface components {
|
|
|
5566
5813
|
/**
|
|
5567
5814
|
* Masks
|
|
5568
5815
|
* @description Set of masks that can be applied to messages before tokenizing them. These masks are specified as pairs of (name, regex). The default masks are: ipport, timestamp, uuid, number, awsarn, awstoken.
|
|
5569
|
-
* @default [
|
|
5816
|
+
* @default [
|
|
5817
|
+
* [
|
|
5818
|
+
* "ipport",
|
|
5819
|
+
* "(?:\\d{1,3}\\.){3}\\d{1,3}(?::\\d{1,5})?"
|
|
5820
|
+
* ],
|
|
5821
|
+
* [
|
|
5822
|
+
* "timestamp",
|
|
5823
|
+
* "(?:(?:\\d{4}-\\d{2}-\\d{2}(?:T|\\s)\\d{2}:\\d{2}:\\d{2}(?:[.,]\\d{1,12})?(?:Z|(?:[\\+\\-]\\d{2}:?\\d{2})|\\sUTC)?)|(?:\\d{1,4}/\\d{1,2}/\\d{1,4}(,?\\s\\d{1,2}:\\d{2}:\\d{1,2}(?:[.,]\\d{1,12})?(?:\\s?(?:[AP]M))?)?)|(?:\\d{1,2}:\\d{2}:\\d{1,2}(?:[.,]\\d{1,12})?(?:\\s?(?:[AP]M))?)|(?:\\d{2}/[A-Za-z]{3}/\\d{4}(?:[:\\s]\\d{2}:\\d{2}:\\d{2}(?:\\s\\+[0-9]{4})?)?))"
|
|
5824
|
+
* ],
|
|
5825
|
+
* [
|
|
5826
|
+
* "uuid",
|
|
5827
|
+
* "(?:^|(?<!\\w))(?:[a-fA-F0-9]{8}[-,_,:]?[a-fA-F0-9]{4}[-,_,:]?[a-fA-F0-9]{4}[-,_,:]?[a-fA-F0-9]{4}[-,_,:]?[a-fA-F0-9]{12})(?:(?!\\w)|$)"
|
|
5828
|
+
* ],
|
|
5829
|
+
* [
|
|
5830
|
+
* "number",
|
|
5831
|
+
* "(?:^|(?<!\\w))(?:(?:0x[a-fA-F0-9]{1,100})|(?:[\\-\\+]?(?>(?:(?:\\d{1,100})?(?:\\.\\d{1,100})(?:[eE][\\-\\+]?\\d{1,100}))|(?:(?:\\d{1,100})?(?:\\.\\d{1,100}))|(?:\\d{1,100}))))(?:(?!\\w)|$)"
|
|
5832
|
+
* ],
|
|
5833
|
+
* [
|
|
5834
|
+
* "awsarn",
|
|
5835
|
+
* "arn:aws(?:-[a-z]+-[a-z]+)?:[a-zA-Z0-9-]+:(?:[a-z0-9-]+:)?(?:[0-9]{12})?:[a-zA-Z0-9-_./]+(?::[a-zA-Z0-9-_./]+)*"
|
|
5836
|
+
* ],
|
|
5837
|
+
* [
|
|
5838
|
+
* "awstoken",
|
|
5839
|
+
* "(?:IQoJb3JpZ2luX[A-Za-z0-9+/]{10,20})[A-Za-z0-9+/]{800,1100}"
|
|
5840
|
+
* ]
|
|
5841
|
+
* ]
|
|
5570
5842
|
* @example [["ipport", "(?:\d{1,3}\.){3}\d{1,3}(?::\d{1,5})?"],["timestamp", "(?:(?:\d{4}-\d{2}-\d{2}(?:T|\s)\d{2}:\d{2}:\d{2}(?:[.,]\d{1,12})?(?:Z|(?:[\+\-]\d{2}:?\d{2})|\sUTC)?)|(?:\d{1,4}/\d{1,2}/\d{1,4}(,?\s\d{1,2}:\d{2}:\d{1,2}(?:[.,]\d{1,12})?(?:\s?(?:[AP]M))?)?)|(?:\d{1,2}:\d{2}:\d{1,2}(?:[.,]\d{1,12})?(?:\s?(?:[AP]M))?)|(?:\d{2}/[A-Za-z]{3}/\d{4}(?:[:\s]\d{2}:\d{2}:\d{2}(?:\s\+[0-9]{4})?)?))"],["uuid", "(?:^|(?<!\w))(?:[a-fA-F0-9]{8}[-,_,:]?[a-fA-F0-9]{4}[-,_,:]?[a-fA-F0-9]{4}[-,_,:]?[a-fA-F0-9]{4}[-,_,:]?[a-fA-F0-9]{12})(?:(?!\w)|$)"],["number", "(?:^|(?<!\w))(?:(?:0x[a-fA-F0-9]{1,100})|(?:[\-\+]?(?>(?:(?:\d{1,100})?(?:\.\d{1,100})(?:[eE][\-\+]?\d{1,100}))|(?:(?:\d{1,100})?(?:\.\d{1,100}))|(?:\d{1,100}))))(?:(?!\w)|$)"],["awsarn", "arn:aws(?:-[a-z]+-[a-z]+)?:[a-zA-Z0-9-]+:(?:[a-z0-9-]+:)?(?:[0-9]{12})?:[a-zA-Z0-9-_./]+(?::[a-zA-Z0-9-_./]+)*"],["awstoken", "(?:IQoJb3JpZ2luX[A-Za-z0-9+/]{10,20})[A-Za-z0-9+/]{800,1100}"]]
|
|
5571
5843
|
*/
|
|
5572
5844
|
masks: string[][];
|
|
@@ -5575,6 +5847,7 @@ export interface components {
|
|
|
5575
5847
|
/**
|
|
5576
5848
|
* Grouping by attribute paths (array format)
|
|
5577
5849
|
* @description Attribute paths as arrays of keys. Use for unambiguous nested vs flat attributes. Example: [["user", "id"]] for nested user.id, [["user.id"]] for flat attribute named 'user.id'
|
|
5850
|
+
* @default []
|
|
5578
5851
|
* @example [
|
|
5579
5852
|
* [
|
|
5580
5853
|
* "user",
|
|
@@ -5586,12 +5859,14 @@ export interface components {
|
|
|
5586
5859
|
* ]
|
|
5587
5860
|
*/
|
|
5588
5861
|
partitionByAttributePaths?: string[][];
|
|
5862
|
+
/** @default [] */
|
|
5589
5863
|
partitionByAttributes?: string[];
|
|
5864
|
+
/** @default [] */
|
|
5590
5865
|
partitionByTags?: string[];
|
|
5591
5866
|
/**
|
|
5592
5867
|
* Format: ISO-8601
|
|
5593
5868
|
* @description Time window in which logs are considered for deduplication. Should not be modified without explicit guidance.
|
|
5594
|
-
* @default
|
|
5869
|
+
* @default PT2M
|
|
5595
5870
|
* @example PT20.345S
|
|
5596
5871
|
*/
|
|
5597
5872
|
reductionTimeWindow?: string;
|
|
@@ -5649,11 +5924,17 @@ export interface components {
|
|
|
5649
5924
|
sqlOperations?: components["schemas"]["SqlOperations"];
|
|
5650
5925
|
};
|
|
5651
5926
|
LogRulesApplication: {
|
|
5652
|
-
/**
|
|
5927
|
+
/**
|
|
5928
|
+
* @description Global rules applied to all log events regardless of pattern (e.g., log-based alert rules).
|
|
5929
|
+
* @default []
|
|
5930
|
+
*/
|
|
5653
5931
|
globalRules?: components["schemas"]["PatternRuleConfig"][];
|
|
5654
5932
|
/** @example operation_name */
|
|
5655
5933
|
name: string;
|
|
5656
|
-
/**
|
|
5934
|
+
/**
|
|
5935
|
+
* @description Per-pattern rules keyed by pattern ID (TSID string).
|
|
5936
|
+
* @default {}
|
|
5937
|
+
*/
|
|
5657
5938
|
rules?: {
|
|
5658
5939
|
[key: string]: components["schemas"]["PatternRuleConfig"][];
|
|
5659
5940
|
};
|
|
@@ -5666,6 +5947,7 @@ export interface components {
|
|
|
5666
5947
|
LogTransformAction: {
|
|
5667
5948
|
/** @example operation_name */
|
|
5668
5949
|
name: string;
|
|
5950
|
+
/** @default [] */
|
|
5669
5951
|
transforms?: components["schemas"]["EventAction"][];
|
|
5670
5952
|
/**
|
|
5671
5953
|
* @description Applies transformations to log events. (enum property replaced by openapi-typescript)
|
|
@@ -5699,6 +5981,7 @@ export interface components {
|
|
|
5699
5981
|
query: components["schemas"]["query"];
|
|
5700
5982
|
/**
|
|
5701
5983
|
* @description The order in which the rows should be sorted by
|
|
5984
|
+
* @default ASCENDING
|
|
5702
5985
|
* @enum {string}
|
|
5703
5986
|
*/
|
|
5704
5987
|
sortOrder?: GreprLlmPromptResultsSourceSortOrder;
|
|
@@ -5724,6 +6007,7 @@ export interface components {
|
|
|
5724
6007
|
variables?: {
|
|
5725
6008
|
[key: string]: components["schemas"]["Any"];
|
|
5726
6009
|
};
|
|
6010
|
+
/** @default [] */
|
|
5727
6011
|
vendorSinkIntegrationIds?: string[];
|
|
5728
6012
|
};
|
|
5729
6013
|
LogsBranch: {
|
|
@@ -5824,6 +6108,7 @@ export interface components {
|
|
|
5824
6108
|
query: components["schemas"]["query"];
|
|
5825
6109
|
/**
|
|
5826
6110
|
* @description The order in which the rows should be sorted by
|
|
6111
|
+
* @default ASCENDING
|
|
5827
6112
|
* @enum {string}
|
|
5828
6113
|
*/
|
|
5829
6114
|
sortOrder?: GreprLlmPromptResultsSourceSortOrder;
|
|
@@ -5853,6 +6138,7 @@ export interface components {
|
|
|
5853
6138
|
LogsRuleEngine: {
|
|
5854
6139
|
/**
|
|
5855
6140
|
* @description Map of condition Id to condition objects. The ids are a unique name for the conditions.
|
|
6141
|
+
* @default {}
|
|
5856
6142
|
* @example {
|
|
5857
6143
|
* "condition-1": {
|
|
5858
6144
|
* "actionRules": [
|
|
@@ -5886,6 +6172,7 @@ export interface components {
|
|
|
5886
6172
|
name: string;
|
|
5887
6173
|
/**
|
|
5888
6174
|
* @description Map of trigger Id to trigger objects. The ids are a unique name for the trigger.
|
|
6175
|
+
* @default {}
|
|
5889
6176
|
* @example {
|
|
5890
6177
|
* "trigger-1": {
|
|
5891
6178
|
* "type": "event-predicate",
|
|
@@ -5929,7 +6216,10 @@ export interface components {
|
|
|
5929
6216
|
* @enum {string}
|
|
5930
6217
|
*/
|
|
5931
6218
|
type: LogsValuesSourceType;
|
|
5932
|
-
/**
|
|
6219
|
+
/**
|
|
6220
|
+
* @description List of log events to be generated by the source.
|
|
6221
|
+
* @default []
|
|
6222
|
+
*/
|
|
5933
6223
|
values?: components["schemas"]["LogEvent"][];
|
|
5934
6224
|
};
|
|
5935
6225
|
Manifest: {
|
|
@@ -5942,6 +6232,9 @@ export interface components {
|
|
|
5942
6232
|
};
|
|
5943
6233
|
/** @description Masking rule that scrubs PII from log messages using regex patterns. */
|
|
5944
6234
|
MaskingRuleConfig: Omit<components["schemas"]["PatternRuleConfig"], "type"> & {
|
|
6235
|
+
/** @default true */
|
|
6236
|
+
enabled?: boolean;
|
|
6237
|
+
/** @default [] */
|
|
5945
6238
|
masks: components["schemas"]["MaskEntry"][];
|
|
5946
6239
|
} & {
|
|
5947
6240
|
/**
|
|
@@ -5998,6 +6291,7 @@ export interface components {
|
|
|
5998
6291
|
MessageExactMatchNode: {
|
|
5999
6292
|
/**
|
|
6000
6293
|
* @description The exact message value to match.
|
|
6294
|
+
* @default
|
|
6001
6295
|
* @example "this is an exact message"
|
|
6002
6296
|
*/
|
|
6003
6297
|
exactValue: string;
|
|
@@ -6048,6 +6342,7 @@ export interface components {
|
|
|
6048
6342
|
MessageNode: {
|
|
6049
6343
|
/**
|
|
6050
6344
|
* @description The message term to match.
|
|
6345
|
+
* @default
|
|
6051
6346
|
* @example word
|
|
6052
6347
|
*/
|
|
6053
6348
|
term: string;
|
|
@@ -6060,6 +6355,7 @@ export interface components {
|
|
|
6060
6355
|
MessagePrefixNode: {
|
|
6061
6356
|
/**
|
|
6062
6357
|
* @description The prefix to match a message.
|
|
6358
|
+
* @default
|
|
6063
6359
|
* @example "sample message prefix"
|
|
6064
6360
|
*/
|
|
6065
6361
|
prefix: string;
|
|
@@ -6072,6 +6368,7 @@ export interface components {
|
|
|
6072
6368
|
MessageRe2Node: {
|
|
6073
6369
|
/**
|
|
6074
6370
|
* @description The regex to match. This is a regex string that is matched against the message.
|
|
6371
|
+
* @default
|
|
6075
6372
|
* @example "grepr-service-1.*"
|
|
6076
6373
|
*/
|
|
6077
6374
|
regex: string;
|
|
@@ -6089,6 +6386,7 @@ export interface components {
|
|
|
6089
6386
|
type: MessageWildcardNodeType;
|
|
6090
6387
|
/**
|
|
6091
6388
|
* @description The message with wildcard to match. This is a string that is matched against the message.
|
|
6389
|
+
* @default
|
|
6092
6390
|
* @example "grepr-service-1*"
|
|
6093
6391
|
*/
|
|
6094
6392
|
wildcard: string;
|
|
@@ -6106,7 +6404,10 @@ export interface components {
|
|
|
6106
6404
|
};
|
|
6107
6405
|
/** @description One metered dimension's daily usage and period totals. */
|
|
6108
6406
|
MeteredDimensionUsage: {
|
|
6109
|
-
/**
|
|
6407
|
+
/**
|
|
6408
|
+
* @description Per-day usage counts.
|
|
6409
|
+
* @default []
|
|
6410
|
+
*/
|
|
6110
6411
|
dailyValues: number[];
|
|
6111
6412
|
/** @description Display label for the metered dimension. */
|
|
6112
6413
|
label: string;
|
|
@@ -6121,6 +6422,7 @@ export interface components {
|
|
|
6121
6422
|
MetricAggSpec: {
|
|
6122
6423
|
/**
|
|
6123
6424
|
* @description The tags to group the results by. If unspecified, all series are grouped together. Only applicable when spaceAggregation is set.
|
|
6425
|
+
* @default []
|
|
6124
6426
|
* @example [
|
|
6125
6427
|
* "service",
|
|
6126
6428
|
* "env"
|
|
@@ -6148,11 +6450,15 @@ export interface components {
|
|
|
6148
6450
|
};
|
|
6149
6451
|
/** @description One aggregation declaration inside an anomaly rule. */
|
|
6150
6452
|
MetricAggregation: {
|
|
6151
|
-
/**
|
|
6453
|
+
/**
|
|
6454
|
+
* @description Aggregations to emit. Null = dimension view.
|
|
6455
|
+
* @default []
|
|
6456
|
+
*/
|
|
6152
6457
|
aggregations?: components["schemas"]["AggregationDecl"][];
|
|
6153
6458
|
filters?: components["schemas"]["FilterPrimitive"];
|
|
6154
6459
|
/**
|
|
6155
6460
|
* @description Group-by tokens: 'object', 'cohort', 'series', or a level-prefixed attribute path. Empty list = global aggregation.
|
|
6461
|
+
* @default []
|
|
6156
6462
|
* @example [
|
|
6157
6463
|
* "object",
|
|
6158
6464
|
* "cohort"
|
|
@@ -6199,6 +6505,7 @@ export interface components {
|
|
|
6199
6505
|
};
|
|
6200
6506
|
/**
|
|
6201
6507
|
* @description The names of the metrics to query. Must not be empty.
|
|
6508
|
+
* @default []
|
|
6202
6509
|
* @example [
|
|
6203
6510
|
* "cpu.load",
|
|
6204
6511
|
* "cpu.utilization"
|
|
@@ -6215,18 +6522,30 @@ export interface components {
|
|
|
6215
6522
|
/** @description Glob-pattern filter on metric names. */
|
|
6216
6523
|
MetricNameFilter: {
|
|
6217
6524
|
empty?: boolean;
|
|
6218
|
-
/**
|
|
6525
|
+
/**
|
|
6526
|
+
* @description Glob patterns to exclude. Precedence over includes.
|
|
6527
|
+
* @default []
|
|
6528
|
+
*/
|
|
6219
6529
|
excludes?: string[];
|
|
6220
|
-
/**
|
|
6530
|
+
/**
|
|
6531
|
+
* @description Glob patterns to include. Empty list matches all.
|
|
6532
|
+
* @default []
|
|
6533
|
+
*/
|
|
6221
6534
|
includes?: string[];
|
|
6222
6535
|
};
|
|
6223
6536
|
/** @description Reduces metric volume by aggregating per-object time series into per-cohort summaries while preserving the original signal when anomaly rules fire. Series that don't belong to a monitored object flow through unchanged; series matching a drop rule are discarded. */
|
|
6224
6537
|
MetricReducer: {
|
|
6225
|
-
/**
|
|
6538
|
+
/**
|
|
6539
|
+
* @description Anomaly rules.
|
|
6540
|
+
* @default []
|
|
6541
|
+
*/
|
|
6226
6542
|
anomalies?: components["schemas"]["AnomalyConfig"][];
|
|
6227
6543
|
anomalyActions?: components["schemas"]["AnomalyActions"];
|
|
6228
6544
|
cohorts?: components["schemas"]["CohortsConfig"];
|
|
6229
|
-
/**
|
|
6545
|
+
/**
|
|
6546
|
+
* @description Drop rules — matching series are discarded outright.
|
|
6547
|
+
* @default []
|
|
6548
|
+
*/
|
|
6230
6549
|
dropRules?: components["schemas"]["DropRule"][];
|
|
6231
6550
|
/**
|
|
6232
6551
|
* Format: ISO-8601
|
|
@@ -6247,6 +6566,7 @@ export interface components {
|
|
|
6247
6566
|
objects: components["schemas"]["ObjectsConfig"];
|
|
6248
6567
|
/**
|
|
6249
6568
|
* @description Per-metric-name overrides for space (cross-object) aggregation.
|
|
6569
|
+
* @default {}
|
|
6250
6570
|
* @example {
|
|
6251
6571
|
* "system.cpu.utilization": "AVG"
|
|
6252
6572
|
* }
|
|
@@ -6299,6 +6619,7 @@ export interface components {
|
|
|
6299
6619
|
query: components["schemas"]["query"];
|
|
6300
6620
|
/**
|
|
6301
6621
|
* @description The order in which the rows should be sorted by
|
|
6622
|
+
* @default ASCENDING
|
|
6302
6623
|
* @enum {string}
|
|
6303
6624
|
*/
|
|
6304
6625
|
sortOrder?: GreprLlmPromptResultsSourceSortOrder;
|
|
@@ -6421,6 +6742,7 @@ export interface components {
|
|
|
6421
6742
|
NewRelicLogSink: {
|
|
6422
6743
|
/**
|
|
6423
6744
|
* @description Additional attributes to add to the logs when writing to New Relic. Gets combined with the integration's additionalAttributes.
|
|
6745
|
+
* @default {}
|
|
6424
6746
|
* @example {
|
|
6425
6747
|
* "processor": "grepr"
|
|
6426
6748
|
* }
|
|
@@ -6441,6 +6763,7 @@ export interface components {
|
|
|
6441
6763
|
NewRelicQueryPredicate: {
|
|
6442
6764
|
/**
|
|
6443
6765
|
* @description The New Relic query used by the predicate. See https://docs.newrelic.com/docs/logs/ui-data/query-syntax-logs/
|
|
6766
|
+
* @default
|
|
6444
6767
|
* @example service:grepr-service-1
|
|
6445
6768
|
*/
|
|
6446
6769
|
query: string;
|
|
@@ -6461,6 +6784,7 @@ export interface components {
|
|
|
6461
6784
|
NrqlQueryPredicate: {
|
|
6462
6785
|
/**
|
|
6463
6786
|
* @description The Nrql query used by the predicate. See https://docs.newrelic.com/docs/nrql
|
|
6787
|
+
* @default
|
|
6464
6788
|
* @example SELECT * FROM Log WHERE service = 'grepr-service-1'
|
|
6465
6789
|
*/
|
|
6466
6790
|
query: string;
|
|
@@ -6493,6 +6817,7 @@ export interface components {
|
|
|
6493
6817
|
ObjectsConfig: {
|
|
6494
6818
|
/**
|
|
6495
6819
|
* @description Level-prefixed attribute keys that identify an object. Each key must have a 'resource.', 'scope.', or 'series.' prefix.
|
|
6820
|
+
* @default []
|
|
6496
6821
|
* @example [
|
|
6497
6822
|
* "resource.host.id"
|
|
6498
6823
|
* ]
|
|
@@ -6500,6 +6825,7 @@ export interface components {
|
|
|
6500
6825
|
identifyingAttributes: string[];
|
|
6501
6826
|
/**
|
|
6502
6827
|
* @description Level-prefixed attribute keys that describe an object but may change.
|
|
6828
|
+
* @default []
|
|
6503
6829
|
* @example [
|
|
6504
6830
|
* "resource.os.version"
|
|
6505
6831
|
* ]
|
|
@@ -6551,6 +6877,7 @@ export interface components {
|
|
|
6551
6877
|
OrQueryNode: {
|
|
6552
6878
|
/**
|
|
6553
6879
|
* @description This is a list of expressions that are combined with an OR operator.
|
|
6880
|
+
* @default []
|
|
6554
6881
|
* @example [
|
|
6555
6882
|
* "message1",
|
|
6556
6883
|
* "message2"
|
|
@@ -6567,6 +6894,7 @@ export interface components {
|
|
|
6567
6894
|
Otlp: {
|
|
6568
6895
|
/**
|
|
6569
6896
|
* @description Headers whose values are dynamically extracted from log event attributes. Each mapping specifies a header name and the attribute path to read the value from.
|
|
6897
|
+
* @default []
|
|
6570
6898
|
* @example [
|
|
6571
6899
|
* {
|
|
6572
6900
|
* "attributePath": [
|
|
@@ -6659,6 +6987,7 @@ export interface components {
|
|
|
6659
6987
|
OtlpLogSink: {
|
|
6660
6988
|
/**
|
|
6661
6989
|
* @description Additional attributes to add to the logs when writing to OTLP destination. Gets combined with the integration's additionalAttributes.
|
|
6990
|
+
* @default {}
|
|
6662
6991
|
* @example {
|
|
6663
6992
|
* "processor": "grepr"
|
|
6664
6993
|
* }
|
|
@@ -6696,6 +7025,7 @@ export interface components {
|
|
|
6696
7025
|
OtlpTraceSink: {
|
|
6697
7026
|
/**
|
|
6698
7027
|
* @description Additional attributes to add to the logs when writing to OTLP destination. Gets combined with the integration's additionalAttributes.
|
|
7028
|
+
* @default {}
|
|
6699
7029
|
* @example {
|
|
6700
7030
|
* "processor": "grepr"
|
|
6701
7031
|
* }
|
|
@@ -6755,7 +7085,10 @@ export interface components {
|
|
|
6755
7085
|
};
|
|
6756
7086
|
/** @description User-chosen partition layout. */
|
|
6757
7087
|
PartitionConfig: {
|
|
6758
|
-
/**
|
|
7088
|
+
/**
|
|
7089
|
+
* @description User-chosen partition fields applied in order.
|
|
7090
|
+
* @default []
|
|
7091
|
+
*/
|
|
6759
7092
|
fields: components["schemas"]["PartitionFieldConfig"][];
|
|
6760
7093
|
};
|
|
6761
7094
|
/** @description User-chosen partition fields applied in order. */
|
|
@@ -6787,6 +7120,38 @@ export interface components {
|
|
|
6787
7120
|
/**
|
|
6788
7121
|
* Token delimiters
|
|
6789
7122
|
* @description Characters to use for splitting tokens.
|
|
7123
|
+
* @default [
|
|
7124
|
+
* ":",
|
|
7125
|
+
* "#",
|
|
7126
|
+
* "[",
|
|
7127
|
+
* "]",
|
|
7128
|
+
* "(",
|
|
7129
|
+
* ")",
|
|
7130
|
+
* "{",
|
|
7131
|
+
* "}",
|
|
7132
|
+
* "|",
|
|
7133
|
+
* ",",
|
|
7134
|
+
* ";",
|
|
7135
|
+
* "\"",
|
|
7136
|
+
* "'",
|
|
7137
|
+
* " ",
|
|
7138
|
+
* "\t",
|
|
7139
|
+
* "\n",
|
|
7140
|
+
* "\r",
|
|
7141
|
+
* "&",
|
|
7142
|
+
* "=",
|
|
7143
|
+
* "?",
|
|
7144
|
+
* "!",
|
|
7145
|
+
* "+",
|
|
7146
|
+
* "*",
|
|
7147
|
+
* "/",
|
|
7148
|
+
* "<",
|
|
7149
|
+
* ">",
|
|
7150
|
+
* "%",
|
|
7151
|
+
* "^",
|
|
7152
|
+
* "~",
|
|
7153
|
+
* "`"
|
|
7154
|
+
* ]
|
|
6790
7155
|
*/
|
|
6791
7156
|
delimiters: string[];
|
|
6792
7157
|
/**
|
|
@@ -6815,7 +7180,32 @@ export interface components {
|
|
|
6815
7180
|
/**
|
|
6816
7181
|
* Masks
|
|
6817
7182
|
* @description Set of masks that can be applied to messages before tokenizing them. These masks are specified as pairs of (name, regex).
|
|
6818
|
-
* @default [
|
|
7183
|
+
* @default [
|
|
7184
|
+
* [
|
|
7185
|
+
* "ipport",
|
|
7186
|
+
* "(?:\\d{1,3}\\.){3}\\d{1,3}(?::\\d{1,5})?"
|
|
7187
|
+
* ],
|
|
7188
|
+
* [
|
|
7189
|
+
* "timestamp",
|
|
7190
|
+
* "(?:(?:\\d{4}-\\d{2}-\\d{2}(?:T|\\s)\\d{2}:\\d{2}:\\d{2}(?:[.,]\\d{1,12})?(?:Z|(?:[\\+\\-]\\d{2}:?\\d{2})|\\sUTC)?)|(?:\\d{1,4}/\\d{1,2}/\\d{1,4}(,?\\s\\d{1,2}:\\d{2}:\\d{1,2}(?:[.,]\\d{1,12})?(?:\\s?(?:[AP]M))?)?)|(?:\\d{1,2}:\\d{2}:\\d{1,2}(?:[.,]\\d{1,12})?(?:\\s?(?:[AP]M))?)|(?:\\d{2}/[A-Za-z]{3}/\\d{4}(?:[:\\s]\\d{2}:\\d{2}:\\d{2}(?:\\s\\+[0-9]{4})?)?))"
|
|
7191
|
+
* ],
|
|
7192
|
+
* [
|
|
7193
|
+
* "uuid",
|
|
7194
|
+
* "(?:^|(?<!\\w))(?:[a-fA-F0-9]{8}[-,_,:]?[a-fA-F0-9]{4}[-,_,:]?[a-fA-F0-9]{4}[-,_,:]?[a-fA-F0-9]{4}[-,_,:]?[a-fA-F0-9]{12})(?:(?!\\w)|$)"
|
|
7195
|
+
* ],
|
|
7196
|
+
* [
|
|
7197
|
+
* "number",
|
|
7198
|
+
* "(?:^|(?<!\\w))(?:(?:0x[a-fA-F0-9]{1,100})|(?:[\\-\\+]?(?>(?:(?:\\d{1,100})?(?:\\.\\d{1,100})(?:[eE][\\-\\+]?\\d{1,100}))|(?:(?:\\d{1,100})?(?:\\.\\d{1,100}))|(?:\\d{1,100}))))(?:(?!\\w)|$)"
|
|
7199
|
+
* ],
|
|
7200
|
+
* [
|
|
7201
|
+
* "awsarn",
|
|
7202
|
+
* "arn:aws(?:-[a-z]+-[a-z]+)?:[a-zA-Z0-9-]+:(?:[a-z0-9-]+:)?(?:[0-9]{12})?:[a-zA-Z0-9-_./]+(?::[a-zA-Z0-9-_./]+)*"
|
|
7203
|
+
* ],
|
|
7204
|
+
* [
|
|
7205
|
+
* "awstoken",
|
|
7206
|
+
* "(?:IQoJb3JpZ2luX[A-Za-z0-9+/]{10,20})[A-Za-z0-9+/]{800,1100}"
|
|
7207
|
+
* ]
|
|
7208
|
+
* ]
|
|
6819
7209
|
* @example [["ipport", "(?:\d{1,3}\.){3}\d{1,3}(?::\d{1,5})?"],["timestamp", "(?:(?:\d{4}-\d{2}-\d{2}(?:T|\s)\d{2}:\d{2}:\d{2}(?:[.,]\d{1,12})?(?:Z|(?:[\+\-]\d{2}:?\d{2})|\sUTC)?)|(?:\d{1,4}/\d{1,2}/\d{1,4}(,?\s\d{1,2}:\d{2}:\d{1,2}(?:[.,]\d{1,12})?(?:\s?(?:[AP]M))?)?)|(?:\d{1,2}:\d{2}:\d{1,2}(?:[.,]\d{1,12})?(?:\s?(?:[AP]M))?)|(?:\d{2}/[A-Za-z]{3}/\d{4}(?:[:\s]\d{2}:\d{2}:\d{2}(?:\s\+[0-9]{4})?)?))"],["uuid", "(?:^|(?<!\w))(?:[a-fA-F0-9]{8}[-,_,:]?[a-fA-F0-9]{4}[-,_,:]?[a-fA-F0-9]{4}[-,_,:]?[a-fA-F0-9]{4}[-,_,:]?[a-fA-F0-9]{12})(?:(?!\w)|$)"],["number", "(?:^|(?<!\w))(?:(?:0x[a-fA-F0-9]{1,100})|(?:[\-\+]?(?>(?:(?:\d{1,100})?(?:\.\d{1,100})(?:[eE][\-\+]?\d{1,100}))|(?:(?:\d{1,100})?(?:\.\d{1,100}))|(?:\d{1,100}))))(?:(?!\w)|$)"],["awsarn", "arn:aws(?:-[a-z]+-[a-z]+)?:[a-zA-Z0-9-]+:(?:[a-z0-9-]+:)?(?:[0-9]{12})?:[a-zA-Z0-9-_./]+(?::[a-zA-Z0-9-_./]+)*"],["awstoken", "(?:IQoJb3JpZ2luX[A-Za-z0-9+/]{10,20})[A-Za-z0-9+/]{800,1100}"]]
|
|
6820
7210
|
*/
|
|
6821
7211
|
masks: string[][];
|
|
@@ -6824,6 +7214,7 @@ export interface components {
|
|
|
6824
7214
|
/**
|
|
6825
7215
|
* Partition by attribute paths (array format)
|
|
6826
7216
|
* @description Attribute paths as arrays of keys. Use for unambiguous nested vs flat attributes. Example: [["user", "id"]] for nested user.id, [["user.id"]] for flat attribute named 'user.id'
|
|
7217
|
+
* @default []
|
|
6827
7218
|
* @example [
|
|
6828
7219
|
* [
|
|
6829
7220
|
* "user",
|
|
@@ -6835,7 +7226,9 @@ export interface components {
|
|
|
6835
7226
|
* ]
|
|
6836
7227
|
*/
|
|
6837
7228
|
partitionByAttributePaths?: string[][];
|
|
7229
|
+
/** @default [] */
|
|
6838
7230
|
partitionByAttributes?: string[];
|
|
7231
|
+
/** @default [] */
|
|
6839
7232
|
partitionByTags?: string[];
|
|
6840
7233
|
/**
|
|
6841
7234
|
* Similarity threshold
|
|
@@ -6887,6 +7280,7 @@ export interface components {
|
|
|
6887
7280
|
PhraseNode: {
|
|
6888
7281
|
/**
|
|
6889
7282
|
* @description The terms in a phrase to match
|
|
7283
|
+
* @default []
|
|
6890
7284
|
* @example [
|
|
6891
7285
|
* "grepr-service-1",
|
|
6892
7286
|
* "grepr-service-2"
|
|
@@ -7043,6 +7437,7 @@ export interface components {
|
|
|
7043
7437
|
sessionToken: string;
|
|
7044
7438
|
};
|
|
7045
7439
|
QueryParsingError: {
|
|
7440
|
+
/** @default */
|
|
7046
7441
|
message: string;
|
|
7047
7442
|
};
|
|
7048
7443
|
QueryResult: {
|
|
@@ -7061,6 +7456,7 @@ export interface components {
|
|
|
7061
7456
|
embeddingIntegrationId: string;
|
|
7062
7457
|
/**
|
|
7063
7458
|
* @description Event field references to store as filterable metadata on each vector and used to filter retrieval at query time. Values prefixed with '@' are resolved from event attributes; values without '@' are resolved from event tags. The metadata key is the bare field name (without '@'). Total filterable metadata per vector is limited to 2048 bytes.
|
|
7459
|
+
* @default []
|
|
7064
7460
|
* @example [
|
|
7065
7461
|
* "service",
|
|
7066
7462
|
* "@product_id"
|
|
@@ -7103,6 +7499,7 @@ export interface components {
|
|
|
7103
7499
|
Read: {
|
|
7104
7500
|
accessConfig: components["schemas"]["AccessConfig"];
|
|
7105
7501
|
constraints: components["schemas"]["ReadOrgConstraints"];
|
|
7502
|
+
/** @default [] */
|
|
7106
7503
|
featureFlags?: ReadFeatureFlags[];
|
|
7107
7504
|
name: string;
|
|
7108
7505
|
plan: components["schemas"]["Plan"];
|
|
@@ -7303,9 +7700,15 @@ export interface components {
|
|
|
7303
7700
|
id?: string;
|
|
7304
7701
|
inviteeEmail?: string;
|
|
7305
7702
|
inviterName?: string;
|
|
7306
|
-
/**
|
|
7703
|
+
/**
|
|
7704
|
+
* @description Role IDs assigned to the invitation
|
|
7705
|
+
* @default []
|
|
7706
|
+
*/
|
|
7307
7707
|
roleIds?: string[];
|
|
7308
|
-
/**
|
|
7708
|
+
/**
|
|
7709
|
+
* @description Team-specific role assignments
|
|
7710
|
+
* @default []
|
|
7711
|
+
*/
|
|
7309
7712
|
teamAssignments?: components["schemas"]["TeamAssignment"][];
|
|
7310
7713
|
};
|
|
7311
7714
|
/** @description Attributes of the Grepr Job */
|
|
@@ -7317,6 +7720,7 @@ export interface components {
|
|
|
7317
7720
|
createdAt: string;
|
|
7318
7721
|
/**
|
|
7319
7722
|
* @description Desired state of the job
|
|
7723
|
+
* @default RUNNING
|
|
7320
7724
|
* @enum {string}
|
|
7321
7725
|
*/
|
|
7322
7726
|
desiredState: PathsV1JobsGetParametersQueryState;
|
|
@@ -7329,6 +7733,7 @@ export interface components {
|
|
|
7329
7733
|
endedAt?: string;
|
|
7330
7734
|
/**
|
|
7331
7735
|
* @description Execution mode of the job
|
|
7736
|
+
* @default ASYNCHRONOUS
|
|
7332
7737
|
* @enum {string}
|
|
7333
7738
|
*/
|
|
7334
7739
|
execution: PathsV1JobsGetParametersQueryExecution;
|
|
@@ -7353,6 +7758,7 @@ export interface components {
|
|
|
7353
7758
|
pipelineStatus?: components["schemas"]["PipelineStatus"];
|
|
7354
7759
|
/**
|
|
7355
7760
|
* @description Processing method of the job
|
|
7761
|
+
* @default STREAMING
|
|
7356
7762
|
* @enum {string}
|
|
7357
7763
|
*/
|
|
7358
7764
|
processing: PathsV1JobsGetParametersQueryProcessing;
|
|
@@ -7363,14 +7769,21 @@ export interface components {
|
|
|
7363
7769
|
startedAt?: string;
|
|
7364
7770
|
/**
|
|
7365
7771
|
* @description State of the job
|
|
7772
|
+
* @default STARTING
|
|
7366
7773
|
* @enum {string}
|
|
7367
7774
|
*/
|
|
7368
7775
|
state: PathsV1JobsGetParametersQueryState;
|
|
7369
|
-
/**
|
|
7776
|
+
/**
|
|
7777
|
+
* @description Custom tags attached to the job for ease of search
|
|
7778
|
+
* @default {}
|
|
7779
|
+
*/
|
|
7370
7780
|
tags: {
|
|
7371
7781
|
[key: string]: string;
|
|
7372
7782
|
};
|
|
7373
|
-
/**
|
|
7783
|
+
/**
|
|
7784
|
+
* @description The team IDs that this job is associated with.
|
|
7785
|
+
* @default []
|
|
7786
|
+
*/
|
|
7374
7787
|
teamIds?: string[];
|
|
7375
7788
|
/**
|
|
7376
7789
|
* Format: date-time
|
|
@@ -7392,7 +7805,10 @@ export interface components {
|
|
|
7392
7805
|
readonly createdAt: string;
|
|
7393
7806
|
/** @description The integration id */
|
|
7394
7807
|
id: string;
|
|
7395
|
-
/**
|
|
7808
|
+
/**
|
|
7809
|
+
* @description List of job IDs associated with the integration.
|
|
7810
|
+
* @default []
|
|
7811
|
+
*/
|
|
7396
7812
|
jobIds: string[];
|
|
7397
7813
|
/**
|
|
7398
7814
|
* @description Name of the integration.
|
|
@@ -7402,7 +7818,10 @@ export interface components {
|
|
|
7402
7818
|
/** @description Organization ID of the integration. */
|
|
7403
7819
|
organizationId: string;
|
|
7404
7820
|
payload: components["schemas"]["JobSignal"];
|
|
7405
|
-
/**
|
|
7821
|
+
/**
|
|
7822
|
+
* @description The team IDs that this integration is associated with.
|
|
7823
|
+
* @default []
|
|
7824
|
+
*/
|
|
7406
7825
|
teamIds?: string[];
|
|
7407
7826
|
/**
|
|
7408
7827
|
* @description The type of the integration. This is used to determine the payload type.
|
|
@@ -7730,9 +8149,15 @@ export interface components {
|
|
|
7730
8149
|
* @example 0n2abc12345
|
|
7731
8150
|
*/
|
|
7732
8151
|
id: string;
|
|
7733
|
-
/**
|
|
8152
|
+
/**
|
|
8153
|
+
* @description Organization roles to assign when claim matches
|
|
8154
|
+
* @default []
|
|
8155
|
+
*/
|
|
7734
8156
|
roles: components["schemas"]["SsoClaimMappingRole"][];
|
|
7735
|
-
/**
|
|
8157
|
+
/**
|
|
8158
|
+
* @description Team assignments to apply when claim matches
|
|
8159
|
+
* @default []
|
|
8160
|
+
*/
|
|
7736
8161
|
teamAssignments: components["schemas"]["TeamAssignment"][];
|
|
7737
8162
|
/**
|
|
7738
8163
|
* Format: date-time
|
|
@@ -7793,7 +8218,10 @@ export interface components {
|
|
|
7793
8218
|
id?: string;
|
|
7794
8219
|
/** @description The name of the user. */
|
|
7795
8220
|
name?: string;
|
|
7796
|
-
/**
|
|
8221
|
+
/**
|
|
8222
|
+
* @description The roles associated with this user.
|
|
8223
|
+
* @default []
|
|
8224
|
+
*/
|
|
7797
8225
|
roles: components["schemas"]["Role"][];
|
|
7798
8226
|
/** @description The teams that this user is a member of. */
|
|
7799
8227
|
teamIds: string[];
|
|
@@ -7834,11 +8262,13 @@ export interface components {
|
|
|
7834
8262
|
/**
|
|
7835
8263
|
* Format: ISO-8601
|
|
7836
8264
|
* @description The interval used by the Log Reducer for the query. Uses ISO 8601 format for intervals.
|
|
8265
|
+
* @default PT2M
|
|
7837
8266
|
* @example PT20.345S
|
|
7838
8267
|
*/
|
|
7839
8268
|
reductionInterval: string;
|
|
7840
8269
|
/**
|
|
7841
8270
|
* @description The order in which the rows should be sorted by
|
|
8271
|
+
* @default ASCENDING
|
|
7842
8272
|
* @enum {string}
|
|
7843
8273
|
*/
|
|
7844
8274
|
sortOrder?: GreprLlmPromptResultsSourceSortOrder;
|
|
@@ -7937,7 +8367,10 @@ export interface components {
|
|
|
7937
8367
|
resourceType: ResourceFilterResourceType;
|
|
7938
8368
|
};
|
|
7939
8369
|
Role: {
|
|
7940
|
-
/**
|
|
8370
|
+
/**
|
|
8371
|
+
* @description Whether this is a built-in role
|
|
8372
|
+
* @default false
|
|
8373
|
+
*/
|
|
7941
8374
|
readonly builtin?: boolean;
|
|
7942
8375
|
/**
|
|
7943
8376
|
* Format: date-time
|
|
@@ -7948,13 +8381,19 @@ export interface components {
|
|
|
7948
8381
|
createdBy?: string;
|
|
7949
8382
|
/** @description Description of the role */
|
|
7950
8383
|
description: string;
|
|
7951
|
-
/**
|
|
8384
|
+
/**
|
|
8385
|
+
* @description The effect of this role's permissions: 'allow' or 'deny'. Defaults to 'allow' for standard roles.
|
|
8386
|
+
* @default allow
|
|
8387
|
+
*/
|
|
7952
8388
|
readonly effect?: string;
|
|
7953
8389
|
/** @description The id of the role. */
|
|
7954
8390
|
id: string;
|
|
7955
8391
|
/** @description The user-facing name of the role. */
|
|
7956
8392
|
name: string;
|
|
7957
|
-
/**
|
|
8393
|
+
/**
|
|
8394
|
+
* @description Permission IDs assigned to this role (empty for system roles)
|
|
8395
|
+
* @default []
|
|
8396
|
+
*/
|
|
7958
8397
|
permissionIds: string[];
|
|
7959
8398
|
};
|
|
7960
8399
|
/**
|
|
@@ -7976,7 +8415,10 @@ export interface components {
|
|
|
7976
8415
|
assumeRoleArn?: string;
|
|
7977
8416
|
/** @description The name of the S3 bucket to use for the data warehouse */
|
|
7978
8417
|
bucketName: string;
|
|
7979
|
-
/**
|
|
8418
|
+
/**
|
|
8419
|
+
* @description The prefix (folder) within the S3 bucket where data warehouse files will be stored
|
|
8420
|
+
* @default
|
|
8421
|
+
*/
|
|
7980
8422
|
prefix?: string;
|
|
7981
8423
|
/**
|
|
7982
8424
|
* @description The region of the S3 bucket
|
|
@@ -7991,6 +8433,7 @@ export interface components {
|
|
|
7991
8433
|
name: string;
|
|
7992
8434
|
/**
|
|
7993
8435
|
* @description The s3 path under the provided bucket to monitor. Optional.In the case of CloudTrail logs, this is the path to the AWSLogs/ directory.
|
|
8436
|
+
* @default
|
|
7994
8437
|
* @example path/to/monitor
|
|
7995
8438
|
*/
|
|
7996
8439
|
pathPrefix?: string;
|
|
@@ -8061,7 +8504,10 @@ export interface components {
|
|
|
8061
8504
|
id: string;
|
|
8062
8505
|
/** @description Display name of the service account */
|
|
8063
8506
|
name: string;
|
|
8064
|
-
/**
|
|
8507
|
+
/**
|
|
8508
|
+
* @description List of assigned roles
|
|
8509
|
+
* @default []
|
|
8510
|
+
*/
|
|
8065
8511
|
roles: components["schemas"]["Role"][];
|
|
8066
8512
|
};
|
|
8067
8513
|
/** @description Service account with client secret (only returned on creation) */
|
|
@@ -8072,7 +8518,10 @@ export interface components {
|
|
|
8072
8518
|
id: string;
|
|
8073
8519
|
/** @description Display name of the service account */
|
|
8074
8520
|
name: string;
|
|
8075
|
-
/**
|
|
8521
|
+
/**
|
|
8522
|
+
* @description List of assigned roles
|
|
8523
|
+
* @default []
|
|
8524
|
+
*/
|
|
8076
8525
|
roles: components["schemas"]["Role"][];
|
|
8077
8526
|
/**
|
|
8078
8527
|
* Format: password
|
|
@@ -8090,6 +8539,7 @@ export interface components {
|
|
|
8090
8539
|
SeverityNode: {
|
|
8091
8540
|
/**
|
|
8092
8541
|
* @description The comparator to use for the match.
|
|
8542
|
+
* @default EQUAL
|
|
8093
8543
|
* @example "EQUAL"
|
|
8094
8544
|
* @enum {string}
|
|
8095
8545
|
*/
|
|
@@ -8097,6 +8547,7 @@ export interface components {
|
|
|
8097
8547
|
/**
|
|
8098
8548
|
* Format: int32
|
|
8099
8549
|
* @description The severity level to match. This is an integer that is matched against the severity.
|
|
8550
|
+
* @default 0
|
|
8100
8551
|
* @example 9
|
|
8101
8552
|
*/
|
|
8102
8553
|
severity: number;
|
|
@@ -8239,8 +8690,8 @@ export interface components {
|
|
|
8239
8690
|
timeUnixNano?: number;
|
|
8240
8691
|
};
|
|
8241
8692
|
/**
|
|
8242
|
-
* Span
|
|
8243
|
-
* @description Head sampling rule evaluated per span. Matched spans are retained
|
|
8693
|
+
* Span Head Sampling Rules
|
|
8694
|
+
* @description Head sampling rule evaluated per span. Matched spans are retained.
|
|
8244
8695
|
*/
|
|
8245
8696
|
SpanHeadSamplingRule: {
|
|
8246
8697
|
filter?: components["schemas"]["HeadSamplingFilter"];
|
|
@@ -8327,6 +8778,7 @@ export interface components {
|
|
|
8327
8778
|
offset?: number;
|
|
8328
8779
|
/**
|
|
8329
8780
|
* @description Filter by operation names (exact match)
|
|
8781
|
+
* @default []
|
|
8330
8782
|
* @example [
|
|
8331
8783
|
* "process-payment",
|
|
8332
8784
|
* "validate-user"
|
|
@@ -8336,6 +8788,7 @@ export interface components {
|
|
|
8336
8788
|
query: components["schemas"]["query"];
|
|
8337
8789
|
/**
|
|
8338
8790
|
* @description Filter by service names (exact match)
|
|
8791
|
+
* @default []
|
|
8339
8792
|
* @example [
|
|
8340
8793
|
* "checkout-service",
|
|
8341
8794
|
* "user-service"
|
|
@@ -8344,6 +8797,7 @@ export interface components {
|
|
|
8344
8797
|
serviceNames?: string[];
|
|
8345
8798
|
/**
|
|
8346
8799
|
* @description The order in which the rows should be sorted by
|
|
8800
|
+
* @default ASCENDING
|
|
8347
8801
|
* @enum {string}
|
|
8348
8802
|
*/
|
|
8349
8803
|
sortOrder?: GreprLlmPromptResultsSourceSortOrder;
|
|
@@ -8355,6 +8809,7 @@ export interface components {
|
|
|
8355
8809
|
start: string;
|
|
8356
8810
|
/**
|
|
8357
8811
|
* @description Filter by trace IDs (32-character hex format)
|
|
8812
|
+
* @default []
|
|
8358
8813
|
* @example [
|
|
8359
8814
|
* "6a33267c000000001001119764423b8d"
|
|
8360
8815
|
* ]
|
|
@@ -8362,6 +8817,7 @@ export interface components {
|
|
|
8362
8817
|
traceIds?: string[];
|
|
8363
8818
|
/**
|
|
8364
8819
|
* @description Filter by trace signatures (supports wildcards with *)
|
|
8820
|
+
* @default []
|
|
8365
8821
|
* @example [
|
|
8366
8822
|
* "user-login-*",
|
|
8367
8823
|
* "checkout-*"
|
|
@@ -8384,6 +8840,7 @@ export interface components {
|
|
|
8384
8840
|
variables?: {
|
|
8385
8841
|
[key: string]: components["schemas"]["Any"];
|
|
8386
8842
|
};
|
|
8843
|
+
/** @default [] */
|
|
8387
8844
|
vendorSinkIntegrationIds?: string[];
|
|
8388
8845
|
};
|
|
8389
8846
|
SpansSynchronousSink: {
|
|
@@ -8399,6 +8856,7 @@ export interface components {
|
|
|
8399
8856
|
Splunk: {
|
|
8400
8857
|
/**
|
|
8401
8858
|
* @description Tags to add when writing data to Splunk
|
|
8859
|
+
* @default []
|
|
8402
8860
|
* @example [
|
|
8403
8861
|
* "tag1:value1",
|
|
8404
8862
|
* "tag2:value2"
|
|
@@ -8416,6 +8874,7 @@ export interface components {
|
|
|
8416
8874
|
};
|
|
8417
8875
|
/**
|
|
8418
8876
|
* @description Filter to apply when reading any data from the Splunk API
|
|
8877
|
+
* @default
|
|
8419
8878
|
* @example service:my-service
|
|
8420
8879
|
*/
|
|
8421
8880
|
filterQuery: string;
|
|
@@ -8447,7 +8906,10 @@ export interface components {
|
|
|
8447
8906
|
* @example 8089
|
|
8448
8907
|
*/
|
|
8449
8908
|
restPort?: string;
|
|
8450
|
-
/**
|
|
8909
|
+
/**
|
|
8910
|
+
* @description Splunk collector uses a valid SSL certificate
|
|
8911
|
+
* @default true
|
|
8912
|
+
*/
|
|
8451
8913
|
secure?: boolean;
|
|
8452
8914
|
/**
|
|
8453
8915
|
* @description Splunk host name or IP address. If specified, ingest, REST and web endpoints default to this host. Either of splunk host or advanced config with individual endpoints should be specified.
|
|
@@ -8486,6 +8948,7 @@ export interface components {
|
|
|
8486
8948
|
SplunkLogHttpSource: {
|
|
8487
8949
|
/**
|
|
8488
8950
|
* @description The Splunk query filter to use when reading logs from Splunk. This is concatenated with the one from the integration.
|
|
8951
|
+
* @default
|
|
8489
8952
|
* @example sourcetype="httpevent"
|
|
8490
8953
|
*/
|
|
8491
8954
|
filterQuery?: string;
|
|
@@ -8502,6 +8965,7 @@ export interface components {
|
|
|
8502
8965
|
SplunkLogSink: {
|
|
8503
8966
|
/**
|
|
8504
8967
|
* @description Additional tags to add to the logs when writing to Splunk. Gets combined with the integration's additionalTags.
|
|
8968
|
+
* @default []
|
|
8505
8969
|
* @example ["additional_tag": "value", "additional_tag2": "value2"]
|
|
8506
8970
|
*/
|
|
8507
8971
|
additionalTags?: string[];
|
|
@@ -8548,7 +9012,10 @@ export interface components {
|
|
|
8548
9012
|
};
|
|
8549
9013
|
/** @description Processes data through a sequence of SQL statements executed in order. Supports VIEW statements that create temporary tables, OUTPUT statements that produce DataStream results, and IO statements that perform side effects. */
|
|
8550
9014
|
SqlOperation: {
|
|
8551
|
-
/**
|
|
9015
|
+
/**
|
|
9016
|
+
* @description IDs of datasets whose tables can be referenced in SQL statements. These will be registered as queryable tables in the SQL environment. The tables from each dataset will appear in a separate namespace based on the dataset name.
|
|
9017
|
+
* @default []
|
|
9018
|
+
*/
|
|
8552
9019
|
availableDatasets?: string[];
|
|
8553
9020
|
/**
|
|
8554
9021
|
* Format: ISO-8601
|
|
@@ -8557,13 +9024,19 @@ export interface components {
|
|
|
8557
9024
|
* @example PT20.345S
|
|
8558
9025
|
*/
|
|
8559
9026
|
globalStateTtl?: string;
|
|
8560
|
-
/**
|
|
9027
|
+
/**
|
|
9028
|
+
* @description Input table names that can be referenced in SQL statements. Each input table corresponds to an input stream that is connected to this operation in the job graph. All connected input types must be compatible with the SQL operations. Each type specifies what the schema of the resulting table that is available for the SQL statements looks like. For `COMPLETE_SPAN`, the table schema uses SQL row field names, which differ from the REST JSON property names in the `CompleteSpan` schema.
|
|
9029
|
+
* @default {}
|
|
9030
|
+
*/
|
|
8561
9031
|
inputs?: {
|
|
8562
9032
|
[key: string]: SqlOperationInputs;
|
|
8563
9033
|
};
|
|
8564
9034
|
/** @example operation_name */
|
|
8565
9035
|
name: string;
|
|
8566
|
-
/**
|
|
9036
|
+
/**
|
|
9037
|
+
* @description List of SQL statements to execute in order. Each statement can reference tables created by previous statements, the input tables, and any tables from the available datasets.
|
|
9038
|
+
* @default []
|
|
9039
|
+
*/
|
|
8567
9040
|
statements: components["schemas"]["SqlExecutable"][];
|
|
8568
9041
|
/**
|
|
8569
9042
|
* @description Processes data through a sequence of SQL statements. (enum property replaced by openapi-typescript)
|
|
@@ -8705,6 +9178,7 @@ export interface components {
|
|
|
8705
9178
|
SumoLogSink: {
|
|
8706
9179
|
/**
|
|
8707
9180
|
* @description Additional attributes to add to the logs when writing to SumoLogic. Gets combined with the integration's additionalAttributes.
|
|
9181
|
+
* @default {}
|
|
8708
9182
|
* @example {
|
|
8709
9183
|
* "processor": "grepr"
|
|
8710
9184
|
* }
|
|
@@ -8742,13 +9216,22 @@ export interface components {
|
|
|
8742
9216
|
/** @description Per-table configuration overrides. Read-only here; use /datasets/{id}/{tableKey}/config to mutate. */
|
|
8743
9217
|
TableConfig: {
|
|
8744
9218
|
partitionConfig?: components["schemas"]["PartitionConfig"];
|
|
8745
|
-
/**
|
|
9219
|
+
/**
|
|
9220
|
+
* @description Bare tag keys to promote to top-level columns.
|
|
9221
|
+
* @default []
|
|
9222
|
+
*/
|
|
8746
9223
|
promotedTagKeys?: string[];
|
|
8747
9224
|
};
|
|
8748
9225
|
TableConfigRead: {
|
|
8749
|
-
/**
|
|
9226
|
+
/**
|
|
9227
|
+
* @description Full effective partition spec, including system-controlled rows.
|
|
9228
|
+
* @default []
|
|
9229
|
+
*/
|
|
8750
9230
|
effectiveSpec: components["schemas"]["EffectivePartitionField"][];
|
|
8751
|
-
/**
|
|
9231
|
+
/**
|
|
9232
|
+
* @description Bare tag keys promoted to top-level columns.
|
|
9233
|
+
* @default []
|
|
9234
|
+
*/
|
|
8752
9235
|
promotedTagKeys?: string[];
|
|
8753
9236
|
};
|
|
8754
9237
|
TagAction: {
|
|
@@ -8775,6 +9258,7 @@ export interface components {
|
|
|
8775
9258
|
type: TagActionType;
|
|
8776
9259
|
/**
|
|
8777
9260
|
* @description The values of the tag to modify.
|
|
9261
|
+
* @default []
|
|
8778
9262
|
* @example [
|
|
8779
9263
|
* "host1",
|
|
8780
9264
|
* "host2"
|
|
@@ -8785,6 +9269,7 @@ export interface components {
|
|
|
8785
9269
|
TagKeyNode: {
|
|
8786
9270
|
/**
|
|
8787
9271
|
* @description This is a string that is matched against the tag key.
|
|
9272
|
+
* @default
|
|
8788
9273
|
* @example "source"
|
|
8789
9274
|
*/
|
|
8790
9275
|
tagKey: string;
|
|
@@ -8797,6 +9282,7 @@ export interface components {
|
|
|
8797
9282
|
TagKeyPrefixNode: {
|
|
8798
9283
|
/**
|
|
8799
9284
|
* @description This is a string that is matched against the tag key prefix.
|
|
9285
|
+
* @default
|
|
8800
9286
|
* @example "sourc"
|
|
8801
9287
|
*/
|
|
8802
9288
|
prefix: string;
|
|
@@ -8814,6 +9300,7 @@ export interface components {
|
|
|
8814
9300
|
type: TagKeyWildcardNodeType;
|
|
8815
9301
|
/**
|
|
8816
9302
|
* @description This is a wildcarded string that is matched against the tag key.
|
|
9303
|
+
* @default
|
|
8817
9304
|
* @example "ser*"
|
|
8818
9305
|
*/
|
|
8819
9306
|
wildcard: string;
|
|
@@ -8821,11 +9308,13 @@ export interface components {
|
|
|
8821
9308
|
TagNode: {
|
|
8822
9309
|
/**
|
|
8823
9310
|
* @description The tag key
|
|
9311
|
+
* @default
|
|
8824
9312
|
* @example "service"
|
|
8825
9313
|
*/
|
|
8826
9314
|
tagKey: string;
|
|
8827
9315
|
/**
|
|
8828
9316
|
* @description This is a string that is matched against the tag value.
|
|
9317
|
+
* @default
|
|
8829
9318
|
* @example "grepr-service-1"
|
|
8830
9319
|
*/
|
|
8831
9320
|
tagValue: string;
|
|
@@ -8838,11 +9327,13 @@ export interface components {
|
|
|
8838
9327
|
TagPrefixNode: {
|
|
8839
9328
|
/**
|
|
8840
9329
|
* @description This is a prefix that is matched against the tag value.
|
|
9330
|
+
* @default
|
|
8841
9331
|
* @example "grepr-service"
|
|
8842
9332
|
*/
|
|
8843
9333
|
prefix: string;
|
|
8844
9334
|
/**
|
|
8845
9335
|
* @description This is a string that is matched against the tag key.
|
|
9336
|
+
* @default
|
|
8846
9337
|
* @example "source"
|
|
8847
9338
|
*/
|
|
8848
9339
|
tagKey: string;
|
|
@@ -8855,11 +9346,13 @@ export interface components {
|
|
|
8855
9346
|
TagRe2Node: {
|
|
8856
9347
|
/**
|
|
8857
9348
|
* @description The regex to match. This is a regex string that is matched against the tag
|
|
9349
|
+
* @default
|
|
8858
9350
|
* @example "grepr-service-1.*"
|
|
8859
9351
|
*/
|
|
8860
9352
|
regex: string;
|
|
8861
9353
|
/**
|
|
8862
9354
|
* @description This is a string that is matched against the tag key.
|
|
9355
|
+
* @default
|
|
8863
9356
|
* @example "source"
|
|
8864
9357
|
*/
|
|
8865
9358
|
tagKey: string;
|
|
@@ -8872,6 +9365,7 @@ export interface components {
|
|
|
8872
9365
|
TagWildcardNode: {
|
|
8873
9366
|
/**
|
|
8874
9367
|
* @description The tag key
|
|
9368
|
+
* @default
|
|
8875
9369
|
* @example "service"
|
|
8876
9370
|
*/
|
|
8877
9371
|
tagKey: string;
|
|
@@ -8882,6 +9376,7 @@ export interface components {
|
|
|
8882
9376
|
type: TagWildcardNodeType;
|
|
8883
9377
|
/**
|
|
8884
9378
|
* @description This is a string including wildcards that is matched against the tag value.
|
|
9379
|
+
* @default
|
|
8885
9380
|
* @example "grepr-serv*"
|
|
8886
9381
|
*/
|
|
8887
9382
|
wildcard: string;
|
|
@@ -8889,17 +9384,20 @@ export interface components {
|
|
|
8889
9384
|
TagWithComparatorNode: {
|
|
8890
9385
|
/**
|
|
8891
9386
|
* @description The comparator to use for the match.
|
|
9387
|
+
* @default EQUAL
|
|
8892
9388
|
* @example "equals"
|
|
8893
9389
|
* @enum {string}
|
|
8894
9390
|
*/
|
|
8895
9391
|
comparator: AttributeWithComparatorNodeComparator;
|
|
8896
9392
|
/**
|
|
8897
9393
|
* @description The tag name
|
|
9394
|
+
* @default
|
|
8898
9395
|
* @example "service"
|
|
8899
9396
|
*/
|
|
8900
9397
|
tagKey: string;
|
|
8901
9398
|
/**
|
|
8902
9399
|
* @description The term to match. This is a string that is matched against the tag.
|
|
9400
|
+
* @default
|
|
8903
9401
|
* @example "source"
|
|
8904
9402
|
*/
|
|
8905
9403
|
term: string;
|
|
@@ -8991,6 +9489,28 @@ export interface components {
|
|
|
8991
9489
|
/**
|
|
8992
9490
|
* Quantile Sampling Tiers
|
|
8993
9491
|
* @description List of quantile sampling tiers for performance-based sampling. Each tier defines a percentile threshold, sampling rate, and label. Traces ABOVE each quantile get the corresponding sampling rate and are labeled with the tier's label. Always include a 0.0 quantile tier for baseline rate. Evaluated in descending quantile order.
|
|
9492
|
+
* @default [
|
|
9493
|
+
* {
|
|
9494
|
+
* "label": "very_slow",
|
|
9495
|
+
* "quantile": 0.99,
|
|
9496
|
+
* "samplingRate": 0.8
|
|
9497
|
+
* },
|
|
9498
|
+
* {
|
|
9499
|
+
* "label": "slow",
|
|
9500
|
+
* "quantile": 0.95,
|
|
9501
|
+
* "samplingRate": 0.1
|
|
9502
|
+
* },
|
|
9503
|
+
* {
|
|
9504
|
+
* "label": "medium",
|
|
9505
|
+
* "quantile": 0.5,
|
|
9506
|
+
* "samplingRate": 0.05
|
|
9507
|
+
* },
|
|
9508
|
+
* {
|
|
9509
|
+
* "label": "fast",
|
|
9510
|
+
* "quantile": 0,
|
|
9511
|
+
* "samplingRate": 0.01
|
|
9512
|
+
* }
|
|
9513
|
+
* ]
|
|
8994
9514
|
* @example [{quantile: 0.99, samplingRate: 0.8, label: 'very_slow'}, {quantile: 0.95, samplingRate: 0.1, label: 'slow'}, {quantile: 0.5, samplingRate: 0.05, label: 'medium'}, {quantile: 0.0, samplingRate: 0.01, label: 'fast'}]
|
|
8995
9515
|
*/
|
|
8996
9516
|
quantileSamplingTiers?: components["schemas"]["QuantileSamplingTier"][];
|
|
@@ -9019,7 +9539,10 @@ export interface components {
|
|
|
9019
9539
|
* @example Parses JSON log events and extracts fields.
|
|
9020
9540
|
*/
|
|
9021
9541
|
description?: string;
|
|
9022
|
-
/**
|
|
9542
|
+
/**
|
|
9543
|
+
* @description List of additional outputs that will be added to the graph when running in draft mode.
|
|
9544
|
+
* @default []
|
|
9545
|
+
*/
|
|
9023
9546
|
draftOutputs?: components["schemas"]["TemplateDraftOutput"][];
|
|
9024
9547
|
/**
|
|
9025
9548
|
* @description Unique identifier for the template.
|
|
@@ -9028,6 +9551,7 @@ export interface components {
|
|
|
9028
9551
|
id?: string;
|
|
9029
9552
|
/**
|
|
9030
9553
|
* @description JSONSchema (https://json-schema.org/draft/2020-12) for validating the inputs to the template. Make sure you make this validation forwards/backwards compatible to ensure that the template version can be upgraded and rolled back.
|
|
9554
|
+
* @default {}
|
|
9031
9555
|
* @example {
|
|
9032
9556
|
* "type": "object",
|
|
9033
9557
|
* "properties": {
|
|
@@ -9042,6 +9566,7 @@ export interface components {
|
|
|
9042
9566
|
};
|
|
9043
9567
|
/**
|
|
9044
9568
|
* @description Map of input names used in a parent subgraph that uses a TemplateOperation to their internal connections within the subgraph. Can be missing if there are no inputs to the subgraph
|
|
9569
|
+
* @default {}
|
|
9045
9570
|
* @example {
|
|
9046
9571
|
* "input": "log_reducer:input"
|
|
9047
9572
|
* }
|
|
@@ -9049,6 +9574,7 @@ export interface components {
|
|
|
9049
9574
|
inputs?: {
|
|
9050
9575
|
[key: string]: string;
|
|
9051
9576
|
};
|
|
9577
|
+
/** @default true */
|
|
9052
9578
|
isLatest?: boolean;
|
|
9053
9579
|
latest?: boolean;
|
|
9054
9580
|
/**
|
|
@@ -9061,7 +9587,10 @@ export interface components {
|
|
|
9061
9587
|
* @example org-456
|
|
9062
9588
|
*/
|
|
9063
9589
|
organizationId?: string;
|
|
9064
|
-
/**
|
|
9590
|
+
/**
|
|
9591
|
+
* @description Map of output names used in a parent subgraph that uses a TemplateOperation to their internal connections within the subgraph. Can be missing if there are no outputs from the subgraph
|
|
9592
|
+
* @default {}
|
|
9593
|
+
*/
|
|
9065
9594
|
outputs?: {
|
|
9066
9595
|
[key: string]: string;
|
|
9067
9596
|
};
|
|
@@ -9072,6 +9601,7 @@ export interface components {
|
|
|
9072
9601
|
sourceHash?: string;
|
|
9073
9602
|
/**
|
|
9074
9603
|
* @description Set of team IDs that can use this template.
|
|
9604
|
+
* @default []
|
|
9075
9605
|
* @example [
|
|
9076
9606
|
* "team-1",
|
|
9077
9607
|
* "team-2"
|
|
@@ -9142,7 +9672,10 @@ export interface components {
|
|
|
9142
9672
|
stopAggregatingDataTime?: string;
|
|
9143
9673
|
/** @description ID of the trigger to invoke */
|
|
9144
9674
|
triggerId?: string;
|
|
9145
|
-
/**
|
|
9675
|
+
/**
|
|
9676
|
+
* @description Variables to extract from events
|
|
9677
|
+
* @default []
|
|
9678
|
+
*/
|
|
9146
9679
|
variables?: string[];
|
|
9147
9680
|
/**
|
|
9148
9681
|
* @description discriminator enum property added by openapi-typescript
|
|
@@ -9160,6 +9693,7 @@ export interface components {
|
|
|
9160
9693
|
draft?: boolean;
|
|
9161
9694
|
/**
|
|
9162
9695
|
* @description Map of variable names to their values.
|
|
9696
|
+
* @default {}
|
|
9163
9697
|
* @example {
|
|
9164
9698
|
* "pattern": "^foo",
|
|
9165
9699
|
* "threshold": 10
|
|
@@ -9198,7 +9732,10 @@ export interface components {
|
|
|
9198
9732
|
* @example template-12345
|
|
9199
9733
|
*/
|
|
9200
9734
|
templateId: string;
|
|
9201
|
-
/**
|
|
9735
|
+
/**
|
|
9736
|
+
* @description Inputs to the template. Each entry in the map is added to the scope of the template javascript as a variable and can be accessed directly. In addition to the inputs, a 'user' object is also bound providing information about the current user.
|
|
9737
|
+
* @default {}
|
|
9738
|
+
*/
|
|
9202
9739
|
templateInputs?: {
|
|
9203
9740
|
[key: string]: Record<string, never>;
|
|
9204
9741
|
};
|
|
@@ -9231,7 +9768,10 @@ export interface components {
|
|
|
9231
9768
|
stopAggregatingDataTime?: string;
|
|
9232
9769
|
/** @description ID of the trigger to invoke */
|
|
9233
9770
|
triggerId?: string;
|
|
9234
|
-
/**
|
|
9771
|
+
/**
|
|
9772
|
+
* @description Variables to extract from events
|
|
9773
|
+
* @default []
|
|
9774
|
+
*/
|
|
9235
9775
|
variables?: string[];
|
|
9236
9776
|
/**
|
|
9237
9777
|
* @description discriminator enum property added by openapi-typescript
|
|
@@ -9287,6 +9827,7 @@ export interface components {
|
|
|
9287
9827
|
/**
|
|
9288
9828
|
* Trace ID Attribute Paths
|
|
9289
9829
|
* @description List of attribute paths (each path is a list of segments) to extract trace IDs from. The first non-null value found will be used as the trace ID.
|
|
9830
|
+
* @default []
|
|
9290
9831
|
* @example [
|
|
9291
9832
|
* [
|
|
9292
9833
|
* "span",
|
|
@@ -9302,6 +9843,7 @@ export interface components {
|
|
|
9302
9843
|
/**
|
|
9303
9844
|
* Trace ID Tag Keys
|
|
9304
9845
|
* @description List of tag keys to extract trace IDs from. The first non-null value found will be used as the trace ID (checked after attribute paths).
|
|
9846
|
+
* @default []
|
|
9305
9847
|
* @example [
|
|
9306
9848
|
* "trace_id",
|
|
9307
9849
|
* "traceId"
|
|
@@ -9332,6 +9874,7 @@ export interface components {
|
|
|
9332
9874
|
TimeGranularity: {
|
|
9333
9875
|
/**
|
|
9334
9876
|
* @description Per-metric-name overrides for time aggregation.
|
|
9877
|
+
* @default {}
|
|
9335
9878
|
* @example {
|
|
9336
9879
|
* "system.cpu.utilization": "LATEST"
|
|
9337
9880
|
* }
|
|
@@ -9362,10 +9905,16 @@ export interface components {
|
|
|
9362
9905
|
};
|
|
9363
9906
|
/** @description Time-series rule that detects spikes by comparing short-term to long-term EWMA. */
|
|
9364
9907
|
TimeSeriesRuleConfig: Omit<components["schemas"]["PatternRuleConfig"], "type"> & {
|
|
9908
|
+
/** @default true */
|
|
9909
|
+
enabled?: boolean;
|
|
9910
|
+
/** @default [] */
|
|
9365
9911
|
ewmaPeriods: string[];
|
|
9366
9912
|
/** @description Name of the LLM prompt operator that created this rule. Used to route trigger actions back to the originating prompt. */
|
|
9367
9913
|
originatingLlmPromptOperatorName?: string;
|
|
9368
|
-
/**
|
|
9914
|
+
/**
|
|
9915
|
+
* Format: double
|
|
9916
|
+
* @default 3
|
|
9917
|
+
*/
|
|
9369
9918
|
spikeThresholdRatio?: number;
|
|
9370
9919
|
triggerPrompt: string;
|
|
9371
9920
|
} & {
|
|
@@ -9400,8 +9949,9 @@ export interface components {
|
|
|
9400
9949
|
type: string;
|
|
9401
9950
|
};
|
|
9402
9951
|
/**
|
|
9403
|
-
* Trace
|
|
9404
|
-
* @
|
|
9952
|
+
* Trace Head Sampling Rules (Deprecated)
|
|
9953
|
+
* @deprecated
|
|
9954
|
+
* @description Deprecated. Head sampling rule evaluated per trace. Use traceHeadSamplingRate on TraceReducer instead.
|
|
9405
9955
|
*/
|
|
9406
9956
|
TraceHeadSamplingRule: {
|
|
9407
9957
|
filter?: components["schemas"]["HeadSamplingFilter"];
|
|
@@ -9419,6 +9969,7 @@ export interface components {
|
|
|
9419
9969
|
/**
|
|
9420
9970
|
* Format: ISO-8601
|
|
9421
9971
|
* @description Time range to backfill logs for each trace, in ISO-8601 format. Defines the window around each trace's timestamp to fetch logs from. Must be between 1 minute and 24 hours.
|
|
9972
|
+
* @default PT5M
|
|
9422
9973
|
* @example PT20.345S
|
|
9423
9974
|
*/
|
|
9424
9975
|
backfillWindow: string;
|
|
@@ -9442,13 +9993,17 @@ export interface components {
|
|
|
9442
9993
|
/**
|
|
9443
9994
|
* Format: ISO-8601
|
|
9444
9995
|
* @description Window duration in ISO-8601 format. Traces are accumulated for this duration before the action executes. Must be between 1 minute and 10 minutes.
|
|
9996
|
+
* @default PT1M30S
|
|
9445
9997
|
* @example PT20.345S
|
|
9446
9998
|
*/
|
|
9447
9999
|
traceCollectionDuration: string;
|
|
9448
10000
|
});
|
|
9449
|
-
/** @description Reduces trace volume by
|
|
10001
|
+
/** @description Reduces trace volume by applying a uniform trace head sampling rate and configurable span head sampling rules with optional tail sampling, then emits the retained spans. */
|
|
9450
10002
|
TraceReducer: {
|
|
9451
|
-
/**
|
|
10003
|
+
/**
|
|
10004
|
+
* @description Actions to execute on traces. Actions process spans after sampling decisions have been made and can trigger operations like logs backfill.
|
|
10005
|
+
* @default []
|
|
10006
|
+
*/
|
|
9452
10007
|
actions?: components["schemas"]["TraceAction"][];
|
|
9453
10008
|
criticalPathAnalysis?: components["schemas"]["CriticalPathAnalysisConfig"];
|
|
9454
10009
|
/**
|
|
@@ -9460,18 +10015,27 @@ export interface components {
|
|
|
9460
10015
|
/** @example operation_name */
|
|
9461
10016
|
name: string;
|
|
9462
10017
|
/**
|
|
9463
|
-
* Span
|
|
9464
|
-
* @description Span
|
|
10018
|
+
* Span Head Sampling Rules
|
|
10019
|
+
* @description Span head sampling rules. Matched spans are retained as SPAN_HEAD_SAMPLED. If tail sampling is configured, matched spans participate in trace assembly before output; otherwise, matched spans are emitted directly. Order is significant; first match wins for metric attribution. Trace head sampling wins when both match the same span.
|
|
10020
|
+
* @default []
|
|
9465
10021
|
*/
|
|
9466
10022
|
spanHeadSamplingRules?: components["schemas"]["SpanHeadSamplingRule"][];
|
|
9467
10023
|
tailSampling?: components["schemas"]["TailSamplingConfig"];
|
|
9468
10024
|
/**
|
|
9469
|
-
* Trace
|
|
9470
|
-
*
|
|
10025
|
+
* Trace Head Sampling Rate
|
|
10026
|
+
* Format: double
|
|
10027
|
+
* @description Uniform trace head sampling rate in [0.0, 1.0]. When set, all spans sharing a traceId are retained together as HEAD_SAMPLED at this probability. Mutually exclusive with traceHeadSamplingRules (scalar wins when both present).
|
|
10028
|
+
*/
|
|
10029
|
+
traceHeadSamplingRate?: number;
|
|
10030
|
+
/**
|
|
10031
|
+
* Trace Head Sampling Rules (Deprecated)
|
|
10032
|
+
* @deprecated
|
|
10033
|
+
* @description Deprecated: use traceHeadSamplingRate instead. Kept for backwards compatibility with stored configurations. When traceHeadSamplingRate is absent, the effective rate is max(rate) over this list (filters are ignored).
|
|
10034
|
+
* @default []
|
|
9471
10035
|
*/
|
|
9472
10036
|
traceHeadSamplingRules?: components["schemas"]["TraceHeadSamplingRule"][];
|
|
9473
10037
|
/**
|
|
9474
|
-
* @description Reduces trace volume by sampling CompleteSpan instances. Combines
|
|
10038
|
+
* @description Reduces trace volume by sampling CompleteSpan instances. Combines a uniform trace head sampling rate (whole-trace retention) and per-span head sampling rules with optional quantile-based tail sampling. (enum property replaced by openapi-typescript)
|
|
9475
10039
|
* @enum {string}
|
|
9476
10040
|
*/
|
|
9477
10041
|
type: TraceReducerType;
|
|
@@ -9498,6 +10062,7 @@ export interface components {
|
|
|
9498
10062
|
/**
|
|
9499
10063
|
* Trace ID Attribute Paths
|
|
9500
10064
|
* @description List of attribute paths (each path is a list of segments) to extract trace IDs from. The first non-null value found will be used as the trace ID.
|
|
10065
|
+
* @default []
|
|
9501
10066
|
* @example [
|
|
9502
10067
|
* [
|
|
9503
10068
|
* "span",
|
|
@@ -9513,6 +10078,7 @@ export interface components {
|
|
|
9513
10078
|
/**
|
|
9514
10079
|
* Trace ID Tag Keys
|
|
9515
10080
|
* @description List of tag keys to extract trace IDs from. The first non-null value found will be used as the trace ID (checked after attribute paths).
|
|
10081
|
+
* @default []
|
|
9516
10082
|
* @example [
|
|
9517
10083
|
* "trace_id",
|
|
9518
10084
|
* "traceId"
|
|
@@ -9586,6 +10152,7 @@ export interface components {
|
|
|
9586
10152
|
offset?: number;
|
|
9587
10153
|
/**
|
|
9588
10154
|
* @description Filter by operation names (exact match)
|
|
10155
|
+
* @default []
|
|
9589
10156
|
* @example [
|
|
9590
10157
|
* "process-payment",
|
|
9591
10158
|
* "validate-user"
|
|
@@ -9595,6 +10162,7 @@ export interface components {
|
|
|
9595
10162
|
query: components["schemas"]["query"];
|
|
9596
10163
|
/**
|
|
9597
10164
|
* @description Filter by service names (exact match)
|
|
10165
|
+
* @default []
|
|
9598
10166
|
* @example [
|
|
9599
10167
|
* "checkout-service",
|
|
9600
10168
|
* "user-service"
|
|
@@ -9603,6 +10171,7 @@ export interface components {
|
|
|
9603
10171
|
serviceNames?: string[];
|
|
9604
10172
|
/**
|
|
9605
10173
|
* @description The order in which the rows should be sorted by
|
|
10174
|
+
* @default ASCENDING
|
|
9606
10175
|
* @enum {string}
|
|
9607
10176
|
*/
|
|
9608
10177
|
sortOrder?: GreprLlmPromptResultsSourceSortOrder;
|
|
@@ -9614,6 +10183,7 @@ export interface components {
|
|
|
9614
10183
|
start: string;
|
|
9615
10184
|
/**
|
|
9616
10185
|
* @description Filter by trace IDs (32-character hex format)
|
|
10186
|
+
* @default []
|
|
9617
10187
|
* @example [
|
|
9618
10188
|
* "6a33267c000000001001119764423b8d"
|
|
9619
10189
|
* ]
|
|
@@ -9621,6 +10191,7 @@ export interface components {
|
|
|
9621
10191
|
traceIds?: string[];
|
|
9622
10192
|
/**
|
|
9623
10193
|
* @description Filter by trace signatures (supports wildcards with *)
|
|
10194
|
+
* @default []
|
|
9624
10195
|
* @example [
|
|
9625
10196
|
* "user-login-*",
|
|
9626
10197
|
* "checkout-*"
|
|
@@ -9771,7 +10342,10 @@ export interface components {
|
|
|
9771
10342
|
*/
|
|
9772
10343
|
fromVersion: number;
|
|
9773
10344
|
jobGraph: components["schemas"]["GreprJobGraph"];
|
|
9774
|
-
/**
|
|
10345
|
+
/**
|
|
10346
|
+
* @description The team IDs that this job is associated with.
|
|
10347
|
+
* @default []
|
|
10348
|
+
*/
|
|
9775
10349
|
teamIds?: string[];
|
|
9776
10350
|
};
|
|
9777
10351
|
UpdateRole: {
|
|
@@ -9781,6 +10355,7 @@ export interface components {
|
|
|
9781
10355
|
name: string;
|
|
9782
10356
|
/**
|
|
9783
10357
|
* @description Permission IDs to assign to this role
|
|
10358
|
+
* @default []
|
|
9784
10359
|
* @example [
|
|
9785
10360
|
* "perm_001",
|
|
9786
10361
|
* "perm_002"
|
|
@@ -9797,6 +10372,7 @@ export interface components {
|
|
|
9797
10372
|
name: string;
|
|
9798
10373
|
/**
|
|
9799
10374
|
* @description List of role IDs to assign to the service account
|
|
10375
|
+
* @default []
|
|
9800
10376
|
* @example [
|
|
9801
10377
|
* "rol_AlphaNum1234",
|
|
9802
10378
|
* "rol_alphaNum5678"
|
|
@@ -9809,6 +10385,7 @@ export interface components {
|
|
|
9809
10385
|
type: string;
|
|
9810
10386
|
} & (components["schemas"]["DatabaseUserInfo"] | components["schemas"]["SocialUserInfo"]);
|
|
9811
10387
|
UserPermissionsResponse: {
|
|
10388
|
+
/** @default [] */
|
|
9812
10389
|
permissions?: string[];
|
|
9813
10390
|
};
|
|
9814
10391
|
UserProvisionInfo: {
|
|
@@ -9824,7 +10401,9 @@ export interface components {
|
|
|
9824
10401
|
total?: number;
|
|
9825
10402
|
};
|
|
9826
10403
|
UsersUpdate: {
|
|
10404
|
+
/** @default [] */
|
|
9827
10405
|
leaderUserIds: string[];
|
|
10406
|
+
/** @default [] */
|
|
9828
10407
|
memberUserIds: string[];
|
|
9829
10408
|
};
|
|
9830
10409
|
Variant: {
|
|
@@ -9908,6 +10487,7 @@ export interface components {
|
|
|
9908
10487
|
/**
|
|
9909
10488
|
* Format: int32
|
|
9910
10489
|
* @description Logarithm base used by sampling algorithm
|
|
10490
|
+
* @default 2
|
|
9911
10491
|
*/
|
|
9912
10492
|
logarithmBase?: number;
|
|
9913
10493
|
/**
|
|
@@ -9923,7 +10503,10 @@ export interface components {
|
|
|
9923
10503
|
*/
|
|
9924
10504
|
name: string;
|
|
9925
10505
|
payload: components["schemas"]["Anthropic"];
|
|
9926
|
-
/**
|
|
10506
|
+
/**
|
|
10507
|
+
* @description The team IDs that this integration is associated with.
|
|
10508
|
+
* @default []
|
|
10509
|
+
*/
|
|
9927
10510
|
teamIds?: string[];
|
|
9928
10511
|
/**
|
|
9929
10512
|
* @description The type of the integration. This is used to determine the payload type.
|
|
@@ -9944,7 +10527,10 @@ export interface components {
|
|
|
9944
10527
|
*/
|
|
9945
10528
|
name: string;
|
|
9946
10529
|
payload: components["schemas"]["DataWarehouse"];
|
|
9947
|
-
/**
|
|
10530
|
+
/**
|
|
10531
|
+
* @description The team IDs that this integration is associated with.
|
|
10532
|
+
* @default []
|
|
10533
|
+
*/
|
|
9948
10534
|
teamIds?: string[];
|
|
9949
10535
|
/**
|
|
9950
10536
|
* @description The type of the integration. This is used to determine the payload type.
|
|
@@ -9965,7 +10551,10 @@ export interface components {
|
|
|
9965
10551
|
*/
|
|
9966
10552
|
name: string;
|
|
9967
10553
|
payload: components["schemas"]["Datadog"];
|
|
9968
|
-
/**
|
|
10554
|
+
/**
|
|
10555
|
+
* @description The team IDs that this integration is associated with.
|
|
10556
|
+
* @default []
|
|
10557
|
+
*/
|
|
9969
10558
|
teamIds?: string[];
|
|
9970
10559
|
/**
|
|
9971
10560
|
* @description The type of the integration. This is used to determine the payload type.
|
|
@@ -9986,7 +10575,10 @@ export interface components {
|
|
|
9986
10575
|
*/
|
|
9987
10576
|
name: string;
|
|
9988
10577
|
payload: components["schemas"]["DatadogMcp"];
|
|
9989
|
-
/**
|
|
10578
|
+
/**
|
|
10579
|
+
* @description The team IDs that this integration is associated with.
|
|
10580
|
+
* @default []
|
|
10581
|
+
*/
|
|
9990
10582
|
teamIds?: string[];
|
|
9991
10583
|
/**
|
|
9992
10584
|
* @description The type of the integration. This is used to determine the payload type.
|
|
@@ -10007,7 +10599,10 @@ export interface components {
|
|
|
10007
10599
|
*/
|
|
10008
10600
|
name: string;
|
|
10009
10601
|
payload: components["schemas"]["Gemini"];
|
|
10010
|
-
/**
|
|
10602
|
+
/**
|
|
10603
|
+
* @description The team IDs that this integration is associated with.
|
|
10604
|
+
* @default []
|
|
10605
|
+
*/
|
|
10011
10606
|
teamIds?: string[];
|
|
10012
10607
|
/**
|
|
10013
10608
|
* @description The type of the integration. This is used to determine the payload type.
|
|
@@ -10028,7 +10623,10 @@ export interface components {
|
|
|
10028
10623
|
*/
|
|
10029
10624
|
name: string;
|
|
10030
10625
|
payload: components["schemas"]["JobSignal"];
|
|
10031
|
-
/**
|
|
10626
|
+
/**
|
|
10627
|
+
* @description The team IDs that this integration is associated with.
|
|
10628
|
+
* @default []
|
|
10629
|
+
*/
|
|
10032
10630
|
teamIds?: string[];
|
|
10033
10631
|
/**
|
|
10034
10632
|
* @description The type of the integration. This is used to determine the payload type.
|
|
@@ -10049,7 +10647,10 @@ export interface components {
|
|
|
10049
10647
|
*/
|
|
10050
10648
|
name: string;
|
|
10051
10649
|
payload: components["schemas"]["NewRelic"];
|
|
10052
|
-
/**
|
|
10650
|
+
/**
|
|
10651
|
+
* @description The team IDs that this integration is associated with.
|
|
10652
|
+
* @default []
|
|
10653
|
+
*/
|
|
10053
10654
|
teamIds?: string[];
|
|
10054
10655
|
/**
|
|
10055
10656
|
* @description The type of the integration. This is used to determine the payload type.
|
|
@@ -10070,7 +10671,10 @@ export interface components {
|
|
|
10070
10671
|
*/
|
|
10071
10672
|
name: string;
|
|
10072
10673
|
payload: components["schemas"]["OpenAi"];
|
|
10073
|
-
/**
|
|
10674
|
+
/**
|
|
10675
|
+
* @description The team IDs that this integration is associated with.
|
|
10676
|
+
* @default []
|
|
10677
|
+
*/
|
|
10074
10678
|
teamIds?: string[];
|
|
10075
10679
|
/**
|
|
10076
10680
|
* @description The type of the integration. This is used to determine the payload type.
|
|
@@ -10091,7 +10695,10 @@ export interface components {
|
|
|
10091
10695
|
*/
|
|
10092
10696
|
name: string;
|
|
10093
10697
|
payload: components["schemas"]["Otlp"];
|
|
10094
|
-
/**
|
|
10698
|
+
/**
|
|
10699
|
+
* @description The team IDs that this integration is associated with.
|
|
10700
|
+
* @default []
|
|
10701
|
+
*/
|
|
10095
10702
|
teamIds?: string[];
|
|
10096
10703
|
/**
|
|
10097
10704
|
* @description The type of the integration. This is used to determine the payload type.
|
|
@@ -10112,7 +10719,10 @@ export interface components {
|
|
|
10112
10719
|
*/
|
|
10113
10720
|
name: string;
|
|
10114
10721
|
payload: components["schemas"]["PagerDutyMcp"];
|
|
10115
|
-
/**
|
|
10722
|
+
/**
|
|
10723
|
+
* @description The team IDs that this integration is associated with.
|
|
10724
|
+
* @default []
|
|
10725
|
+
*/
|
|
10116
10726
|
teamIds?: string[];
|
|
10117
10727
|
/**
|
|
10118
10728
|
* @description The type of the integration. This is used to determine the payload type.
|
|
@@ -10133,7 +10743,10 @@ export interface components {
|
|
|
10133
10743
|
*/
|
|
10134
10744
|
name: string;
|
|
10135
10745
|
payload: components["schemas"]["S3DataWarehouse"];
|
|
10136
|
-
/**
|
|
10746
|
+
/**
|
|
10747
|
+
* @description The team IDs that this integration is associated with.
|
|
10748
|
+
* @default []
|
|
10749
|
+
*/
|
|
10137
10750
|
teamIds?: string[];
|
|
10138
10751
|
/**
|
|
10139
10752
|
* @description The type of the integration. This is used to determine the payload type.
|
|
@@ -10154,7 +10767,10 @@ export interface components {
|
|
|
10154
10767
|
*/
|
|
10155
10768
|
name: string;
|
|
10156
10769
|
payload: components["schemas"]["S3VectorIndex"];
|
|
10157
|
-
/**
|
|
10770
|
+
/**
|
|
10771
|
+
* @description The team IDs that this integration is associated with.
|
|
10772
|
+
* @default []
|
|
10773
|
+
*/
|
|
10158
10774
|
teamIds?: string[];
|
|
10159
10775
|
/**
|
|
10160
10776
|
* @description The type of the integration. This is used to determine the payload type.
|
|
@@ -10175,7 +10791,10 @@ export interface components {
|
|
|
10175
10791
|
*/
|
|
10176
10792
|
name: string;
|
|
10177
10793
|
payload: components["schemas"]["Splunk"];
|
|
10178
|
-
/**
|
|
10794
|
+
/**
|
|
10795
|
+
* @description The team IDs that this integration is associated with.
|
|
10796
|
+
* @default []
|
|
10797
|
+
*/
|
|
10179
10798
|
teamIds?: string[];
|
|
10180
10799
|
/**
|
|
10181
10800
|
* @description The type of the integration. This is used to determine the payload type.
|
|
@@ -10192,7 +10811,9 @@ export interface components {
|
|
|
10192
10811
|
WriteSsoClaimMapping: {
|
|
10193
10812
|
claimKey: string;
|
|
10194
10813
|
claimValue: string;
|
|
10814
|
+
/** @default [] */
|
|
10195
10815
|
roleIds: string[];
|
|
10816
|
+
/** @default [] */
|
|
10196
10817
|
teamAssignments: components["schemas"]["TeamAssignment"][];
|
|
10197
10818
|
};
|
|
10198
10819
|
WriteSumo: {
|
|
@@ -10202,7 +10823,10 @@ export interface components {
|
|
|
10202
10823
|
*/
|
|
10203
10824
|
name: string;
|
|
10204
10825
|
payload: components["schemas"]["Sumo"];
|
|
10205
|
-
/**
|
|
10826
|
+
/**
|
|
10827
|
+
* @description The team IDs that this integration is associated with.
|
|
10828
|
+
* @default []
|
|
10829
|
+
*/
|
|
10206
10830
|
teamIds?: string[];
|
|
10207
10831
|
/**
|
|
10208
10832
|
* @description The type of the integration. This is used to determine the payload type.
|
|
@@ -18756,5 +19380,36 @@ export declare const LlmAttributes: {
|
|
|
18756
19380
|
readonly TAG_SUCCESS: "greprLlmSuccess";
|
|
18757
19381
|
readonly TAG_ACTIONABLE: "greprLlmActionable";
|
|
18758
19382
|
};
|
|
19383
|
+
export declare const DEFAULT_LOG_REDUCER_MASKS: readonly [{
|
|
19384
|
+
readonly name: "ipport";
|
|
19385
|
+
readonly regex: "(?:\\d{1,3}\\.){3}\\d{1,3}(?::\\d{1,5})?";
|
|
19386
|
+
readonly description: "Matches IPv4 addresses and optional ports, e.g. 192.168.0.1 or 192.168.0.1:8080";
|
|
19387
|
+
readonly enabledByDefault: true;
|
|
19388
|
+
}, {
|
|
19389
|
+
readonly name: "timestamp";
|
|
19390
|
+
readonly regex: "(?:(?:\\d{4}-\\d{2}-\\d{2}(?:T|\\s)\\d{2}:\\d{2}:\\d{2}(?:[.,]\\d{1,12})?(?:Z|(?:[\\+\\-]\\d{2}:?\\d{2})|\\sUTC)?)|(?:\\d{1,4}/\\d{1,2}/\\d{1,4}(,?\\s\\d{1,2}:\\d{2}:\\d{1,2}(?:[.,]\\d{1,12})?(?:\\s?(?:[AP]M))?)?)|(?:\\d{1,2}:\\d{2}:\\d{1,2}(?:[.,]\\d{1,12})?(?:\\s?(?:[AP]M))?)|(?:\\d{2}/[A-Za-z]{3}/\\d{4}(?:[:\\s]\\d{2}:\\d{2}:\\d{2}(?:\\s\\+[0-9]{4})?)?))";
|
|
19391
|
+
readonly description: "Matches many timestamp formats, e.g. 2024-04-26T15:30:45.123Z, 26/04/2024 15:30:45, 15:30:45";
|
|
19392
|
+
readonly enabledByDefault: true;
|
|
19393
|
+
}, {
|
|
19394
|
+
readonly name: "uuid";
|
|
19395
|
+
readonly regex: "(?:^|(?<!\\w))(?:[a-fA-F0-9]{8}[-,_,:]?[a-fA-F0-9]{4}[-,_,:]?[a-fA-F0-9]{4}[-,_,:]?[a-fA-F0-9]{4}[-,_,:]?[a-fA-F0-9]{12})(?:(?!\\w)|$)";
|
|
19396
|
+
readonly description: "Matches UUIDs, e.g. 123e4567-e89b-12d3-a456-426614174000.";
|
|
19397
|
+
readonly enabledByDefault: true;
|
|
19398
|
+
}, {
|
|
19399
|
+
readonly name: "number";
|
|
19400
|
+
readonly regex: "(?:^|(?<!\\w))(?:(?:0x[a-fA-F0-9]{1,100})|(?:[\\-\\+]?(?>(?:(?:\\d{1,100})?(?:\\.\\d{1,100})(?:[eE][\\-\\+]?\\d{1,100}))|(?:(?:\\d{1,100})?(?:\\.\\d{1,100}))|(?:\\d{1,100}))))(?:(?!\\w)|$)";
|
|
19401
|
+
readonly description: "Matches integers and decimal numbers up to 100 digits.";
|
|
19402
|
+
readonly enabledByDefault: true;
|
|
19403
|
+
}, {
|
|
19404
|
+
readonly name: "awsarn";
|
|
19405
|
+
readonly regex: "arn:aws(?:-[a-z]+-[a-z]+)?:[a-zA-Z0-9-]+:(?:[a-z0-9-]+:)?(?:[0-9]{12})?:[a-zA-Z0-9-_./]+(?::[a-zA-Z0-9-_./]+)*";
|
|
19406
|
+
readonly description: "Matches AWS ARNs";
|
|
19407
|
+
readonly enabledByDefault: false;
|
|
19408
|
+
}, {
|
|
19409
|
+
readonly name: "awstoken";
|
|
19410
|
+
readonly regex: "(?:IQoJb3JpZ2luX[A-Za-z0-9+/]{10,20})[A-Za-z0-9+/]{800,1100}";
|
|
19411
|
+
readonly description: "Matches AWS session tokens";
|
|
19412
|
+
readonly enabledByDefault: false;
|
|
19413
|
+
}];
|
|
18759
19414
|
export {};
|
|
18760
19415
|
//# sourceMappingURL=openApiTypes.d.ts.map
|