-
-
Notifications
You must be signed in to change notification settings - Fork 7.1k
feat: add Globalping support #6163
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
radulucut
wants to merge
31
commits into
louislam:master
Choose a base branch
from
radulucut:feature/add-globalping-support
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+1,976
β69
Open
Changes from 16 commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
235491b
draft impl
radulucut 8edd260
Merge branch 'master' into feature/add-globalping-support
radulucut 2eabb3b
finalize ping
radulucut f97d2fd
Merge branch 'master' into feature/add-globalping-support
CommanderStorm eb68637
add subtype and http support
radulucut 88c595a
merge
radulucut 082235f
add dns support
radulucut 64628d5
update Details, ignore globalpingDNSResolveTypeOptions
radulucut 7e75ad8
add keyword and json query to http
radulucut d59422f
Merge branch 'master' into feature/add-globalping-support
radulucut 361ba48
revert rename
radulucut d4efaa3
handle TLS info
radulucut 79989dc
update response text, add retries & reorder inputs
radulucut a5c5449
update text & fix issue when ping is 0
radulucut cf916a6
update DNS message
radulucut db4d9d8
fix DNS message, add location default
radulucut d956708
Merge remote-tracking branch 'upstream' into feature/add-globalping-sβ¦
radulucut c7ba733
Merge branch 'master' into feature/add-globalping-support
radulucut afc3d59
review updates
radulucut f9f54bb
remove dns subtype
radulucut 9650498
Merge branch 'master' into feature/add-globalping-support
radulucut a377cb6
implement copilot suggestions
radulucut 80a1b93
Merge branch 'master' into feature/add-globalping-support
radulucut 1f2159f
implement suggestions
radulucut c4e425d
Merge branch 'master' into feature/add-globalping-support
radulucut 0f24c41
suggestions and fixes
radulucut 90d7f1b
Merge branch 'master' into feature/add-globalping-support
radulucut 754346c
Merge branch 'master' into feature/add-globalping-support
radulucut ffdd066
Merge branch 'master' into feature/add-globalping-support
radulucut 7be763d
rename migration, remove conflict
radulucut ebb1071
Merge branch 'master' into feature/add-globalping-support
radulucut File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
db/knex_migrations/2025-10-06-0000-add-globalping-monitor.js
This file contains hidden or 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,17 @@ | ||
| exports.up = function (knex) { | ||
| // Add new columns | ||
| return knex.schema.alterTable("monitor", function (table) { | ||
| table.string("subtype", 255).nullable(); | ||
| table.string("location", 255).nullable(); | ||
| table.string("protocol", 255).nullable(); | ||
| }); | ||
| }; | ||
|
|
||
| exports.down = function (knex) { | ||
| // Drop columns | ||
| return knex.schema.alterTable("monitor", function (table) { | ||
| table.dropColumn("subtype"); | ||
| table.dropColumn("location"); | ||
| table.dropColumn("protocol"); | ||
| }); | ||
| }; | ||
radulucut marked this conversation as resolved.
Show resolved
Hide resolved
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
radulucut marked this conversation as resolved.
Show resolved
Hide resolved
|
This file contains hidden or 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 hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.