-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from imryao/master
Reuse grpc connections to improve performance
- Loading branch information
Showing
6 changed files
with
568 additions
and
82 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 |
---|---|---|
@@ -1 +1,2 @@ | ||
/dist | ||
/dist | ||
.idea |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ dist: bionic | |
language: go | ||
|
||
go: | ||
- "1.15" | ||
- "1.17" | ||
services: | ||
- docker | ||
addons: | ||
|
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,14 +1,27 @@ | ||
module github.com/wi1dcard/v2ray-exporter | ||
|
||
go 1.15 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/jessevdk/go-flags v1.4.0 | ||
github.com/prometheus/client_golang v1.6.0 | ||
github.com/sirupsen/logrus v1.6.0 | ||
golang.org/x/text v0.3.2 // indirect | ||
google.golang.org/grpc v1.29.1 | ||
v2ray.com/core v4.19.1+incompatible | ||
github.com/prometheus/client_golang v1.11.0 | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/v2fly/v2ray-core/v4 v4.44.0 | ||
google.golang.org/grpc v1.43.0 | ||
) | ||
|
||
replace v2ray.com/core => github.com/v2ray/v2ray-core v1.24.5-0.20200610141238-f9935d0e93ea | ||
require ( | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.1 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect | ||
github.com/pires/go-proxyproto v0.6.1 // indirect | ||
github.com/prometheus/client_model v0.2.0 // indirect | ||
github.com/prometheus/common v0.26.0 // indirect | ||
github.com/prometheus/procfs v0.6.0 // indirect | ||
golang.org/x/net v0.0.0-20210903162142-ad29c8ab022f // indirect | ||
golang.org/x/sys v0.0.0-20210903071746-97244b99971b // indirect | ||
golang.org/x/text v0.3.6 // indirect | ||
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect | ||
google.golang.org/protobuf v1.27.1 // indirect | ||
) |
Oops, something went wrong.