@grepr/cli 1.6.21-fc5180c → 1.6.23-fd4eee2

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.
@@ -2606,6 +2606,11 @@ export interface components {
2606
2606
  type: AddToListAttributeActionType;
2607
2607
  value: components["schemas"]["Any"];
2608
2608
  };
2609
+ /**
2610
+ * @description Aggregation function.
2611
+ * @enum {string}
2612
+ */
2613
+ AggType: AggType;
2609
2614
  AggregationAccumulator: {
2610
2615
  /** @enum {string} */
2611
2616
  accumulatorType?: AggregationAccumulatorAccumulatorType;
@@ -2618,11 +2623,7 @@ export interface components {
2618
2623
  args?: Record<string, never>[];
2619
2624
  /** @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). */
2620
2625
  as?: string;
2621
- /**
2622
- * @description Aggregation function.
2623
- * @enum {string}
2624
- */
2625
- fn: AggregationDeclFn;
2626
+ fn: components["schemas"]["AggType"];
2626
2627
  };
2627
2628
  /**
2628
2629
  * AI Pipeline Inputs Schema
@@ -5911,6 +5912,15 @@ export interface components {
5911
5912
  /** @example operation_name */
5912
5913
  name: string;
5913
5914
  objects: components["schemas"]["ObjectsConfig"];
5915
+ /**
5916
+ * @description Per-metric-name overrides for space (cross-object) aggregation.
5917
+ * @example {
5918
+ * "system.cpu.utilization": "AVG"
5919
+ * }
5920
+ */
5921
+ spaceAggOverrides?: {
5922
+ [key: string]: components["schemas"]["AggType"];
5923
+ };
5914
5924
  timeGranularity: components["schemas"]["TimeGranularity"];
5915
5925
  /**
5916
5926
  * @description Metric reducer. (enum property replaced by openapi-typescript)
@@ -6256,6 +6266,13 @@ export interface components {
6256
6266
  * @example https://logs.example.com:4318/v1/logs
6257
6267
  */
6258
6268
  logsEndpoint?: string;
6269
+ /**
6270
+ * @description Wire encoding for outbound OTLP HTTP requests.
6271
+ * @default proto
6272
+ * @example proto
6273
+ * @enum {string}
6274
+ */
6275
+ outputEncoding?: OtlpOutputEncoding;
6259
6276
  /**
6260
6277
  * @description A unique token generated by Grepr in plain-text
6261
6278
  * @example plain-text-secret
@@ -8930,7 +8947,7 @@ export interface components {
8930
8947
  * }
8931
8948
  */
8932
8949
  aggFnOverrides?: {
8933
- [key: string]: AggregationDeclFn;
8950
+ [key: string]: components["schemas"]["AggType"];
8934
8951
  };
8935
8952
  /**
8936
8953
  * Format: ISO-8601
@@ -17107,20 +17124,21 @@ export declare enum ActivityLogsSearchStatuses {
17107
17124
  export declare enum AddToListAttributeActionType {
17108
17125
  attribute_add_action = "attribute-add-action"
17109
17126
  }
17110
- export declare enum AggregationAccumulatorAccumulatorType {
17111
- AVERAGE = "AVERAGE"
17112
- }
17113
- export declare enum AggregationDeclFn {
17127
+ export declare enum AggType {
17114
17128
  LATEST = "LATEST",
17115
17129
  SUM = "SUM",
17116
17130
  AVG = "AVG",
17117
17131
  CUMULATIVE = "CUMULATIVE",
17132
+ CUMULATIVE_UPDOWN = "CUMULATIVE_UPDOWN",
17118
17133
  DEFAULT = "DEFAULT",
17119
17134
  PERCENTILE = "PERCENTILE",
17120
17135
  SLOPE = "SLOPE",
17121
17136
  MAX = "MAX",
17122
17137
  MIN = "MIN"
17123
17138
  }
17139
+ export declare enum AggregationAccumulatorAccumulatorType {
17140
+ AVERAGE = "AVERAGE"
17141
+ }
17124
17142
  export declare enum AllQueryNodeType {
17125
17143
  all_query_node = "all-query-node"
17126
17144
  }
@@ -17469,6 +17487,10 @@ export declare enum NrqlQueryPredicateType {
17469
17487
  export declare enum OrQueryNodeType {
17470
17488
  or_query_node = "or-query-node"
17471
17489
  }
17490
+ export declare enum OtlpOutputEncoding {
17491
+ proto = "proto",
17492
+ json = "json"
17493
+ }
17472
17494
  export declare enum OtlpLogAgentSourceType {
17473
17495
  otlp_log_agent_source = "otlp-log-agent-source"
17474
17496
  }