@grepr/cli 1.6.17-dd6a7c6 → 1.6.19-caee98c

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.
@@ -2719,6 +2719,10 @@ export interface components {
2719
2719
  */
2720
2720
  type: AnnualSaasPreCommitmentSummaryType;
2721
2721
  };
2722
+ /** @description Actions applied when an object is flagged anomalous. */
2723
+ AnomalyActions: {
2724
+ objectMetricsPassthrough?: components["schemas"]["ObjectMetricsPassthrough"];
2725
+ };
2722
2726
  /** @description One anomaly rule. */
2723
2727
  AnomalyConfig: {
2724
2728
  /**
@@ -5851,6 +5855,7 @@ export interface components {
5851
5855
  MetricReducer: {
5852
5856
  /** @description Anomaly rules. */
5853
5857
  anomalies?: components["schemas"]["AnomalyConfig"][];
5858
+ anomalyActions?: components["schemas"]["AnomalyActions"];
5854
5859
  cohorts?: components["schemas"]["CohortsConfig"];
5855
5860
  /** @description Drop rules — matching series are discarded outright. */
5856
5861
  dropRules?: components["schemas"]["DropRule"][];
@@ -6084,6 +6089,20 @@ export interface components {
6084
6089
  */
6085
6090
  type: NrqlQueryPredicateType;
6086
6091
  };
6092
+ /** @description When an object is anomalous, de-aggregate its raw datapoints alongside the per-cohort aggregate output, under a suffixed metric name. */
6093
+ ObjectMetricsPassthrough: {
6094
+ /**
6095
+ * @description Whether anomalous objects are de-aggregated (passed through).
6096
+ * @default true
6097
+ */
6098
+ enabled?: boolean;
6099
+ /**
6100
+ * @description Suffix appended to passthrough emits' metric names (e.g. 'cpu.usage' becomes 'cpu.usage.detail'). May be empty to keep the original metric name. Must not collide with any aggregation 'as' suffix on the same cohort calc.
6101
+ * @default .detail
6102
+ * @example .detail
6103
+ */
6104
+ metricSuffix: string;
6105
+ };
6087
6106
  /** @description Object-identity configuration. */
6088
6107
  ObjectsConfig: {
6089
6108
  /**
@@ -9761,6 +9780,7 @@ export type SchemaAndQueryNode = components["schemas"]["AndQueryNode"];
9761
9780
  export type SchemaAnnualCreditPoolSummary = components["schemas"]["AnnualCreditPoolSummary"];
9762
9781
  export type SchemaAnnualDataProcessingSummary = components["schemas"]["AnnualDataProcessingSummary"];
9763
9782
  export type SchemaAnnualSaasPreCommitmentSummary = components["schemas"]["AnnualSaasPreCommitmentSummary"];
9783
+ export type SchemaAnomalyActions = components["schemas"]["AnomalyActions"];
9764
9784
  export type SchemaAnomalyConfig = components["schemas"]["AnomalyConfig"];
9765
9785
  export type SchemaAnthropic = components["schemas"]["Anthropic"];
9766
9786
  export type SchemaAny = components["schemas"]["Any"];
@@ -9950,6 +9970,7 @@ export type SchemaNewRelicLogSink = components["schemas"]["NewRelicLogSink"];
9950
9970
  export type SchemaNewRelicQueryPredicate = components["schemas"]["NewRelicQueryPredicate"];
9951
9971
  export type SchemaNotQueryNode = components["schemas"]["NotQueryNode"];
9952
9972
  export type SchemaNrqlQueryPredicate = components["schemas"]["NrqlQueryPredicate"];
9973
+ export type SchemaObjectMetricsPassthrough = components["schemas"]["ObjectMetricsPassthrough"];
9953
9974
  export type SchemaObjectsConfig = components["schemas"]["ObjectsConfig"];
9954
9975
  export type SchemaOpenAi = components["schemas"]["OpenAi"];
9955
9976
  export type SchemaOperation = components["schemas"]["Operation"];