@tolinax/ayoune-interfaces 2024.4.30 → 2024.4.32

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 {};
@@ -618,3 +618,4 @@ export * from "./IReportEntry";
618
618
  export * from "./ILighthouseResults";
619
619
  export * from "./IBrandBiddingInfo";
620
620
  export * from "./IImageEntry";
621
+ export * from "./IPrometheusConfig";
@@ -634,3 +634,4 @@ __exportStar(require("./IReportEntry"), exports);
634
634
  __exportStar(require("./ILighthouseResults"), exports);
635
635
  __exportStar(require("./IBrandBiddingInfo"), exports);
636
636
  __exportStar(require("./IImageEntry"), exports);
637
+ __exportStar(require("./IPrometheusConfig"), exports);
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.32",
4
4
  "description": "Houses TypeScript interfaces for aYOUne",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",