-
-
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: added monitor with gRPC Co-authored-by: minhhn3 <minhhn3@vng.com.vn>
- Loading branch information
1 parent
70aa8fe
commit dcecd10
Showing
9 changed files
with
960 additions
and
36 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,25 @@ | ||
-- You should not modify if this have pushed to Github, unless it does serious wrong with the db. | ||
BEGIN TRANSACTION; | ||
|
||
ALTER TABLE monitor | ||
ADD grpc_url VARCHAR(255) default null; | ||
|
||
ALTER TABLE monitor | ||
ADD grpc_protobuf TEXT default null; | ||
|
||
ALTER TABLE monitor | ||
ADD grpc_body TEXT default null; | ||
|
||
ALTER TABLE monitor | ||
ADD grpc_metadata TEXT default null; | ||
|
||
ALTER TABLE monitor | ||
ADD grpc_method VARCHAR(255) default null; | ||
|
||
ALTER TABLE monitor | ||
ADD grpc_service_name VARCHAR(255) default null; | ||
|
||
ALTER TABLE monitor | ||
ADD grpc_enable_tls BOOLEAN default 0 not null; | ||
|
||
COMMIT; |
Large diffs are not rendered by default.
Oops, something went wrong.
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
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