Skip to content
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

Fix zookeeper and nacos issues working as registry, metadata and configcenter #2369

Merged
merged 26 commits into from
Nov 3, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
2a4625d
add metrics base api interface (#2350)
FoghostCn Jul 7, 2023
12bcf73
Introduce metrics bus (#2351)
FinalT Jul 7, 2023
1f4b1c8
add medata and config center metrics (#2357)
FoghostCn Jul 18, 2023
96dcff5
Merge branch 'main' into feature-metrics
chickenlj Jul 19, 2023
459d2ba
update go mod
chickenlj Jul 19, 2023
5063f88
enhance metadat report
chickenlj Jul 21, 2023
d0c3564
add metadata rt metrics (#2363)
FoghostCn Jul 26, 2023
82e9849
add registry metrics (#2366)
FinalT Jul 31, 2023
413c894
Merge branch 'main' into feature-metrics
chickenlj Jul 31, 2023
9654cce
fix zookeeper and nacos issues working as registry, metadata and conf…
chickenlj Aug 4, 2023
9401430
fix compilation
chickenlj Aug 4, 2023
f5b88b2
Merge branch 'main' of https://github.com/apache/dubbo-go
chickenlj Aug 4, 2023
80a053c
disable nacos empty address list protection
chickenlj Aug 4, 2023
acfa5d7
Merge branch 'main' into admin-matadata-reporter
chickenlj Aug 4, 2023
28797e5
add nil check
chickenlj Aug 6, 2023
9954fbc
defer unlock
chickenlj Aug 15, 2023
cd875c0
code format
chickenlj Aug 15, 2023
0db0a77
fmt code
chickenlj Aug 15, 2023
c07f9a2
update makefile
chickenlj Aug 15, 2023
9da87c7
Merge branch 'main' of https://github.com/apache/dubbo-go
chickenlj Aug 16, 2023
9b393c3
Merge branch 'main' into admin-matadata-reporter
chickenlj Aug 16, 2023
ba1e33e
go mod tidy
chickenlj Aug 16, 2023
3078fbf
revert makefile change
chickenlj Aug 28, 2023
cceb287
Merge branch 'main' into admin-matadata-reporter
chickenlj Nov 2, 2023
ffbb58c
Get rid of config package dependency
chickenlj Nov 2, 2023
f902690
fix ut
chickenlj Nov 2, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
code format
  • Loading branch information
chickenlj committed Aug 15, 2023
commit cd875c029ab603cf9d284a9e2fd17f8df5eb3c46
3 changes: 2 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ require (
github.com/dubbogo/go-zookeeper v1.0.4-0.20211212162352-f9d2183d89d5
github.com/dubbogo/gost v1.14.0
github.com/dubbogo/grpc-go v1.42.10
github.com/dubbogo/tools v1.0.9 // indirect
github.com/dubbogo/triple v1.2.2-rc3
github.com/dustin/go-humanize v1.0.1
github.com/emicklei/go-restful/v3 v3.10.1
Expand All @@ -35,7 +36,7 @@ require (
github.com/jinzhu/copier v0.3.5
github.com/knadh/koanf v1.5.0
github.com/kr/pretty v0.3.0 // indirect
github.com/magiconair/properties v1.8.1
github.com/magiconair/properties v1.8.5
github.com/mattn/go-colorable v0.1.13
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
github.com/mitchellh/mapstructure v1.5.0
Expand Down
Loading