@grepr/cli 1.3.0-b3d95ad → 1.4.4-7c2bb89
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +183 -21
- package/README.md +106 -30
- package/build/dist/commands/crud-command.d.ts +9 -1
- package/build/dist/commands/crud-command.d.ts.map +1 -1
- package/build/dist/commands/crud-command.js +37 -10
- package/build/dist/commands/crud-command.js.map +1 -1
- package/build/dist/commands/dataset-command.d.ts.map +1 -1
- package/build/dist/commands/dataset-command.js +2 -1
- package/build/dist/commands/dataset-command.js.map +1 -1
- package/build/dist/commands/docs-command.d.ts.map +1 -1
- package/build/dist/commands/docs-command.js +26 -2
- package/build/dist/commands/docs-command.js.map +1 -1
- package/build/dist/commands/grok-command.d.ts +2 -1
- package/build/dist/commands/grok-command.d.ts.map +1 -1
- package/build/dist/commands/grok-command.js +3 -2
- package/build/dist/commands/grok-command.js.map +1 -1
- package/build/dist/commands/integration-command.d.ts.map +1 -1
- package/build/dist/commands/integration-command.js +2 -1
- package/build/dist/commands/integration-command.js.map +1 -1
- package/build/dist/commands/job-command.d.ts +3 -2
- package/build/dist/commands/job-command.d.ts.map +1 -1
- package/build/dist/commands/job-command.js +53 -37
- package/build/dist/commands/job-command.js.map +1 -1
- package/build/dist/commands/job-to-test-command.d.ts.map +1 -1
- package/build/dist/commands/job-to-test-command.js +15 -13
- package/build/dist/commands/job-to-test-command.js.map +1 -1
- package/build/dist/commands/list-command.d.ts +5 -3
- package/build/dist/commands/list-command.d.ts.map +1 -1
- package/build/dist/commands/list-command.js +18 -14
- package/build/dist/commands/list-command.js.map +1 -1
- package/build/dist/commands/query-command.d.ts +15 -0
- package/build/dist/commands/query-command.d.ts.map +1 -1
- package/build/dist/commands/query-command.js +71 -17
- package/build/dist/commands/query-command.js.map +1 -1
- package/build/dist/grepr.js +22 -1
- package/build/dist/grepr.js.map +1 -1
- package/build/dist/lib/auth.d.ts +20 -1
- package/build/dist/lib/auth.d.ts.map +1 -1
- package/build/dist/lib/auth.js +52 -1
- package/build/dist/lib/auth.js.map +1 -1
- package/build/dist/lib/grepr-api-client.d.ts.map +1 -1
- package/build/dist/lib/grepr-api-client.js +13 -1
- package/build/dist/lib/grepr-api-client.js.map +1 -1
- package/build/dist/lib/job-graph-transformer.js +1 -1
- package/build/dist/lib/job-graph-transformer.js.map +1 -1
- package/build/dist/lib/json-formatter.d.ts +2 -1
- package/build/dist/lib/json-formatter.d.ts.map +1 -1
- package/build/dist/lib/json-formatter.js +3 -3
- package/build/dist/lib/json-formatter.js.map +1 -1
- package/build/dist/lib/option-parsers.d.ts +11 -0
- package/build/dist/lib/option-parsers.d.ts.map +1 -0
- package/build/dist/lib/option-parsers.js +13 -0
- package/build/dist/lib/option-parsers.js.map +1 -0
- package/build/dist/lib/output-format.d.ts +16 -0
- package/build/dist/lib/output-format.d.ts.map +1 -0
- package/build/dist/lib/output-format.js +25 -0
- package/build/dist/lib/output-format.js.map +1 -0
- package/build/dist/lib/streaming-job-executor.d.ts +1 -0
- package/build/dist/lib/streaming-job-executor.d.ts.map +1 -1
- package/build/dist/lib/streaming-job-executor.js +28 -9
- package/build/dist/lib/streaming-job-executor.js.map +1 -1
- package/build/dist/openapi/openApiTypes.d.ts +10714 -6008
- package/build/dist/openapi/openApiTypes.d.ts.map +1 -1
- package/build/dist/openapi/openApiTypes.js +519 -362
- package/build/dist/openapi/openApiTypes.js.map +1 -1
- package/build/dist/types.d.ts +5 -4
- package/build/dist/types.d.ts.map +1 -1
- package/build/dist/types.js.map +1 -1
- package/package.json +18 -6
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
* This file was auto-generated by openapi-typescript.
|
|
3
3
|
* Do not make direct changes to the file.
|
|
4
4
|
*/
|
|
5
|
+
export var PathsV1FilesUploadPresignedUrlPostParametersQueryFormat;
|
|
6
|
+
(function (PathsV1FilesUploadPresignedUrlPostParametersQueryFormat) {
|
|
7
|
+
PathsV1FilesUploadPresignedUrlPostParametersQueryFormat["json"] = "json";
|
|
8
|
+
PathsV1FilesUploadPresignedUrlPostParametersQueryFormat["plaintext"] = "plaintext";
|
|
9
|
+
})(PathsV1FilesUploadPresignedUrlPostParametersQueryFormat || (PathsV1FilesUploadPresignedUrlPostParametersQueryFormat = {}));
|
|
5
10
|
export var PathsV1JobsGetParametersQueryExecution;
|
|
6
11
|
(function (PathsV1JobsGetParametersQueryExecution) {
|
|
7
12
|
PathsV1JobsGetParametersQueryExecution["SYNCHRONOUS"] = "SYNCHRONOUS";
|
|
@@ -33,6 +38,20 @@ export var PathsV1JobsGetParametersQueryState;
|
|
|
33
38
|
PathsV1JobsGetParametersQueryState["ROLLING_BACK"] = "ROLLING_BACK";
|
|
34
39
|
PathsV1JobsGetParametersQueryState["DELETING"] = "DELETING";
|
|
35
40
|
})(PathsV1JobsGetParametersQueryState || (PathsV1JobsGetParametersQueryState = {}));
|
|
41
|
+
export var ActivityLogsSearchLogTypes;
|
|
42
|
+
(function (ActivityLogsSearchLogTypes) {
|
|
43
|
+
ActivityLogsSearchLogTypes["INTEGRATION_IMPORT"] = "INTEGRATION_IMPORT";
|
|
44
|
+
ActivityLogsSearchLogTypes["INTEGRATION_STATISTICS"] = "INTEGRATION_STATISTICS";
|
|
45
|
+
ActivityLogsSearchLogTypes["JOB_EXECUTION"] = "JOB_EXECUTION";
|
|
46
|
+
ActivityLogsSearchLogTypes["USER_ACTIVITY"] = "USER_ACTIVITY";
|
|
47
|
+
ActivityLogsSearchLogTypes["SECURITY_EVENT"] = "SECURITY_EVENT";
|
|
48
|
+
})(ActivityLogsSearchLogTypes || (ActivityLogsSearchLogTypes = {}));
|
|
49
|
+
export var ActivityLogsSearchStatuses;
|
|
50
|
+
(function (ActivityLogsSearchStatuses) {
|
|
51
|
+
ActivityLogsSearchStatuses["INFO"] = "INFO";
|
|
52
|
+
ActivityLogsSearchStatuses["WARNING"] = "WARNING";
|
|
53
|
+
ActivityLogsSearchStatuses["ERROR"] = "ERROR";
|
|
54
|
+
})(ActivityLogsSearchStatuses || (ActivityLogsSearchStatuses = {}));
|
|
36
55
|
export var AddToListAttributeActionType;
|
|
37
56
|
(function (AddToListAttributeActionType) {
|
|
38
57
|
AddToListAttributeActionType["attribute_add_action"] = "attribute-add-action";
|
|
@@ -41,6 +60,61 @@ export var AggregationAccumulatorAccumulatorType;
|
|
|
41
60
|
(function (AggregationAccumulatorAccumulatorType) {
|
|
42
61
|
AggregationAccumulatorAccumulatorType["AVERAGE"] = "AVERAGE";
|
|
43
62
|
})(AggregationAccumulatorAccumulatorType || (AggregationAccumulatorAccumulatorType = {}));
|
|
63
|
+
export var AggregationDeclFn;
|
|
64
|
+
(function (AggregationDeclFn) {
|
|
65
|
+
AggregationDeclFn["LATEST"] = "LATEST";
|
|
66
|
+
AggregationDeclFn["SUM"] = "SUM";
|
|
67
|
+
AggregationDeclFn["AVG"] = "AVG";
|
|
68
|
+
AggregationDeclFn["CUMULATIVE"] = "CUMULATIVE";
|
|
69
|
+
AggregationDeclFn["DEFAULT"] = "DEFAULT";
|
|
70
|
+
AggregationDeclFn["PERCENTILE"] = "PERCENTILE";
|
|
71
|
+
AggregationDeclFn["SLOPE"] = "SLOPE";
|
|
72
|
+
})(AggregationDeclFn || (AggregationDeclFn = {}));
|
|
73
|
+
export var AllQueryNodeType;
|
|
74
|
+
(function (AllQueryNodeType) {
|
|
75
|
+
AllQueryNodeType["all_query_node"] = "all-query-node";
|
|
76
|
+
})(AllQueryNodeType || (AllQueryNodeType = {}));
|
|
77
|
+
export var AndEventPredicateType;
|
|
78
|
+
(function (AndEventPredicateType) {
|
|
79
|
+
AndEventPredicateType["and_predicate"] = "and-predicate";
|
|
80
|
+
})(AndEventPredicateType || (AndEventPredicateType = {}));
|
|
81
|
+
export var AndQueryNodeType;
|
|
82
|
+
(function (AndQueryNodeType) {
|
|
83
|
+
AndQueryNodeType["and_query_node"] = "and-query-node";
|
|
84
|
+
})(AndQueryNodeType || (AndQueryNodeType = {}));
|
|
85
|
+
export var AttributeKeyTermNodeType;
|
|
86
|
+
(function (AttributeKeyTermNodeType) {
|
|
87
|
+
AttributeKeyTermNodeType["attribute_key_term_node"] = "attribute-key-term-node";
|
|
88
|
+
})(AttributeKeyTermNodeType || (AttributeKeyTermNodeType = {}));
|
|
89
|
+
export var AttributeNodeType;
|
|
90
|
+
(function (AttributeNodeType) {
|
|
91
|
+
AttributeNodeType["attribute_node"] = "attribute-node";
|
|
92
|
+
})(AttributeNodeType || (AttributeNodeType = {}));
|
|
93
|
+
export var AttributePrefixNodeType;
|
|
94
|
+
(function (AttributePrefixNodeType) {
|
|
95
|
+
AttributePrefixNodeType["attribute_prefix_node"] = "attribute-prefix-node";
|
|
96
|
+
})(AttributePrefixNodeType || (AttributePrefixNodeType = {}));
|
|
97
|
+
export var AttributeRe2NodeType;
|
|
98
|
+
(function (AttributeRe2NodeType) {
|
|
99
|
+
AttributeRe2NodeType["attribute_re2_node"] = "attribute-re2-node";
|
|
100
|
+
})(AttributeRe2NodeType || (AttributeRe2NodeType = {}));
|
|
101
|
+
export var AttributeWildcardNodeType;
|
|
102
|
+
(function (AttributeWildcardNodeType) {
|
|
103
|
+
AttributeWildcardNodeType["attribute_wildcard_node"] = "attribute-wildcard-node";
|
|
104
|
+
})(AttributeWildcardNodeType || (AttributeWildcardNodeType = {}));
|
|
105
|
+
export var AttributeWithComparatorNodeComparator;
|
|
106
|
+
(function (AttributeWithComparatorNodeComparator) {
|
|
107
|
+
AttributeWithComparatorNodeComparator["GREATER_THAN"] = "GREATER_THAN";
|
|
108
|
+
AttributeWithComparatorNodeComparator["GREATER_THAN_OR_EQUAL"] = "GREATER_THAN_OR_EQUAL";
|
|
109
|
+
AttributeWithComparatorNodeComparator["LESS_THAN"] = "LESS_THAN";
|
|
110
|
+
AttributeWithComparatorNodeComparator["LESS_THAN_OR_EQUAL"] = "LESS_THAN_OR_EQUAL";
|
|
111
|
+
AttributeWithComparatorNodeComparator["EQUAL"] = "EQUAL";
|
|
112
|
+
AttributeWithComparatorNodeComparator["NOT_EQUAL"] = "NOT_EQUAL";
|
|
113
|
+
})(AttributeWithComparatorNodeComparator || (AttributeWithComparatorNodeComparator = {}));
|
|
114
|
+
export var AttributeWithComparatorNodeType;
|
|
115
|
+
(function (AttributeWithComparatorNodeType) {
|
|
116
|
+
AttributeWithComparatorNodeType["attribute_comparator_node"] = "attribute-comparator-node";
|
|
117
|
+
})(AttributeWithComparatorNodeType || (AttributeWithComparatorNodeType = {}));
|
|
44
118
|
export var AverageAttributesMergeStrategyType;
|
|
45
119
|
(function (AverageAttributesMergeStrategyType) {
|
|
46
120
|
AverageAttributesMergeStrategyType["avg"] = "avg";
|
|
@@ -86,6 +160,10 @@ export var CloudTrailLogsFileSourceType;
|
|
|
86
160
|
(function (CloudTrailLogsFileSourceType) {
|
|
87
161
|
CloudTrailLogsFileSourceType["cloudtrail_file_source"] = "cloudtrail-file-source";
|
|
88
162
|
})(CloudTrailLogsFileSourceType || (CloudTrailLogsFileSourceType = {}));
|
|
163
|
+
export var CompleteSpanType;
|
|
164
|
+
(function (CompleteSpanType) {
|
|
165
|
+
CompleteSpanType["complete_span"] = "complete_span";
|
|
166
|
+
})(CompleteSpanType || (CompleteSpanType = {}));
|
|
89
167
|
export var CompositeAttributesMergeStrategyType;
|
|
90
168
|
(function (CompositeAttributesMergeStrategyType) {
|
|
91
169
|
CompositeAttributesMergeStrategyType["composite"] = "composite";
|
|
@@ -94,6 +172,16 @@ export var ConstantSamplingType;
|
|
|
94
172
|
(function (ConstantSamplingType) {
|
|
95
173
|
ConstantSamplingType["constant_sampling"] = "constant-sampling";
|
|
96
174
|
})(ConstantSamplingType || (ConstantSamplingType = {}));
|
|
175
|
+
export var DatabaseUserInfoType;
|
|
176
|
+
(function (DatabaseUserInfoType) {
|
|
177
|
+
DatabaseUserInfoType["DATABASE"] = "DATABASE";
|
|
178
|
+
})(DatabaseUserInfoType || (DatabaseUserInfoType = {}));
|
|
179
|
+
export var DatadogLogAgentSourceOffsetResetStrategy;
|
|
180
|
+
(function (DatadogLogAgentSourceOffsetResetStrategy) {
|
|
181
|
+
DatadogLogAgentSourceOffsetResetStrategy["EARLIEST"] = "EARLIEST";
|
|
182
|
+
DatadogLogAgentSourceOffsetResetStrategy["LATEST"] = "LATEST";
|
|
183
|
+
DatadogLogAgentSourceOffsetResetStrategy["NONE"] = "NONE";
|
|
184
|
+
})(DatadogLogAgentSourceOffsetResetStrategy || (DatadogLogAgentSourceOffsetResetStrategy = {}));
|
|
97
185
|
export var DatadogLogAgentSourceType;
|
|
98
186
|
(function (DatadogLogAgentSourceType) {
|
|
99
187
|
DatadogLogAgentSourceType["datadog_log_agent_source"] = "datadog-log-agent-source";
|
|
@@ -126,6 +214,21 @@ export var DatadogTraceSinkType;
|
|
|
126
214
|
(function (DatadogTraceSinkType) {
|
|
127
215
|
DatadogTraceSinkType["datadog_trace_sink"] = "datadog-trace-sink";
|
|
128
216
|
})(DatadogTraceSinkType || (DatadogTraceSinkType = {}));
|
|
217
|
+
export var DoubleDatapointMetricType;
|
|
218
|
+
(function (DoubleDatapointMetricType) {
|
|
219
|
+
DoubleDatapointMetricType["UNSPECIFIED_DOUBLE"] = "UNSPECIFIED_DOUBLE";
|
|
220
|
+
DoubleDatapointMetricType["GAUGE_DOUBLE"] = "GAUGE_DOUBLE";
|
|
221
|
+
DoubleDatapointMetricType["RATE_DOUBLE"] = "RATE_DOUBLE";
|
|
222
|
+
DoubleDatapointMetricType["COUNT_DOUBLE"] = "COUNT_DOUBLE";
|
|
223
|
+
})(DoubleDatapointMetricType || (DoubleDatapointMetricType = {}));
|
|
224
|
+
export var DoubleDatapointType;
|
|
225
|
+
(function (DoubleDatapointType) {
|
|
226
|
+
DoubleDatapointType["double_datapoint"] = "double-datapoint";
|
|
227
|
+
})(DoubleDatapointType || (DoubleDatapointType = {}));
|
|
228
|
+
export var EntityContextAggregationType;
|
|
229
|
+
(function (EntityContextAggregationType) {
|
|
230
|
+
EntityContextAggregationType["entity_context_aggregation"] = "entity-context-aggregation";
|
|
231
|
+
})(EntityContextAggregationType || (EntityContextAggregationType = {}));
|
|
129
232
|
export var EventActionRuleType;
|
|
130
233
|
(function (EventActionRuleType) {
|
|
131
234
|
EventActionRuleType["event_rule"] = "event-rule";
|
|
@@ -138,6 +241,17 @@ export var EventPredicateTriggerType;
|
|
|
138
241
|
(function (EventPredicateTriggerType) {
|
|
139
242
|
EventPredicateTriggerType["event_predicate"] = "event-predicate";
|
|
140
243
|
})(EventPredicateTriggerType || (EventPredicateTriggerType = {}));
|
|
244
|
+
export var EventRecordJobState;
|
|
245
|
+
(function (EventRecordJobState) {
|
|
246
|
+
EventRecordJobState["HEARTBEAT"] = "HEARTBEAT";
|
|
247
|
+
EventRecordJobState["RUNNING"] = "RUNNING";
|
|
248
|
+
EventRecordJobState["FAILED"] = "FAILED";
|
|
249
|
+
EventRecordJobState["FINISHED"] = "FINISHED";
|
|
250
|
+
EventRecordJobState["CANCELLED"] = "CANCELLED";
|
|
251
|
+
EventRecordJobState["TIMED_OUT"] = "TIMED_OUT";
|
|
252
|
+
EventRecordJobState["UNKNOWN"] = "UNKNOWN";
|
|
253
|
+
EventRecordJobState["SCANNED_MAX"] = "SCANNED_MAX";
|
|
254
|
+
})(EventRecordJobState || (EventRecordJobState = {}));
|
|
141
255
|
export var ExactAttributesMergeStrategyType;
|
|
142
256
|
(function (ExactAttributesMergeStrategyType) {
|
|
143
257
|
ExactAttributesMergeStrategyType["exact"] = "exact";
|
|
@@ -146,6 +260,16 @@ export var ExternalSourceTriggerType;
|
|
|
146
260
|
(function (ExternalSourceTriggerType) {
|
|
147
261
|
ExternalSourceTriggerType["external_source"] = "external-source";
|
|
148
262
|
})(ExternalSourceTriggerType || (ExternalSourceTriggerType = {}));
|
|
263
|
+
export var GreprLlmPromptResultsSourceSortOrder;
|
|
264
|
+
(function (GreprLlmPromptResultsSourceSortOrder) {
|
|
265
|
+
GreprLlmPromptResultsSourceSortOrder["ASCENDING"] = "ASCENDING";
|
|
266
|
+
GreprLlmPromptResultsSourceSortOrder["DESCENDING"] = "DESCENDING";
|
|
267
|
+
GreprLlmPromptResultsSourceSortOrder["UNSORTED"] = "UNSORTED";
|
|
268
|
+
})(GreprLlmPromptResultsSourceSortOrder || (GreprLlmPromptResultsSourceSortOrder = {}));
|
|
269
|
+
export var GreprLlmPromptResultsSourceType;
|
|
270
|
+
(function (GreprLlmPromptResultsSourceType) {
|
|
271
|
+
GreprLlmPromptResultsSourceType["grepr_llm_prompt_results_source"] = "grepr-llm-prompt-results-source";
|
|
272
|
+
})(GreprLlmPromptResultsSourceType || (GreprLlmPromptResultsSourceType = {}));
|
|
149
273
|
export var GreprMetricsSourceMetrics;
|
|
150
274
|
(function (GreprMetricsSourceMetrics) {
|
|
151
275
|
GreprMetricsSourceMetrics["table_totalBytes"] = "table_totalBytes";
|
|
@@ -159,12 +283,6 @@ export var GreprMetricsSourceType;
|
|
|
159
283
|
(function (GreprMetricsSourceType) {
|
|
160
284
|
GreprMetricsSourceType["grepr_metrics_source"] = "grepr-metrics-source";
|
|
161
285
|
})(GreprMetricsSourceType || (GreprMetricsSourceType = {}));
|
|
162
|
-
export var GreprRawLogsSourceSortOrder;
|
|
163
|
-
(function (GreprRawLogsSourceSortOrder) {
|
|
164
|
-
GreprRawLogsSourceSortOrder["ASCENDING"] = "ASCENDING";
|
|
165
|
-
GreprRawLogsSourceSortOrder["DESCENDING"] = "DESCENDING";
|
|
166
|
-
GreprRawLogsSourceSortOrder["UNSORTED"] = "UNSORTED";
|
|
167
|
-
})(GreprRawLogsSourceSortOrder || (GreprRawLogsSourceSortOrder = {}));
|
|
168
286
|
export var GreprRawLogsSourceType;
|
|
169
287
|
(function (GreprRawLogsSourceType) {
|
|
170
288
|
GreprRawLogsSourceType["grepr_raw_log_source"] = "grepr-raw-log-source";
|
|
@@ -173,6 +291,10 @@ export var GreprReducerLogSourceType;
|
|
|
173
291
|
(function (GreprReducerLogSourceType) {
|
|
174
292
|
GreprReducerLogSourceType["grepr_reducer_log_source"] = "grepr-reducer-log-source";
|
|
175
293
|
})(GreprReducerLogSourceType || (GreprReducerLogSourceType = {}));
|
|
294
|
+
export var GreprUploadedLogFileSourceType;
|
|
295
|
+
(function (GreprUploadedLogFileSourceType) {
|
|
296
|
+
GreprUploadedLogFileSourceType["grepr_uploaded_log_file_source"] = "grepr-uploaded-log-file-source";
|
|
297
|
+
})(GreprUploadedLogFileSourceType || (GreprUploadedLogFileSourceType = {}));
|
|
176
298
|
export var GreprVendorSourceType;
|
|
177
299
|
(function (GreprVendorSourceType) {
|
|
178
300
|
GreprVendorSourceType["GreprVendorSource"] = "GreprVendorSource";
|
|
@@ -181,6 +303,10 @@ export var GrokParserType;
|
|
|
181
303
|
(function (GrokParserType) {
|
|
182
304
|
GrokParserType["grok_parser"] = "grok-parser";
|
|
183
305
|
})(GrokParserType || (GrokParserType = {}));
|
|
306
|
+
export var IcebergLogsReplaySourceType;
|
|
307
|
+
(function (IcebergLogsReplaySourceType) {
|
|
308
|
+
IcebergLogsReplaySourceType["logs_iceberg_replay_source"] = "logs-iceberg-replay-source";
|
|
309
|
+
})(IcebergLogsReplaySourceType || (IcebergLogsReplaySourceType = {}));
|
|
184
310
|
export var IgnoreAttributesMergeStrategyType;
|
|
185
311
|
(function (IgnoreAttributesMergeStrategyType) {
|
|
186
312
|
IgnoreAttributesMergeStrategyType["ignore"] = "ignore";
|
|
@@ -193,6 +319,23 @@ export var JsonLogProcessorType;
|
|
|
193
319
|
(function (JsonLogProcessorType) {
|
|
194
320
|
JsonLogProcessorType["json_log_processor"] = "json-log-processor";
|
|
195
321
|
})(JsonLogProcessorType || (JsonLogProcessorType = {}));
|
|
322
|
+
export var LlmPromptOutputActions;
|
|
323
|
+
(function (LlmPromptOutputActions) {
|
|
324
|
+
LlmPromptOutputActions["FORWARD_TO_SINKS"] = "FORWARD_TO_SINKS";
|
|
325
|
+
})(LlmPromptOutputActions || (LlmPromptOutputActions = {}));
|
|
326
|
+
export var LlmPromptResponseFormat;
|
|
327
|
+
(function (LlmPromptResponseFormat) {
|
|
328
|
+
LlmPromptResponseFormat["TEXT"] = "TEXT";
|
|
329
|
+
LlmPromptResponseFormat["JSON"] = "JSON";
|
|
330
|
+
})(LlmPromptResponseFormat || (LlmPromptResponseFormat = {}));
|
|
331
|
+
export var LlmPromptType;
|
|
332
|
+
(function (LlmPromptType) {
|
|
333
|
+
LlmPromptType["llm_prompt"] = "llm-prompt";
|
|
334
|
+
})(LlmPromptType || (LlmPromptType = {}));
|
|
335
|
+
export var LlmPromptResultsIcebergTableSourceType;
|
|
336
|
+
(function (LlmPromptResultsIcebergTableSourceType) {
|
|
337
|
+
LlmPromptResultsIcebergTableSourceType["llm_prompt_results_iceberg_table_source"] = "llm-prompt-results-iceberg-table-source";
|
|
338
|
+
})(LlmPromptResultsIcebergTableSourceType || (LlmPromptResultsIcebergTableSourceType = {}));
|
|
196
339
|
export var LogAttributesRemapperType;
|
|
197
340
|
(function (LogAttributesRemapperType) {
|
|
198
341
|
LogAttributesRemapperType["log_attributes_remapper"] = "log-attributes-remapper";
|
|
@@ -205,6 +348,10 @@ export var LogReducerType;
|
|
|
205
348
|
(function (LogReducerType) {
|
|
206
349
|
LogReducerType["log_reducer"] = "log-reducer";
|
|
207
350
|
})(LogReducerType || (LogReducerType = {}));
|
|
351
|
+
export var LogRulesApplicationType;
|
|
352
|
+
(function (LogRulesApplicationType) {
|
|
353
|
+
LogRulesApplicationType["log_rules_application"] = "log-rules-application";
|
|
354
|
+
})(LogRulesApplicationType || (LogRulesApplicationType = {}));
|
|
208
355
|
export var LogTransformActionType;
|
|
209
356
|
(function (LogTransformActionType) {
|
|
210
357
|
LogTransformActionType["log_transform"] = "log-transform";
|
|
@@ -245,6 +392,10 @@ export var LogsValuesSourceType;
|
|
|
245
392
|
(function (LogsValuesSourceType) {
|
|
246
393
|
LogsValuesSourceType["logs_values_source"] = "logs-values-source";
|
|
247
394
|
})(LogsValuesSourceType || (LogsValuesSourceType = {}));
|
|
395
|
+
export var MaskingRuleConfigType;
|
|
396
|
+
(function (MaskingRuleConfigType) {
|
|
397
|
+
MaskingRuleConfigType["masking"] = "masking";
|
|
398
|
+
})(MaskingRuleConfigType || (MaskingRuleConfigType = {}));
|
|
248
399
|
export var MaxAttributesMergeStrategyType;
|
|
249
400
|
(function (MaxAttributesMergeStrategyType) {
|
|
250
401
|
MaxAttributesMergeStrategyType["max"] = "max";
|
|
@@ -253,17 +404,57 @@ export var MergeMapAttributeActionType;
|
|
|
253
404
|
(function (MergeMapAttributeActionType) {
|
|
254
405
|
MergeMapAttributeActionType["attribute_merge_action"] = "attribute-merge-action";
|
|
255
406
|
})(MergeMapAttributeActionType || (MergeMapAttributeActionType = {}));
|
|
256
|
-
export var
|
|
257
|
-
(function (
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
407
|
+
export var MessageExactMatchNodeType;
|
|
408
|
+
(function (MessageExactMatchNodeType) {
|
|
409
|
+
MessageExactMatchNodeType["message_exact_match_node"] = "message-exact-match-node";
|
|
410
|
+
})(MessageExactMatchNodeType || (MessageExactMatchNodeType = {}));
|
|
411
|
+
export var MessageLengthNodeType;
|
|
412
|
+
(function (MessageLengthNodeType) {
|
|
413
|
+
MessageLengthNodeType["message_length_node"] = "message-length-node";
|
|
414
|
+
})(MessageLengthNodeType || (MessageLengthNodeType = {}));
|
|
415
|
+
export var MessageLengthPredicateType;
|
|
416
|
+
(function (MessageLengthPredicateType) {
|
|
417
|
+
MessageLengthPredicateType["message_length"] = "message-length";
|
|
418
|
+
})(MessageLengthPredicateType || (MessageLengthPredicateType = {}));
|
|
419
|
+
export var MessageNodeType;
|
|
420
|
+
(function (MessageNodeType) {
|
|
421
|
+
MessageNodeType["message_node"] = "message-node";
|
|
422
|
+
})(MessageNodeType || (MessageNodeType = {}));
|
|
423
|
+
export var MessagePrefixNodeType;
|
|
424
|
+
(function (MessagePrefixNodeType) {
|
|
425
|
+
MessagePrefixNodeType["message_prefix_node"] = "message-prefix-node";
|
|
426
|
+
})(MessagePrefixNodeType || (MessagePrefixNodeType = {}));
|
|
427
|
+
export var MessageRe2NodeType;
|
|
428
|
+
(function (MessageRe2NodeType) {
|
|
429
|
+
MessageRe2NodeType["message_re2_node"] = "message-re2-node";
|
|
430
|
+
})(MessageRe2NodeType || (MessageRe2NodeType = {}));
|
|
431
|
+
export var MessageWildcardNodeType;
|
|
432
|
+
(function (MessageWildcardNodeType) {
|
|
433
|
+
MessageWildcardNodeType["message_wildcard_node"] = "message-wildcard-node";
|
|
434
|
+
})(MessageWildcardNodeType || (MessageWildcardNodeType = {}));
|
|
435
|
+
export var MetricAggSpecSpaceAggregation;
|
|
436
|
+
(function (MetricAggSpecSpaceAggregation) {
|
|
437
|
+
MetricAggSpecSpaceAggregation["LATEST"] = "LATEST";
|
|
438
|
+
MetricAggSpecSpaceAggregation["SUM"] = "SUM";
|
|
439
|
+
MetricAggSpecSpaceAggregation["AVG"] = "AVG";
|
|
440
|
+
MetricAggSpecSpaceAggregation["MAX"] = "MAX";
|
|
441
|
+
})(MetricAggSpecSpaceAggregation || (MetricAggSpecSpaceAggregation = {}));
|
|
442
|
+
export var MetricDataType;
|
|
443
|
+
(function (MetricDataType) {
|
|
444
|
+
MetricDataType["metricdata"] = "metricdata";
|
|
445
|
+
})(MetricDataType || (MetricDataType = {}));
|
|
263
446
|
export var MetricEventPredicateType;
|
|
264
447
|
(function (MetricEventPredicateType) {
|
|
265
448
|
MetricEventPredicateType["metric_predicate"] = "metric-predicate";
|
|
266
449
|
})(MetricEventPredicateType || (MetricEventPredicateType = {}));
|
|
450
|
+
export var MetricReducerType;
|
|
451
|
+
(function (MetricReducerType) {
|
|
452
|
+
MetricReducerType["metric_reducer"] = "metric-reducer";
|
|
453
|
+
})(MetricReducerType || (MetricReducerType = {}));
|
|
454
|
+
export var MetricReducerSqlType;
|
|
455
|
+
(function (MetricReducerSqlType) {
|
|
456
|
+
MetricReducerSqlType["metric_reducer_sql"] = "metric-reducer-sql";
|
|
457
|
+
})(MetricReducerSqlType || (MetricReducerSqlType = {}));
|
|
267
458
|
export var MetricsIcebergTableSinkType;
|
|
268
459
|
(function (MetricsIcebergTableSinkType) {
|
|
269
460
|
MetricsIcebergTableSinkType["metrics_iceberg_table_sink"] = "metrics-iceberg-table-sink";
|
|
@@ -292,10 +483,18 @@ export var NewRelicQueryPredicateType;
|
|
|
292
483
|
(function (NewRelicQueryPredicateType) {
|
|
293
484
|
NewRelicQueryPredicateType["newrelic_query"] = "newrelic-query";
|
|
294
485
|
})(NewRelicQueryPredicateType || (NewRelicQueryPredicateType = {}));
|
|
486
|
+
export var NotQueryNodeType;
|
|
487
|
+
(function (NotQueryNodeType) {
|
|
488
|
+
NotQueryNodeType["not_query_node"] = "not-query-node";
|
|
489
|
+
})(NotQueryNodeType || (NotQueryNodeType = {}));
|
|
295
490
|
export var NrqlQueryPredicateType;
|
|
296
491
|
(function (NrqlQueryPredicateType) {
|
|
297
492
|
NrqlQueryPredicateType["nrql_query"] = "nrql-query";
|
|
298
493
|
})(NrqlQueryPredicateType || (NrqlQueryPredicateType = {}));
|
|
494
|
+
export var OrQueryNodeType;
|
|
495
|
+
(function (OrQueryNodeType) {
|
|
496
|
+
OrQueryNodeType["or_query_node"] = "or-query-node";
|
|
497
|
+
})(OrQueryNodeType || (OrQueryNodeType = {}));
|
|
299
498
|
export var OtlpLogAgentSourceType;
|
|
300
499
|
(function (OtlpLogAgentSourceType) {
|
|
301
500
|
OtlpLogAgentSourceType["otlp_log_agent_source"] = "otlp-log-agent-source";
|
|
@@ -316,10 +515,109 @@ export var PatternLookupIcebergTableSinkType;
|
|
|
316
515
|
(function (PatternLookupIcebergTableSinkType) {
|
|
317
516
|
PatternLookupIcebergTableSinkType["pattern_lookup_iceberg_table_sink"] = "pattern-lookup-iceberg-table-sink";
|
|
318
517
|
})(PatternLookupIcebergTableSinkType || (PatternLookupIcebergTableSinkType = {}));
|
|
518
|
+
export var PatternMatcherType;
|
|
519
|
+
(function (PatternMatcherType) {
|
|
520
|
+
PatternMatcherType["pattern_matcher"] = "pattern-matcher";
|
|
521
|
+
})(PatternMatcherType || (PatternMatcherType = {}));
|
|
522
|
+
export var PhraseNodeType;
|
|
523
|
+
(function (PhraseNodeType) {
|
|
524
|
+
PhraseNodeType["phrase_node"] = "phrase-node";
|
|
525
|
+
})(PhraseNodeType || (PhraseNodeType = {}));
|
|
526
|
+
export var PipelineStatusHealth;
|
|
527
|
+
(function (PipelineStatusHealth) {
|
|
528
|
+
PipelineStatusHealth["HEALTHY"] = "HEALTHY";
|
|
529
|
+
PipelineStatusHealth["STABILIZING"] = "STABILIZING";
|
|
530
|
+
PipelineStatusHealth["UNHEALTHY"] = "UNHEALTHY";
|
|
531
|
+
PipelineStatusHealth["UNKNOWN"] = "UNKNOWN";
|
|
532
|
+
})(PipelineStatusHealth || (PipelineStatusHealth = {}));
|
|
533
|
+
export var PlanType;
|
|
534
|
+
(function (PlanType) {
|
|
535
|
+
PlanType["TRIAL"] = "TRIAL";
|
|
536
|
+
PlanType["INVOICE"] = "INVOICE";
|
|
537
|
+
})(PlanType || (PlanType = {}));
|
|
319
538
|
export var PreserveAllAttributesMergeStrategyType;
|
|
320
539
|
(function (PreserveAllAttributesMergeStrategyType) {
|
|
321
540
|
PreserveAllAttributesMergeStrategyType["preserve"] = "preserve";
|
|
322
541
|
})(PreserveAllAttributesMergeStrategyType || (PreserveAllAttributesMergeStrategyType = {}));
|
|
542
|
+
export var QueryJobInfoStatus;
|
|
543
|
+
(function (QueryJobInfoStatus) {
|
|
544
|
+
QueryJobInfoStatus["PENDING"] = "PENDING";
|
|
545
|
+
QueryJobInfoStatus["RUNNING"] = "RUNNING";
|
|
546
|
+
QueryJobInfoStatus["FINISHED"] = "FINISHED";
|
|
547
|
+
QueryJobInfoStatus["UNKNOWN"] = "UNKNOWN";
|
|
548
|
+
QueryJobInfoStatus["FAILED"] = "FAILED";
|
|
549
|
+
QueryJobInfoStatus["TIMEOUT"] = "TIMEOUT";
|
|
550
|
+
QueryJobInfoStatus["CANCELLED"] = "CANCELLED";
|
|
551
|
+
})(QueryJobInfoStatus || (QueryJobInfoStatus = {}));
|
|
552
|
+
export var RagType;
|
|
553
|
+
(function (RagType) {
|
|
554
|
+
RagType["rag"] = "rag";
|
|
555
|
+
})(RagType || (RagType = {}));
|
|
556
|
+
export var ReadFeatureFlags;
|
|
557
|
+
(function (ReadFeatureFlags) {
|
|
558
|
+
ReadFeatureFlags["DATADOG_BROWSER_LOGS_INTEGRATION"] = "DATADOG_BROWSER_LOGS_INTEGRATION";
|
|
559
|
+
ReadFeatureFlags["METRICS_SOURCE"] = "METRICS_SOURCE";
|
|
560
|
+
ReadFeatureFlags["S3_LOGS_FILE_SOURCE"] = "S3_LOGS_FILE_SOURCE";
|
|
561
|
+
ReadFeatureFlags["PIPELINE_TEMPLATES"] = "PIPELINE_TEMPLATES";
|
|
562
|
+
ReadFeatureFlags["TRACE_PIPELINE_CREATION"] = "TRACE_PIPELINE_CREATION";
|
|
563
|
+
ReadFeatureFlags["AI_WORKFLOWS"] = "AI_WORKFLOWS";
|
|
564
|
+
ReadFeatureFlags["ICEBERG_LOG_SOURCE"] = "ICEBERG_LOG_SOURCE";
|
|
565
|
+
ReadFeatureFlags["QUERY_JOBS"] = "QUERY_JOBS";
|
|
566
|
+
ReadFeatureFlags["AUTH0_SSO_CONNECTION"] = "AUTH0_SSO_CONNECTION";
|
|
567
|
+
ReadFeatureFlags["UNKNOWN"] = "UNKNOWN";
|
|
568
|
+
})(ReadFeatureFlags || (ReadFeatureFlags = {}));
|
|
569
|
+
export var ReadAnthropicType;
|
|
570
|
+
(function (ReadAnthropicType) {
|
|
571
|
+
ReadAnthropicType["anthropic"] = "anthropic";
|
|
572
|
+
})(ReadAnthropicType || (ReadAnthropicType = {}));
|
|
573
|
+
export var ReadDataWarehouseType;
|
|
574
|
+
(function (ReadDataWarehouseType) {
|
|
575
|
+
ReadDataWarehouseType["data_warehouse"] = "data-warehouse";
|
|
576
|
+
})(ReadDataWarehouseType || (ReadDataWarehouseType = {}));
|
|
577
|
+
export var ReadDatadogType;
|
|
578
|
+
(function (ReadDatadogType) {
|
|
579
|
+
ReadDatadogType["datadog"] = "datadog";
|
|
580
|
+
})(ReadDatadogType || (ReadDatadogType = {}));
|
|
581
|
+
export var ReadDatadogMcpType;
|
|
582
|
+
(function (ReadDatadogMcpType) {
|
|
583
|
+
ReadDatadogMcpType["datadog_mcp"] = "datadog-mcp";
|
|
584
|
+
})(ReadDatadogMcpType || (ReadDatadogMcpType = {}));
|
|
585
|
+
export var ReadGeminiType;
|
|
586
|
+
(function (ReadGeminiType) {
|
|
587
|
+
ReadGeminiType["gemini"] = "gemini";
|
|
588
|
+
})(ReadGeminiType || (ReadGeminiType = {}));
|
|
589
|
+
export var ReadNewRelicType;
|
|
590
|
+
(function (ReadNewRelicType) {
|
|
591
|
+
ReadNewRelicType["newrelic"] = "newrelic";
|
|
592
|
+
})(ReadNewRelicType || (ReadNewRelicType = {}));
|
|
593
|
+
export var ReadOpenAiType;
|
|
594
|
+
(function (ReadOpenAiType) {
|
|
595
|
+
ReadOpenAiType["openai"] = "openai";
|
|
596
|
+
})(ReadOpenAiType || (ReadOpenAiType = {}));
|
|
597
|
+
export var ReadOtlpType;
|
|
598
|
+
(function (ReadOtlpType) {
|
|
599
|
+
ReadOtlpType["otlp"] = "otlp";
|
|
600
|
+
})(ReadOtlpType || (ReadOtlpType = {}));
|
|
601
|
+
export var ReadPagerDutyMcpType;
|
|
602
|
+
(function (ReadPagerDutyMcpType) {
|
|
603
|
+
ReadPagerDutyMcpType["pagerduty_mcp"] = "pagerduty-mcp";
|
|
604
|
+
})(ReadPagerDutyMcpType || (ReadPagerDutyMcpType = {}));
|
|
605
|
+
export var ReadS3DataWarehouseType;
|
|
606
|
+
(function (ReadS3DataWarehouseType) {
|
|
607
|
+
ReadS3DataWarehouseType["s3_data_warehouse"] = "s3-data-warehouse";
|
|
608
|
+
})(ReadS3DataWarehouseType || (ReadS3DataWarehouseType = {}));
|
|
609
|
+
export var ReadS3VectorIndexType;
|
|
610
|
+
(function (ReadS3VectorIndexType) {
|
|
611
|
+
ReadS3VectorIndexType["s3_vector_index"] = "s3-vector-index";
|
|
612
|
+
})(ReadS3VectorIndexType || (ReadS3VectorIndexType = {}));
|
|
613
|
+
export var ReadSplunkType;
|
|
614
|
+
(function (ReadSplunkType) {
|
|
615
|
+
ReadSplunkType["splunk"] = "splunk";
|
|
616
|
+
})(ReadSplunkType || (ReadSplunkType = {}));
|
|
617
|
+
export var ReadSumoType;
|
|
618
|
+
(function (ReadSumoType) {
|
|
619
|
+
ReadSumoType["sumo"] = "sumo";
|
|
620
|
+
})(ReadSumoType || (ReadSumoType = {}));
|
|
323
621
|
export var ReducerLogsQuerySourceType;
|
|
324
622
|
(function (ReducerLogsQuerySourceType) {
|
|
325
623
|
ReducerLogsQuerySourceType["reducer_logs_iceberg_table_source"] = "reducer-logs-iceberg-table-source";
|
|
@@ -328,6 +626,18 @@ export var RemoveKeyAttributeActionType;
|
|
|
328
626
|
(function (RemoveKeyAttributeActionType) {
|
|
329
627
|
RemoveKeyAttributeActionType["attribute_remove_action"] = "attribute-remove-action";
|
|
330
628
|
})(RemoveKeyAttributeActionType || (RemoveKeyAttributeActionType = {}));
|
|
629
|
+
export var ResourceFilterResourceType;
|
|
630
|
+
(function (ResourceFilterResourceType) {
|
|
631
|
+
ResourceFilterResourceType["INTEGRATION"] = "INTEGRATION";
|
|
632
|
+
ResourceFilterResourceType["JOB"] = "JOB";
|
|
633
|
+
ResourceFilterResourceType["DATASET"] = "DATASET";
|
|
634
|
+
ResourceFilterResourceType["TEMPLATE"] = "TEMPLATE";
|
|
635
|
+
ResourceFilterResourceType["TEAM"] = "TEAM";
|
|
636
|
+
ResourceFilterResourceType["USER"] = "USER";
|
|
637
|
+
ResourceFilterResourceType["ORGANIZATION_SETTINGS"] = "ORGANIZATION_SETTINGS";
|
|
638
|
+
ResourceFilterResourceType["SERVICE_ACCOUNT"] = "SERVICE_ACCOUNT";
|
|
639
|
+
ResourceFilterResourceType["ORGANIZATION"] = "ORGANIZATION";
|
|
640
|
+
})(ResourceFilterResourceType || (ResourceFilterResourceType = {}));
|
|
331
641
|
export var S3LogsFileSourceType;
|
|
332
642
|
(function (S3LogsFileSourceType) {
|
|
333
643
|
S3LogsFileSourceType["s3_file_source"] = "s3-file-source";
|
|
@@ -336,14 +646,39 @@ export var SamplingAttributesMergeStrategyType;
|
|
|
336
646
|
(function (SamplingAttributesMergeStrategyType) {
|
|
337
647
|
SamplingAttributesMergeStrategyType["sample"] = "sample";
|
|
338
648
|
})(SamplingAttributesMergeStrategyType || (SamplingAttributesMergeStrategyType = {}));
|
|
649
|
+
export var SeverityNodeType;
|
|
650
|
+
(function (SeverityNodeType) {
|
|
651
|
+
SeverityNodeType["severity_node"] = "severity-node";
|
|
652
|
+
})(SeverityNodeType || (SeverityNodeType = {}));
|
|
653
|
+
export var SimpleType;
|
|
654
|
+
(function (SimpleType) {
|
|
655
|
+
SimpleType["simple"] = "simple";
|
|
656
|
+
})(SimpleType || (SimpleType = {}));
|
|
657
|
+
export var SocialUserInfoType;
|
|
658
|
+
(function (SocialUserInfoType) {
|
|
659
|
+
SocialUserInfoType["SOCIAL"] = "SOCIAL";
|
|
660
|
+
})(SocialUserInfoType || (SocialUserInfoType = {}));
|
|
661
|
+
export var SpanSpanKind;
|
|
662
|
+
(function (SpanSpanKind) {
|
|
663
|
+
SpanSpanKind["UNSPECIFIED"] = "UNSPECIFIED";
|
|
664
|
+
SpanSpanKind["INTERNAL"] = "INTERNAL";
|
|
665
|
+
SpanSpanKind["SERVER"] = "SERVER";
|
|
666
|
+
SpanSpanKind["CLIENT"] = "CLIENT";
|
|
667
|
+
SpanSpanKind["PRODUCER"] = "PRODUCER";
|
|
668
|
+
SpanSpanKind["CONSUMER"] = "CONSUMER";
|
|
669
|
+
})(SpanSpanKind || (SpanSpanKind = {}));
|
|
670
|
+
export var SpanDedupIcebergTableSinkType;
|
|
671
|
+
(function (SpanDedupIcebergTableSinkType) {
|
|
672
|
+
SpanDedupIcebergTableSinkType["spans_dedup_iceberg_table_sink"] = "spans-dedup-iceberg-table-sink";
|
|
673
|
+
})(SpanDedupIcebergTableSinkType || (SpanDedupIcebergTableSinkType = {}));
|
|
674
|
+
export var SpansBackfillIcebergTableSourceType;
|
|
675
|
+
(function (SpansBackfillIcebergTableSourceType) {
|
|
676
|
+
SpansBackfillIcebergTableSourceType["spans_backfill_iceberg_table_source"] = "spans-backfill-iceberg-table-source";
|
|
677
|
+
})(SpansBackfillIcebergTableSourceType || (SpansBackfillIcebergTableSourceType = {}));
|
|
339
678
|
export var SpansSynchronousSinkType;
|
|
340
679
|
(function (SpansSynchronousSinkType) {
|
|
341
680
|
SpansSynchronousSinkType["spans_sync_sink"] = "spans-sync-sink";
|
|
342
681
|
})(SpansSynchronousSinkType || (SpansSynchronousSinkType = {}));
|
|
343
|
-
export var SplQueryPredicateType;
|
|
344
|
-
(function (SplQueryPredicateType) {
|
|
345
|
-
SplQueryPredicateType["spl_query"] = "spl-query";
|
|
346
|
-
})(SplQueryPredicateType || (SplQueryPredicateType = {}));
|
|
347
682
|
export var SplunkLogAgentSourceType;
|
|
348
683
|
(function (SplunkLogAgentSourceType) {
|
|
349
684
|
SplunkLogAgentSourceType["splunk_log_agent_source"] = "splunk-log-agent-source";
|
|
@@ -365,6 +700,7 @@ export var SqlOperationInputs;
|
|
|
365
700
|
SqlOperationInputs["VARIANT"] = "VARIANT";
|
|
366
701
|
SqlOperationInputs["LOG_EVENT"] = "LOG_EVENT";
|
|
367
702
|
SqlOperationInputs["COMPLETE_SPAN"] = "COMPLETE_SPAN";
|
|
703
|
+
SqlOperationInputs["METRIC_DATA"] = "METRIC_DATA";
|
|
368
704
|
})(SqlOperationInputs || (SqlOperationInputs = {}));
|
|
369
705
|
export var SqlOperationType;
|
|
370
706
|
(function (SqlOperationType) {
|
|
@@ -378,6 +714,13 @@ export var SqlViewStatementType;
|
|
|
378
714
|
(function (SqlViewStatementType) {
|
|
379
715
|
SqlViewStatementType["sql_view"] = "sql_view";
|
|
380
716
|
})(SqlViewStatementType || (SqlViewStatementType = {}));
|
|
717
|
+
export var StatusCode;
|
|
718
|
+
(function (StatusCode) {
|
|
719
|
+
StatusCode["UNSET"] = "UNSET";
|
|
720
|
+
StatusCode["OK"] = "OK";
|
|
721
|
+
StatusCode["ERROR"] = "ERROR";
|
|
722
|
+
StatusCode["UNRECOGNIZED"] = "UNRECOGNIZED";
|
|
723
|
+
})(StatusCode || (StatusCode = {}));
|
|
381
724
|
export var SumAttributesMergeStrategyType;
|
|
382
725
|
(function (SumAttributesMergeStrategyType) {
|
|
383
726
|
SumAttributesMergeStrategyType["sum"] = "sum";
|
|
@@ -401,6 +744,43 @@ export var TagActionType;
|
|
|
401
744
|
(function (TagActionType) {
|
|
402
745
|
TagActionType["tag_action"] = "tag-action";
|
|
403
746
|
})(TagActionType || (TagActionType = {}));
|
|
747
|
+
export var TagKeyNodeType;
|
|
748
|
+
(function (TagKeyNodeType) {
|
|
749
|
+
TagKeyNodeType["tag_key_node"] = "tag-key-node";
|
|
750
|
+
})(TagKeyNodeType || (TagKeyNodeType = {}));
|
|
751
|
+
export var TagKeyPrefixNodeType;
|
|
752
|
+
(function (TagKeyPrefixNodeType) {
|
|
753
|
+
TagKeyPrefixNodeType["tag_key_prefix_node"] = "tag-key-prefix-node";
|
|
754
|
+
})(TagKeyPrefixNodeType || (TagKeyPrefixNodeType = {}));
|
|
755
|
+
export var TagKeyWildcardNodeType;
|
|
756
|
+
(function (TagKeyWildcardNodeType) {
|
|
757
|
+
TagKeyWildcardNodeType["tag_key_wildcard_node"] = "tag-key-wildcard-node";
|
|
758
|
+
})(TagKeyWildcardNodeType || (TagKeyWildcardNodeType = {}));
|
|
759
|
+
export var TagNodeType;
|
|
760
|
+
(function (TagNodeType) {
|
|
761
|
+
TagNodeType["tag_node"] = "tag-node";
|
|
762
|
+
})(TagNodeType || (TagNodeType = {}));
|
|
763
|
+
export var TagPrefixNodeType;
|
|
764
|
+
(function (TagPrefixNodeType) {
|
|
765
|
+
TagPrefixNodeType["tag_prefix_node"] = "tag-prefix-node";
|
|
766
|
+
})(TagPrefixNodeType || (TagPrefixNodeType = {}));
|
|
767
|
+
export var TagRe2NodeType;
|
|
768
|
+
(function (TagRe2NodeType) {
|
|
769
|
+
TagRe2NodeType["tag_re2_node"] = "tag-re2-node";
|
|
770
|
+
})(TagRe2NodeType || (TagRe2NodeType = {}));
|
|
771
|
+
export var TagWildcardNodeType;
|
|
772
|
+
(function (TagWildcardNodeType) {
|
|
773
|
+
TagWildcardNodeType["tag_wildcard_node"] = "tag-wildcard-node";
|
|
774
|
+
})(TagWildcardNodeType || (TagWildcardNodeType = {}));
|
|
775
|
+
export var TagWithComparatorNodeType;
|
|
776
|
+
(function (TagWithComparatorNodeType) {
|
|
777
|
+
TagWithComparatorNodeType["tag_comparator_node"] = "tag-comparator-node";
|
|
778
|
+
})(TagWithComparatorNodeType || (TagWithComparatorNodeType = {}));
|
|
779
|
+
export var TeamAssignmentRole;
|
|
780
|
+
(function (TeamAssignmentRole) {
|
|
781
|
+
TeamAssignmentRole["LEADER"] = "LEADER";
|
|
782
|
+
TeamAssignmentRole["MEMBER"] = "MEMBER";
|
|
783
|
+
})(TeamAssignmentRole || (TeamAssignmentRole = {}));
|
|
404
784
|
export var TemplateExternalTriggerExceptionType;
|
|
405
785
|
(function (TemplateExternalTriggerExceptionType) {
|
|
406
786
|
TemplateExternalTriggerExceptionType["external_trigger_exception"] = "external-trigger-exception";
|
|
@@ -430,6 +810,10 @@ export var TemplateTraceSamplerExceptionType;
|
|
|
430
810
|
(function (TemplateTraceSamplerExceptionType) {
|
|
431
811
|
TemplateTraceSamplerExceptionType["trace_sampler_exception"] = "trace-sampler-exception";
|
|
432
812
|
})(TemplateTraceSamplerExceptionType || (TemplateTraceSamplerExceptionType = {}));
|
|
813
|
+
export var TimeSeriesRuleConfigType;
|
|
814
|
+
(function (TimeSeriesRuleConfigType) {
|
|
815
|
+
TimeSeriesRuleConfigType["time_series"] = "time-series";
|
|
816
|
+
})(TimeSeriesRuleConfigType || (TimeSeriesRuleConfigType = {}));
|
|
433
817
|
export var TraceReducerType;
|
|
434
818
|
(function (TraceReducerType) {
|
|
435
819
|
TraceReducerType["trace_reducer"] = "trace-reducer";
|
|
@@ -442,129 +826,10 @@ export var TracesIcebergTableSourceType;
|
|
|
442
826
|
(function (TracesIcebergTableSourceType) {
|
|
443
827
|
TracesIcebergTableSourceType["traces_iceberg_table_source"] = "traces-iceberg-table-source";
|
|
444
828
|
})(TracesIcebergTableSourceType || (TracesIcebergTableSourceType = {}));
|
|
445
|
-
export var
|
|
446
|
-
(function (
|
|
447
|
-
|
|
448
|
-
})(
|
|
449
|
-
export var WindowBasedLogarithmicSamplingType;
|
|
450
|
-
(function (WindowBasedLogarithmicSamplingType) {
|
|
451
|
-
WindowBasedLogarithmicSamplingType["window_based_logarithmic_sampling"] = "window-based-logarithmic-sampling";
|
|
452
|
-
})(WindowBasedLogarithmicSamplingType || (WindowBasedLogarithmicSamplingType = {}));
|
|
453
|
-
export var ActivityLogsSearchLogTypes;
|
|
454
|
-
(function (ActivityLogsSearchLogTypes) {
|
|
455
|
-
ActivityLogsSearchLogTypes["INTEGRATION_IMPORT"] = "INTEGRATION_IMPORT";
|
|
456
|
-
ActivityLogsSearchLogTypes["INTEGRATION_STATISTICS"] = "INTEGRATION_STATISTICS";
|
|
457
|
-
ActivityLogsSearchLogTypes["JOB_EXECUTION"] = "JOB_EXECUTION";
|
|
458
|
-
ActivityLogsSearchLogTypes["USER_ACTIVITY"] = "USER_ACTIVITY";
|
|
459
|
-
ActivityLogsSearchLogTypes["SECURITY_EVENT"] = "SECURITY_EVENT";
|
|
460
|
-
})(ActivityLogsSearchLogTypes || (ActivityLogsSearchLogTypes = {}));
|
|
461
|
-
export var ActivityLogsSearchStatuses;
|
|
462
|
-
(function (ActivityLogsSearchStatuses) {
|
|
463
|
-
ActivityLogsSearchStatuses["INFO"] = "INFO";
|
|
464
|
-
ActivityLogsSearchStatuses["WARNING"] = "WARNING";
|
|
465
|
-
ActivityLogsSearchStatuses["ERROR"] = "ERROR";
|
|
466
|
-
})(ActivityLogsSearchStatuses || (ActivityLogsSearchStatuses = {}));
|
|
467
|
-
export var ResourceFilterResourceType;
|
|
468
|
-
(function (ResourceFilterResourceType) {
|
|
469
|
-
ResourceFilterResourceType["INTEGRATION"] = "INTEGRATION";
|
|
470
|
-
ResourceFilterResourceType["JOB"] = "JOB";
|
|
471
|
-
ResourceFilterResourceType["DATASET"] = "DATASET";
|
|
472
|
-
ResourceFilterResourceType["TEMPLATE"] = "TEMPLATE";
|
|
473
|
-
ResourceFilterResourceType["TEAM"] = "TEAM";
|
|
474
|
-
ResourceFilterResourceType["USER"] = "USER";
|
|
475
|
-
ResourceFilterResourceType["ORGANIZATION"] = "ORGANIZATION";
|
|
476
|
-
})(ResourceFilterResourceType || (ResourceFilterResourceType = {}));
|
|
477
|
-
export var ReadDatadogType;
|
|
478
|
-
(function (ReadDatadogType) {
|
|
479
|
-
ReadDatadogType["datadog"] = "datadog";
|
|
480
|
-
})(ReadDatadogType || (ReadDatadogType = {}));
|
|
481
|
-
export var VendorImportedExceptionExceptionType;
|
|
482
|
-
(function (VendorImportedExceptionExceptionType) {
|
|
483
|
-
VendorImportedExceptionExceptionType["DATADOG_MONITOR"] = "DATADOG_MONITOR";
|
|
484
|
-
VendorImportedExceptionExceptionType["DATADOG_DASHBOARD"] = "DATADOG_DASHBOARD";
|
|
485
|
-
VendorImportedExceptionExceptionType["DATADOG_LOG_BASED_METRICS"] = "DATADOG_LOG_BASED_METRICS";
|
|
486
|
-
VendorImportedExceptionExceptionType["SPLUNK_MONITOR"] = "SPLUNK_MONITOR";
|
|
487
|
-
VendorImportedExceptionExceptionType["NEW_RELIC_MONITOR"] = "NEW_RELIC_MONITOR";
|
|
488
|
-
VendorImportedExceptionExceptionType["NEW_RELIC_DASHBOARD"] = "NEW_RELIC_DASHBOARD";
|
|
489
|
-
})(VendorImportedExceptionExceptionType || (VendorImportedExceptionExceptionType = {}));
|
|
490
|
-
export var ReadDataWarehouseType;
|
|
491
|
-
(function (ReadDataWarehouseType) {
|
|
492
|
-
ReadDataWarehouseType["data_warehouse"] = "data-warehouse";
|
|
493
|
-
})(ReadDataWarehouseType || (ReadDataWarehouseType = {}));
|
|
494
|
-
export var ReadS3DataWarehouseType;
|
|
495
|
-
(function (ReadS3DataWarehouseType) {
|
|
496
|
-
ReadS3DataWarehouseType["s3_data_warehouse"] = "s3-data-warehouse";
|
|
497
|
-
})(ReadS3DataWarehouseType || (ReadS3DataWarehouseType = {}));
|
|
498
|
-
export var ReadNewRelicType;
|
|
499
|
-
(function (ReadNewRelicType) {
|
|
500
|
-
ReadNewRelicType["newrelic"] = "newrelic";
|
|
501
|
-
})(ReadNewRelicType || (ReadNewRelicType = {}));
|
|
502
|
-
export var ReadOtlpType;
|
|
503
|
-
(function (ReadOtlpType) {
|
|
504
|
-
ReadOtlpType["otlp"] = "otlp";
|
|
505
|
-
})(ReadOtlpType || (ReadOtlpType = {}));
|
|
506
|
-
export var ReadSplunkType;
|
|
507
|
-
(function (ReadSplunkType) {
|
|
508
|
-
ReadSplunkType["splunk"] = "splunk";
|
|
509
|
-
})(ReadSplunkType || (ReadSplunkType = {}));
|
|
510
|
-
export var ReadSumoType;
|
|
511
|
-
(function (ReadSumoType) {
|
|
512
|
-
ReadSumoType["sumo"] = "sumo";
|
|
513
|
-
})(ReadSumoType || (ReadSumoType = {}));
|
|
514
|
-
export var TeamAssignmentRole;
|
|
515
|
-
(function (TeamAssignmentRole) {
|
|
516
|
-
TeamAssignmentRole["LEADER"] = "LEADER";
|
|
517
|
-
TeamAssignmentRole["MEMBER"] = "MEMBER";
|
|
518
|
-
})(TeamAssignmentRole || (TeamAssignmentRole = {}));
|
|
519
|
-
export var PipelineStatusHealth;
|
|
520
|
-
(function (PipelineStatusHealth) {
|
|
521
|
-
PipelineStatusHealth["HEALTHY"] = "HEALTHY";
|
|
522
|
-
PipelineStatusHealth["STABILIZING"] = "STABILIZING";
|
|
523
|
-
PipelineStatusHealth["UNHEALTHY"] = "UNHEALTHY";
|
|
524
|
-
PipelineStatusHealth["UNKNOWN"] = "UNKNOWN";
|
|
525
|
-
})(PipelineStatusHealth || (PipelineStatusHealth = {}));
|
|
526
|
-
export var CompleteSpanType;
|
|
527
|
-
(function (CompleteSpanType) {
|
|
528
|
-
CompleteSpanType["complete_span"] = "complete_span";
|
|
529
|
-
})(CompleteSpanType || (CompleteSpanType = {}));
|
|
530
|
-
export var DoubleDatapointMetricType;
|
|
531
|
-
(function (DoubleDatapointMetricType) {
|
|
532
|
-
DoubleDatapointMetricType["UNSPECIFIED_DOUBLE"] = "UNSPECIFIED_DOUBLE";
|
|
533
|
-
DoubleDatapointMetricType["GAUGE_DOUBLE"] = "GAUGE_DOUBLE";
|
|
534
|
-
DoubleDatapointMetricType["RATE_DOUBLE"] = "RATE_DOUBLE";
|
|
535
|
-
DoubleDatapointMetricType["COUNT_DOUBLE"] = "COUNT_DOUBLE";
|
|
536
|
-
})(DoubleDatapointMetricType || (DoubleDatapointMetricType = {}));
|
|
537
|
-
export var DoubleDatapointType;
|
|
538
|
-
(function (DoubleDatapointType) {
|
|
539
|
-
DoubleDatapointType["double_datapoint"] = "double-datapoint";
|
|
540
|
-
})(DoubleDatapointType || (DoubleDatapointType = {}));
|
|
541
|
-
export var EventRecordJobState;
|
|
542
|
-
(function (EventRecordJobState) {
|
|
543
|
-
EventRecordJobState["HEARTBEAT"] = "HEARTBEAT";
|
|
544
|
-
EventRecordJobState["RUNNING"] = "RUNNING";
|
|
545
|
-
EventRecordJobState["FAILED"] = "FAILED";
|
|
546
|
-
EventRecordJobState["FINISHED"] = "FINISHED";
|
|
547
|
-
EventRecordJobState["CANCELLED"] = "CANCELLED";
|
|
548
|
-
EventRecordJobState["TIMED_OUT"] = "TIMED_OUT";
|
|
549
|
-
EventRecordJobState["UNKNOWN"] = "UNKNOWN";
|
|
550
|
-
EventRecordJobState["SCANNED_MAX"] = "SCANNED_MAX";
|
|
551
|
-
})(EventRecordJobState || (EventRecordJobState = {}));
|
|
552
|
-
export var SpanSpanKind;
|
|
553
|
-
(function (SpanSpanKind) {
|
|
554
|
-
SpanSpanKind["UNSPECIFIED"] = "UNSPECIFIED";
|
|
555
|
-
SpanSpanKind["INTERNAL"] = "INTERNAL";
|
|
556
|
-
SpanSpanKind["SERVER"] = "SERVER";
|
|
557
|
-
SpanSpanKind["CLIENT"] = "CLIENT";
|
|
558
|
-
SpanSpanKind["PRODUCER"] = "PRODUCER";
|
|
559
|
-
SpanSpanKind["CONSUMER"] = "CONSUMER";
|
|
560
|
-
})(SpanSpanKind || (SpanSpanKind = {}));
|
|
561
|
-
export var StatusCode;
|
|
562
|
-
(function (StatusCode) {
|
|
563
|
-
StatusCode["UNSET"] = "UNSET";
|
|
564
|
-
StatusCode["OK"] = "OK";
|
|
565
|
-
StatusCode["ERROR"] = "ERROR";
|
|
566
|
-
StatusCode["UNRECOGNIZED"] = "UNRECOGNIZED";
|
|
567
|
-
})(StatusCode || (StatusCode = {}));
|
|
829
|
+
export var TriggerActionOpType;
|
|
830
|
+
(function (TriggerActionOpType) {
|
|
831
|
+
TriggerActionOpType["trigger_action"] = "trigger-action";
|
|
832
|
+
})(TriggerActionOpType || (TriggerActionOpType = {}));
|
|
568
833
|
export var VariantType;
|
|
569
834
|
(function (VariantType) {
|
|
570
835
|
VariantType["OBJECT"] = "OBJECT";
|
|
@@ -584,244 +849,136 @@ export var VariantType;
|
|
|
584
849
|
VariantType["TIMESTAMP_LTZ"] = "TIMESTAMP_LTZ";
|
|
585
850
|
VariantType["BYTES"] = "BYTES";
|
|
586
851
|
})(VariantType || (VariantType = {}));
|
|
587
|
-
export var
|
|
588
|
-
(function (
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
(
|
|
604
|
-
ReadFeatureFlags["DATADOG_BROWSER_LOGS_INTEGRATION"] = "DATADOG_BROWSER_LOGS_INTEGRATION";
|
|
605
|
-
ReadFeatureFlags["DARK_MODE"] = "DARK_MODE";
|
|
606
|
-
ReadFeatureFlags["METRICS_SOURCE"] = "METRICS_SOURCE";
|
|
607
|
-
ReadFeatureFlags["S3_LOGS_FILE_SOURCE"] = "S3_LOGS_FILE_SOURCE";
|
|
608
|
-
ReadFeatureFlags["PIPELINE_TEMPLATES"] = "PIPELINE_TEMPLATES";
|
|
609
|
-
ReadFeatureFlags["TRACE_PIPELINE_CREATION"] = "TRACE_PIPELINE_CREATION";
|
|
610
|
-
ReadFeatureFlags["UNKNOWN"] = "UNKNOWN";
|
|
611
|
-
})(ReadFeatureFlags || (ReadFeatureFlags = {}));
|
|
612
|
-
export var AllQueryNodeType;
|
|
613
|
-
(function (AllQueryNodeType) {
|
|
614
|
-
AllQueryNodeType["all_query_node"] = "all-query-node";
|
|
615
|
-
})(AllQueryNodeType || (AllQueryNodeType = {}));
|
|
616
|
-
export var AndQueryNodeType;
|
|
617
|
-
(function (AndQueryNodeType) {
|
|
618
|
-
AndQueryNodeType["and_query_node"] = "and-query-node";
|
|
619
|
-
})(AndQueryNodeType || (AndQueryNodeType = {}));
|
|
620
|
-
export var AttributeKeyTermNodeType;
|
|
621
|
-
(function (AttributeKeyTermNodeType) {
|
|
622
|
-
AttributeKeyTermNodeType["attribute_key_term_node"] = "attribute-key-term-node";
|
|
623
|
-
})(AttributeKeyTermNodeType || (AttributeKeyTermNodeType = {}));
|
|
624
|
-
export var AttributeNodeType;
|
|
625
|
-
(function (AttributeNodeType) {
|
|
626
|
-
AttributeNodeType["attribute_node"] = "attribute-node";
|
|
627
|
-
})(AttributeNodeType || (AttributeNodeType = {}));
|
|
628
|
-
export var AttributePrefixNodeType;
|
|
629
|
-
(function (AttributePrefixNodeType) {
|
|
630
|
-
AttributePrefixNodeType["attribute_prefix_node"] = "attribute-prefix-node";
|
|
631
|
-
})(AttributePrefixNodeType || (AttributePrefixNodeType = {}));
|
|
632
|
-
export var AttributeRe2NodeType;
|
|
633
|
-
(function (AttributeRe2NodeType) {
|
|
634
|
-
AttributeRe2NodeType["attribute_re2_node"] = "attribute-re2-node";
|
|
635
|
-
})(AttributeRe2NodeType || (AttributeRe2NodeType = {}));
|
|
636
|
-
export var AttributeWildcardNodeType;
|
|
637
|
-
(function (AttributeWildcardNodeType) {
|
|
638
|
-
AttributeWildcardNodeType["attribute_wildcard_node"] = "attribute-wildcard-node";
|
|
639
|
-
})(AttributeWildcardNodeType || (AttributeWildcardNodeType = {}));
|
|
640
|
-
export var AttributeWithComparatorNodeComparator;
|
|
641
|
-
(function (AttributeWithComparatorNodeComparator) {
|
|
642
|
-
AttributeWithComparatorNodeComparator["GREATER_THAN"] = "GREATER_THAN";
|
|
643
|
-
AttributeWithComparatorNodeComparator["GREATER_THAN_OR_EQUAL"] = "GREATER_THAN_OR_EQUAL";
|
|
644
|
-
AttributeWithComparatorNodeComparator["LESS_THAN"] = "LESS_THAN";
|
|
645
|
-
AttributeWithComparatorNodeComparator["LESS_THAN_OR_EQUAL"] = "LESS_THAN_OR_EQUAL";
|
|
646
|
-
AttributeWithComparatorNodeComparator["EQUAL"] = "EQUAL";
|
|
647
|
-
AttributeWithComparatorNodeComparator["NOT_EQUAL"] = "NOT_EQUAL";
|
|
648
|
-
})(AttributeWithComparatorNodeComparator || (AttributeWithComparatorNodeComparator = {}));
|
|
649
|
-
export var AttributeWithComparatorNodeType;
|
|
650
|
-
(function (AttributeWithComparatorNodeType) {
|
|
651
|
-
AttributeWithComparatorNodeType["attribute_comparator_node"] = "attribute-comparator-node";
|
|
652
|
-
})(AttributeWithComparatorNodeType || (AttributeWithComparatorNodeType = {}));
|
|
653
|
-
export var MessageExactMatchNodeType;
|
|
654
|
-
(function (MessageExactMatchNodeType) {
|
|
655
|
-
MessageExactMatchNodeType["message_exact_match_node"] = "message-exact-match-node";
|
|
656
|
-
})(MessageExactMatchNodeType || (MessageExactMatchNodeType = {}));
|
|
657
|
-
export var MessageNodeType;
|
|
658
|
-
(function (MessageNodeType) {
|
|
659
|
-
MessageNodeType["message_node"] = "message-node";
|
|
660
|
-
})(MessageNodeType || (MessageNodeType = {}));
|
|
661
|
-
export var MessagePrefixNodeType;
|
|
662
|
-
(function (MessagePrefixNodeType) {
|
|
663
|
-
MessagePrefixNodeType["message_prefix_node"] = "message-prefix-node";
|
|
664
|
-
})(MessagePrefixNodeType || (MessagePrefixNodeType = {}));
|
|
665
|
-
export var MessageRe2NodeType;
|
|
666
|
-
(function (MessageRe2NodeType) {
|
|
667
|
-
MessageRe2NodeType["message_re2_node"] = "message-re2-node";
|
|
668
|
-
})(MessageRe2NodeType || (MessageRe2NodeType = {}));
|
|
669
|
-
export var MessageWildcardNodeType;
|
|
670
|
-
(function (MessageWildcardNodeType) {
|
|
671
|
-
MessageWildcardNodeType["message_wildcard_node"] = "message-wildcard-node";
|
|
672
|
-
})(MessageWildcardNodeType || (MessageWildcardNodeType = {}));
|
|
673
|
-
export var NotQueryNodeType;
|
|
674
|
-
(function (NotQueryNodeType) {
|
|
675
|
-
NotQueryNodeType["not_query_node"] = "not-query-node";
|
|
676
|
-
})(NotQueryNodeType || (NotQueryNodeType = {}));
|
|
677
|
-
export var OrQueryNodeType;
|
|
678
|
-
(function (OrQueryNodeType) {
|
|
679
|
-
OrQueryNodeType["or_query_node"] = "or-query-node";
|
|
680
|
-
})(OrQueryNodeType || (OrQueryNodeType = {}));
|
|
681
|
-
export var PhraseNodeType;
|
|
682
|
-
(function (PhraseNodeType) {
|
|
683
|
-
PhraseNodeType["phrase_node"] = "phrase-node";
|
|
684
|
-
})(PhraseNodeType || (PhraseNodeType = {}));
|
|
685
|
-
export var SeverityNodeType;
|
|
686
|
-
(function (SeverityNodeType) {
|
|
687
|
-
SeverityNodeType["severity_node"] = "severity-node";
|
|
688
|
-
})(SeverityNodeType || (SeverityNodeType = {}));
|
|
689
|
-
export var TagKeyNodeType;
|
|
690
|
-
(function (TagKeyNodeType) {
|
|
691
|
-
TagKeyNodeType["tag_key_node"] = "tag-key-node";
|
|
692
|
-
})(TagKeyNodeType || (TagKeyNodeType = {}));
|
|
693
|
-
export var TagKeyPrefixNodeType;
|
|
694
|
-
(function (TagKeyPrefixNodeType) {
|
|
695
|
-
TagKeyPrefixNodeType["tag_key_prefix_node"] = "tag-key-prefix-node";
|
|
696
|
-
})(TagKeyPrefixNodeType || (TagKeyPrefixNodeType = {}));
|
|
697
|
-
export var TagKeyWildcardNodeType;
|
|
698
|
-
(function (TagKeyWildcardNodeType) {
|
|
699
|
-
TagKeyWildcardNodeType["tag_key_wildcard_node"] = "tag-key-wildcard-node";
|
|
700
|
-
})(TagKeyWildcardNodeType || (TagKeyWildcardNodeType = {}));
|
|
701
|
-
export var TagNodeType;
|
|
702
|
-
(function (TagNodeType) {
|
|
703
|
-
TagNodeType["tag_node"] = "tag-node";
|
|
704
|
-
})(TagNodeType || (TagNodeType = {}));
|
|
705
|
-
export var TagPrefixNodeType;
|
|
706
|
-
(function (TagPrefixNodeType) {
|
|
707
|
-
TagPrefixNodeType["tag_prefix_node"] = "tag-prefix-node";
|
|
708
|
-
})(TagPrefixNodeType || (TagPrefixNodeType = {}));
|
|
709
|
-
export var TagRe2NodeType;
|
|
710
|
-
(function (TagRe2NodeType) {
|
|
711
|
-
TagRe2NodeType["tag_re2_node"] = "tag-re2-node";
|
|
712
|
-
})(TagRe2NodeType || (TagRe2NodeType = {}));
|
|
713
|
-
export var TagWildcardNodeType;
|
|
714
|
-
(function (TagWildcardNodeType) {
|
|
715
|
-
TagWildcardNodeType["tag_wildcard_node"] = "tag-wildcard-node";
|
|
716
|
-
})(TagWildcardNodeType || (TagWildcardNodeType = {}));
|
|
717
|
-
export var TagWithComparatorNodeType;
|
|
718
|
-
(function (TagWithComparatorNodeType) {
|
|
719
|
-
TagWithComparatorNodeType["tag_comparator_node"] = "tag-comparator-node";
|
|
720
|
-
})(TagWithComparatorNodeType || (TagWithComparatorNodeType = {}));
|
|
721
|
-
export var DatabaseUserInfoType;
|
|
722
|
-
(function (DatabaseUserInfoType) {
|
|
723
|
-
DatabaseUserInfoType["DATABASE"] = "DATABASE";
|
|
724
|
-
})(DatabaseUserInfoType || (DatabaseUserInfoType = {}));
|
|
725
|
-
export var SocialUserInfoType;
|
|
726
|
-
(function (SocialUserInfoType) {
|
|
727
|
-
SocialUserInfoType["SOCIAL"] = "SOCIAL";
|
|
728
|
-
})(SocialUserInfoType || (SocialUserInfoType = {}));
|
|
852
|
+
export var VariantSynchronousSinkType;
|
|
853
|
+
(function (VariantSynchronousSinkType) {
|
|
854
|
+
VariantSynchronousSinkType["variant_sync_sink"] = "variant-sync-sink";
|
|
855
|
+
})(VariantSynchronousSinkType || (VariantSynchronousSinkType = {}));
|
|
856
|
+
export var VendorImportedExceptionExceptionType;
|
|
857
|
+
(function (VendorImportedExceptionExceptionType) {
|
|
858
|
+
VendorImportedExceptionExceptionType["DATADOG_MONITOR"] = "DATADOG_MONITOR";
|
|
859
|
+
VendorImportedExceptionExceptionType["DATADOG_DASHBOARD"] = "DATADOG_DASHBOARD";
|
|
860
|
+
VendorImportedExceptionExceptionType["DATADOG_LOG_BASED_METRICS"] = "DATADOG_LOG_BASED_METRICS";
|
|
861
|
+
VendorImportedExceptionExceptionType["SPLUNK_MONITOR"] = "SPLUNK_MONITOR";
|
|
862
|
+
VendorImportedExceptionExceptionType["NEW_RELIC_MONITOR"] = "NEW_RELIC_MONITOR";
|
|
863
|
+
VendorImportedExceptionExceptionType["NEW_RELIC_DASHBOARD"] = "NEW_RELIC_DASHBOARD";
|
|
864
|
+
})(VendorImportedExceptionExceptionType || (VendorImportedExceptionExceptionType = {}));
|
|
865
|
+
export var WindowBasedLogarithmicSamplingType;
|
|
866
|
+
(function (WindowBasedLogarithmicSamplingType) {
|
|
867
|
+
WindowBasedLogarithmicSamplingType["window_based_logarithmic_sampling"] = "window-based-logarithmic-sampling";
|
|
868
|
+
})(WindowBasedLogarithmicSamplingType || (WindowBasedLogarithmicSamplingType = {}));
|
|
729
869
|
// =============================================================================
|
|
730
870
|
// Auto-generated operation type sets from flink:model
|
|
731
|
-
// DO NOT EDIT - This section is generated by
|
|
871
|
+
// DO NOT EDIT - This section is generated by ModelJarCodeGenTask
|
|
732
872
|
// =============================================================================
|
|
733
|
-
/**
|
|
734
|
-
* Set of all source operation types.
|
|
735
|
-
* These are extracted from classes that extend Source in flink:model.
|
|
736
|
-
*/
|
|
737
873
|
export const SOURCE_TYPES = new Set([
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
874
|
+
'bounded-datadog-source',
|
|
875
|
+
'cloudtrail-file-source',
|
|
876
|
+
'datadog-log-agent-source',
|
|
877
|
+
'datadog-log-cloud-source',
|
|
878
|
+
'datadog-metric-agent-source',
|
|
879
|
+
'datadog-metrics-cloud-source',
|
|
880
|
+
'datadog-trace-agent-source',
|
|
881
|
+
'grepr-llm-prompt-results-source',
|
|
882
|
+
'grepr-metrics-source',
|
|
883
|
+
'grepr-raw-log-source',
|
|
884
|
+
'grepr-raw-span-source',
|
|
885
|
+
'grepr-reducer-log-source',
|
|
886
|
+
'grepr-uploaded-log-file-source',
|
|
887
|
+
'llm-prompt-results-iceberg-table-source',
|
|
888
|
+
'logs-backfill-iceberg-table-source',
|
|
889
|
+
'logs-iceberg-replay-source',
|
|
890
|
+
'logs-iceberg-table-source',
|
|
891
|
+
'logs-values-source',
|
|
892
|
+
'metrics-iceberg-table-source',
|
|
893
|
+
'newrelic-log-agent-source',
|
|
894
|
+
'otlp-log-agent-source',
|
|
895
|
+
'otlp-trace-agent-source',
|
|
896
|
+
'reducer-logs-iceberg-table-source',
|
|
897
|
+
's3-file-source',
|
|
898
|
+
'spans-backfill-iceberg-table-source',
|
|
899
|
+
'splunk-log-agent-source',
|
|
900
|
+
'splunk-log-http-source',
|
|
901
|
+
'sumologic-log-agent-source',
|
|
902
|
+
'traces-iceberg-table-source'
|
|
762
903
|
]);
|
|
763
|
-
/**
|
|
764
|
-
* Set of all sink operation types.
|
|
765
|
-
* These are extracted from classes that extend Sink in flink:model.
|
|
766
|
-
*/
|
|
767
904
|
export const SINK_TYPES = new Set([
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
905
|
+
'datadog-log-sink',
|
|
906
|
+
'datadog-metrics-sink',
|
|
907
|
+
'datadog-stats-sink',
|
|
908
|
+
'datadog-trace-sink',
|
|
909
|
+
'event-dedup-iceberg-table-sink',
|
|
910
|
+
'llm-prompt-results-iceberg-table-sink',
|
|
911
|
+
'logs-iceberg-table-sink',
|
|
912
|
+
'logs-predicates-counter',
|
|
913
|
+
'logs-sync-sink',
|
|
914
|
+
'metrics-iceberg-table-sink',
|
|
915
|
+
'metrics-sync-sink',
|
|
916
|
+
'newrelic-log-sink',
|
|
917
|
+
'otlp-log-sink',
|
|
918
|
+
'otlp-trace-sink',
|
|
919
|
+
'pattern-lookup-iceberg-table-sink',
|
|
920
|
+
'query-sink',
|
|
921
|
+
'spans-dedup-iceberg-table-sink',
|
|
922
|
+
'spans-sync-sink',
|
|
923
|
+
'splunk-log-sink',
|
|
924
|
+
'sumologic-log-sink',
|
|
925
|
+
'variant-sync-sink'
|
|
787
926
|
]);
|
|
788
|
-
/**
|
|
789
|
-
* Set of all operation types (neither source nor sink).
|
|
790
|
-
* These are extracted from classes that extend Operation in flink:model.
|
|
791
|
-
*/
|
|
792
927
|
export const OPERATION_TYPES = new Set([
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
928
|
+
'clone',
|
|
929
|
+
'entity-context-aggregation',
|
|
930
|
+
'grok-parser',
|
|
931
|
+
'json-log-processor',
|
|
932
|
+
'llm-prompt',
|
|
933
|
+
'log-attributes-remapper',
|
|
934
|
+
'log-reducer',
|
|
935
|
+
'log-rules-application',
|
|
936
|
+
'log-transform',
|
|
937
|
+
'logs-branch',
|
|
938
|
+
'logs-event-sampler',
|
|
939
|
+
'logs-filter',
|
|
940
|
+
'pattern-matcher',
|
|
941
|
+
'rule-engine',
|
|
942
|
+
'sql-operation',
|
|
943
|
+
'template-operation',
|
|
944
|
+
'trace-reducer',
|
|
945
|
+
'trace-sampler',
|
|
946
|
+
'trigger-action',
|
|
947
|
+
'union'
|
|
808
948
|
]);
|
|
809
|
-
/**
|
|
810
|
-
* Checks if a given type string is a source operation.
|
|
811
|
-
*/
|
|
812
949
|
export function isSourceType(type) {
|
|
813
950
|
return SOURCE_TYPES.has(type);
|
|
814
951
|
}
|
|
815
|
-
/**
|
|
816
|
-
* Checks if a given type string is a sink operation.
|
|
817
|
-
*/
|
|
818
952
|
export function isSinkType(type) {
|
|
819
953
|
return SINK_TYPES.has(type);
|
|
820
954
|
}
|
|
821
|
-
/**
|
|
822
|
-
* Checks if a given type string is an operation (neither source nor sink).
|
|
823
|
-
*/
|
|
824
955
|
export function isOperationType(type) {
|
|
825
956
|
return OPERATION_TYPES.has(type);
|
|
826
957
|
}
|
|
958
|
+
// =============================================================================
|
|
959
|
+
// Auto-generated LLM attribute constants from flink:model
|
|
960
|
+
// DO NOT EDIT - This section is generated by ModelJarCodeGenTask
|
|
961
|
+
// =============================================================================
|
|
962
|
+
export const LlmAttributes = {
|
|
963
|
+
PREFIX: 'grepr.llm.',
|
|
964
|
+
SUCCESS: 'grepr.llm.success',
|
|
965
|
+
RESULT: 'grepr.llm.result',
|
|
966
|
+
ERROR: 'grepr.llm.error',
|
|
967
|
+
INPUT_TOKENS: 'grepr.llm.inputTokens',
|
|
968
|
+
OUTPUT_TOKENS: 'grepr.llm.outputTokens',
|
|
969
|
+
LATENCY_MS: 'grepr.llm.latencyMs',
|
|
970
|
+
CACHED_INPUT_TOKENS: 'grepr.llm.cachedInputTokens',
|
|
971
|
+
REASONING_TOKENS: 'grepr.llm.reasoningTokens',
|
|
972
|
+
MODEL: 'grepr.llm.model',
|
|
973
|
+
COST_MICRODOLLARS: 'grepr.llm.costMicrodollars',
|
|
974
|
+
ACTIONABLE: 'grepr.llm.actionable',
|
|
975
|
+
PROMPT: 'grepr.llm.prompt',
|
|
976
|
+
ENTITY_CONTEXT: 'grepr.llm.entityContext',
|
|
977
|
+
RULES: 'grepr.llm.rules',
|
|
978
|
+
TRIGGER: 'grepr.llm.trigger',
|
|
979
|
+
TAG_JOB_ID: 'greprJobId',
|
|
980
|
+
TAG_OPERATOR: 'greprLlmOperator',
|
|
981
|
+
TAG_SUCCESS: 'greprLlmSuccess',
|
|
982
|
+
TAG_ACTIONABLE: 'greprLlmActionable'
|
|
983
|
+
};
|
|
827
984
|
//# sourceMappingURL=openApiTypes.js.map
|