-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: Add http/http keyword timeout option (#2142)
* feat: Add timeoutMs field * chore: Update Languages (incl. ko-KR) * Revert "chore: Update Languages (incl. ko-KR)" This reverts commit 349331a. * chore: Update ko-KR selectively * chore: Update en selectively * Merge manually * Reorder and show only if http related monitors * fix: Update Korean translation * fix: Rename timeoutMs to timeout, rename label, make DOUBLE * fix: Change minimum step to 0.1, matching DOUBLE type * Put the sql patch at the end * Update EditMonitor.vue * Colocate timeout with retry, fix clampTimeout logic, show default on 0 * Update src/pages/EditMonitor.vue to remove a comment Co-authored-by: Frank Elsinga <frank@elsinga.de> * Fix merge issue * Update the timeout value while finished editing the interval value --------- Co-authored-by: Louis Lam <louislam@users.noreply.github.com> Co-authored-by: Frank Elsinga <frank@elsinga.de>
- Loading branch information
1 parent
c6e68fa
commit 439b651
Showing
7 changed files
with
56 additions
and
4 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
-- You should not modify if this have pushed to Github, unless it does serious wrong with the db. | ||
BEGIN TRANSACTION; | ||
|
||
ALTER TABLE monitor | ||
ADD timeout DOUBLE default 0 not null; | ||
COMMIT; |
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