-
Notifications
You must be signed in to change notification settings - Fork 10
GATEWAYS-4306: exporting metrics for conntrack per zone #21
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
shrouti1995
wants to merge
19
commits into
master
Choose a base branch
from
metrics.addition
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.
Open
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
16b12d1
GATEWAYS-4306: exporting metrics for conntrack per zone
shrouti1995 f33d105
GATEWAYS-4306: scaling with even driven approach
shrouti1995 30b6d58
code cleanup
shrouti1995 79cd030
conntrack destroy rate limiting part 1
shrouti1995 f4b2a6b
refactor
shrouti1995 b98892f
aggregating metrics for conntrack count per zone
shrouti1995 901ac81
trying to fix the static check issue
shrouti1995 a4ae2cd
solve gha issue
shrouti1995 836243b
uncomment code
shrouti1995 ed8d851
Adding test cases
shrouti1995 78c7134
refining code
shrouti1995 71644e4
Update internal/ovsexporter/ovsexporter.go
shrouti1995 b21f8d5
code review suggestions
shrouti1995 a33ec5d
code review suggestions
shrouti1995 8d4ce2d
fixing test cases
shrouti1995 f6ea39e
fixing test cases
shrouti1995 f67d1a8
removing unnecessary files
shrouti1995 6f7a802
Apply suggestions from code review
shrouti1995 4883f1e
review comments addressed
shrouti1995 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
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
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 |
|---|---|---|
| @@ -1,18 +1,30 @@ | ||
| module github.com/digitalocean/openvswitch_exporter | ||
|
|
||
| go 1.15 | ||
| go 1.25 | ||
|
|
||
| require ( | ||
| github.com/digitalocean/go-openvswitch v0.0.0-20201214180534-ce0f183468d8 | ||
| github.com/google/go-cmp v0.5.4 // indirect | ||
| github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect | ||
| github.com/mdlayher/netlink v1.3.2 // indirect | ||
| github.com/prometheus/client_golang v1.9.0 | ||
| github.com/prometheus/common v0.17.0 // indirect | ||
| github.com/prometheus/procfs v0.6.0 // indirect | ||
| github.com/prometheus/prometheus v2.2.1-0.20180315085919-58e2a31db8de+incompatible | ||
| golang.org/x/net v0.0.0-20210222171744-9060382bd457 // indirect | ||
| golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect | ||
| golang.org/x/sys v0.0.0-20210223095934-7937bea0104d // indirect | ||
| google.golang.org/protobuf v1.25.0 // indirect | ||
| github.com/ti-mo/conntrack v0.6.0 | ||
| github.com/ti-mo/netfilter v0.5.3 | ||
| golang.org/x/sync v0.17.0 | ||
| ) | ||
|
|
||
| require ( | ||
| github.com/beorn7/perks v1.0.1 // indirect | ||
| github.com/cespare/xxhash/v2 v2.1.1 // indirect | ||
| github.com/golang/protobuf v1.4.3 // indirect | ||
| github.com/google/go-cmp v0.7.0 // indirect | ||
| github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect | ||
| github.com/mdlayher/genetlink v1.3.2 // indirect | ||
| github.com/mdlayher/netlink v1.8.0 // indirect | ||
| github.com/mdlayher/socket v0.5.1 // indirect | ||
| github.com/pkg/errors v0.9.1 // indirect | ||
| github.com/prometheus/client_model v0.2.0 // indirect | ||
| github.com/prometheus/common v0.15.0 // indirect | ||
| github.com/prometheus/procfs v0.2.0 // indirect | ||
| golang.org/x/net v0.46.0 // indirect | ||
| golang.org/x/sys v0.37.0 // indirect | ||
| google.golang.org/protobuf v1.23.0 // indirect | ||
| ) |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.