@abyss-project/monitor 1.0.41 → 1.0.42
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.
|
@@ -7,9 +7,17 @@ export interface IResetSecretPublishTokenApplicationParams {
|
|
|
7
7
|
export interface IGetLogAnalyticsApplicationParams {
|
|
8
8
|
applicationId: string;
|
|
9
9
|
}
|
|
10
|
+
export interface IGetLogAnalyticsApplicationQuery {
|
|
11
|
+
dateValueBefore?: Date;
|
|
12
|
+
dateValueAfter?: Date;
|
|
13
|
+
}
|
|
10
14
|
export interface IGetAnalyticsApplicationParams {
|
|
11
15
|
applicationId: string;
|
|
12
16
|
}
|
|
17
|
+
export interface IGetAnalyticsApplicationQuery {
|
|
18
|
+
dateValueBefore?: Date;
|
|
19
|
+
dateValueAfter?: Date;
|
|
20
|
+
}
|
|
13
21
|
export interface IGetStatsAnalyticsApplicationParams {
|
|
14
22
|
applicationId: string;
|
|
15
23
|
}
|
|
@@ -20,6 +28,10 @@ export interface IGetStatsAnalyticsApplicationQuery {
|
|
|
20
28
|
export interface IGetEndpointAnalyticsApplicationParams {
|
|
21
29
|
applicationId: string;
|
|
22
30
|
}
|
|
31
|
+
export interface IGetEndpointAnalyticsApplicationQuery {
|
|
32
|
+
dateValueBefore?: Date;
|
|
33
|
+
dateValueAfter?: Date;
|
|
34
|
+
}
|
|
23
35
|
export interface IGetEndpointOnPeriodAnalyticsApplicationParams {
|
|
24
36
|
applicationId: string;
|
|
25
37
|
}
|
|
@@ -30,6 +42,14 @@ export interface IGetEndpointOnPeriodAnalyticsApplicationQuery {
|
|
|
30
42
|
export interface IGetSlowerEndpointAnalyticsApplicationParams {
|
|
31
43
|
applicationId: string;
|
|
32
44
|
}
|
|
45
|
+
export interface IGetSlowerEndpointAnalyticsApplicationQuery {
|
|
46
|
+
dateValueBefore?: Date;
|
|
47
|
+
dateValueAfter?: Date;
|
|
48
|
+
}
|
|
33
49
|
export interface ICallPerControllerAnalyticsApplicationParams {
|
|
34
50
|
applicationId: string;
|
|
35
51
|
}
|
|
52
|
+
export interface ICallPerControllerAnalyticsApplicationQuery {
|
|
53
|
+
dateValueBefore?: Date;
|
|
54
|
+
dateValueAfter?: Date;
|
|
55
|
+
}
|