@tolinax/ayoune-interfaces 2024.4.30 → 2024.4.31

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.
@@ -1,4 +1,5 @@
1
1
  import { IDefaultFields } from "./IDefaultFields";
2
+ import { ILabel } from "./ILabel";
2
3
  interface ScrapeConfig {
3
4
  job_name: string;
4
5
  metrics_path?: string;
@@ -90,6 +91,20 @@ export interface IPrometheusConfig extends IDefaultFields {
90
91
  name: string;
91
92
  slug: string;
92
93
  host: string;
94
+ includeComputingEntities: boolean;
95
+ excludedComputingEntities: string[];
96
+ includeKPIs: boolean;
97
+ excludedKPIs: string[];
98
+ includeStates: boolean;
99
+ excludedStates: string[];
100
+ includeEvents: boolean;
101
+ excludedEvents: string[];
102
+ includeServices: boolean;
103
+ excludedServices: string[];
104
+ includeMicroServices: boolean;
105
+ excludedMicroServices: string[];
106
+ includeK8Deployments: boolean;
107
+ excludedK8Deployments: string[];
93
108
  scrape_interval?: string;
94
109
  scrape_timeout?: string;
95
110
  scrape_protocols?: string[];
@@ -113,5 +128,6 @@ export interface IPrometheusConfig extends IDefaultFields {
113
128
  tracing?: TracingConfig;
114
129
  createdAt: Date;
115
130
  updatedAt: Date;
131
+ labels: ILabel[];
116
132
  }
117
133
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tolinax/ayoune-interfaces",
3
- "version": "2024.4.30",
3
+ "version": "2024.4.31",
4
4
  "description": "Houses TypeScript interfaces for aYOUne",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",