-
Notifications
You must be signed in to change notification settings - Fork 232
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor code for improved readability and consistency across Monitor…
… components
- Loading branch information
Showing
13 changed files
with
258 additions
and
235 deletions.
There are no files selected for viewing
2 changes: 0 additions & 2 deletions
2
Common/Server/Utils/Monitor/Criteria/MetricMonitorCriteria.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,24 @@ | ||
enum RollingTime { | ||
Past1Minute = "Past 1 Minute", | ||
Past5Minutes = "Past 5 Minutes", | ||
Past10Minutes = "Past 10 Minutes", | ||
Past15Minutes = "Past 15 Minutes", | ||
Past30Minutes = "Past 30 Minutes", | ||
Past1Hour = "Past 1 Hour", | ||
Past2Hours = "Past 2 Hours", | ||
Past3Hours = "Past 3 Hours", | ||
Past6Hours = "Past 6 Hours", | ||
Past12Hours = "Past 12 Hours", | ||
Past1Hours = "Past 1 Day", | ||
Past2Days = "Past 2 Days", | ||
Past3Days = "Past 3 Days", | ||
Past7Days = "Past 7 Days", | ||
Past14Days = "Past 14 Days", | ||
Past30Days = "Past 30 Days", | ||
Past60Days = "Past 60 Days", | ||
Past90Days = "Past 90 Days", | ||
Past180Days = "Past 180 Days", | ||
Past365Days = "Past 365 Days", | ||
enum RollingTime { | ||
Past1Minute = "Past 1 Minute", | ||
Past5Minutes = "Past 5 Minutes", | ||
Past10Minutes = "Past 10 Minutes", | ||
Past15Minutes = "Past 15 Minutes", | ||
Past30Minutes = "Past 30 Minutes", | ||
Past1Hour = "Past 1 Hour", | ||
Past2Hours = "Past 2 Hours", | ||
Past3Hours = "Past 3 Hours", | ||
Past6Hours = "Past 6 Hours", | ||
Past12Hours = "Past 12 Hours", | ||
Past1Hours = "Past 1 Day", | ||
Past2Days = "Past 2 Days", | ||
Past3Days = "Past 3 Days", | ||
Past7Days = "Past 7 Days", | ||
Past14Days = "Past 14 Days", | ||
Past30Days = "Past 30 Days", | ||
Past60Days = "Past 60 Days", | ||
Past90Days = "Past 90 Days", | ||
Past180Days = "Past 180 Days", | ||
Past365Days = "Past 365 Days", | ||
} | ||
|
||
|
||
export default RollingTime; | ||
export default RollingTime; |
Oops, something went wrong.