-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for LoadBalancing metrics (#60)
* git: Add gitignore file * feat: Export LoadBalancer analytics metrics This commit enables support for exporting LoadBalancer analytics metrics. LoadBalancer's pool health is reported: * 1 -> health * 0 -> unhealthy as long as the number of requests each pool receives from each CFL network location[1] 1. https://developers.cloudflare.com/load-balancing/reference/load-balancing-analytics/#graphql-analytics * feat: Export browser map page views count Export browser_map_page_views_count requests metric
- Loading branch information
1 parent
1df59e2
commit 8e97133
Showing
5 changed files
with
156 additions
and
0 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 @@ | ||
# Binaries for programs and plugins | ||
*.exe | ||
*.exe~ | ||
*.dll | ||
*.so | ||
*.dylib | ||
|
||
# Test binary, built with `go test -c` | ||
*.test | ||
|
||
# Output of the go coverage tool, specifically when used with LiteIDE | ||
*.out | ||
|
||
# Local environment | ||
.envrc | ||
|
||
# Bin directory | ||
bin/ | ||
|
||
# Dependency directories (remove the comment below to include it) | ||
vendor/ | ||
|
||
# editors | ||
*.swp | ||
|
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