Skip to content

Commit e5f3219

Browse files
authored
Merge pull request #5 from Cyb3r-Jak3/package-updates
Package updates
2 parents 5e9587b + d86fcf3 commit e5f3219

File tree

4 files changed

+59
-67
lines changed

4 files changed

+59
-67
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,25 @@ updates:
44
directory: "/"
55
schedule:
66
interval: "weekly"
7+
commit-message:
8+
prefix: "deps:"
79
reviewers:
810
- "Cyb3r-Jak3"
911

1012
- package-ecosystem: "github-actions"
1113
directory: "/"
1214
schedule:
1315
interval: "weekly"
16+
commit-message:
17+
prefix: "deps:"
1418
reviewers:
1519
- "Cyb3r-Jak3"
1620

1721
- package-ecosystem: "gomod"
1822
directory: "/"
1923
schedule:
2024
interval: "weekly"
25+
commit-message:
26+
prefix: "deps:"
2127
reviewers:
2228
- "Cyb3r-Jak3"

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Corresponding flags:
6767
```
6868
-cf_api_email="": cloudflare api email, works with api_key flag
6969
-cf_api_key="": cloudflare api key, works with api_email flag
70-
-cf_api_token="": cloudflare api token (version 0.0.5+, preferred)
70+
-cf_api_token="": cloudflare api token
7171
-cf_zones="": cloudflare zones to export, comma delimited list
7272
-cf_exclude_zones="": cloudflare zones to exclude, comma delimited list
7373
-free_tier=false: scrape only metrics included in free plan, default false
@@ -78,8 +78,6 @@ Corresponding flags:
7878
-metrics_denylist="": cloudflare-exporter metrics to not export, comma delimited list
7979
```
8080

81-
Note: `ZONE_<name>` configuration is not supported as flag.
82-
8381
## List of available metrics
8482
```
8583
# HELP cloudflare_exporter_build_info A metric with a constant '1' value labeled by version, revision, branch, and goversion from which cloudflare_exporter was built.

go.mod

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3,49 +3,48 @@ module github.com/Cyb3r-Jak3/cloudflare-exporter
33
go 1.22
44

55
require (
6-
github.com/biter777/countries v1.7.4
7-
github.com/cloudflare/cloudflare-go v0.94.0
6+
github.com/biter777/countries v1.7.5
7+
github.com/cloudflare/cloudflare-go v0.101.0
88
github.com/machinebox/graphql v0.2.2
99
github.com/nelkinda/health-go v0.0.1
10-
github.com/prometheus/client_golang v1.19.0
10+
github.com/prometheus/client_golang v1.19.1
1111
github.com/sirupsen/logrus v1.9.3
12-
github.com/spf13/cobra v1.8.0
13-
github.com/spf13/viper v1.18.2
12+
github.com/spf13/cobra v1.8.1
13+
github.com/spf13/viper v1.19.0
1414
)
1515

1616
require (
1717
github.com/beorn7/perks v1.0.1 // indirect
1818
github.com/cespare/xxhash/v2 v2.3.0 // indirect
1919
github.com/fsnotify/fsnotify v1.7.0 // indirect
20-
github.com/goccy/go-json v0.10.2 // indirect
20+
github.com/goccy/go-json v0.10.3 // indirect
2121
github.com/google/go-querystring v1.1.0 // indirect
22-
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
23-
github.com/hashicorp/go-retryablehttp v0.7.5 // indirect
2422
github.com/hashicorp/hcl v1.0.0 // indirect
2523
github.com/inconshreveable/mousetrap v1.1.0 // indirect
2624
github.com/magiconair/properties v1.8.7 // indirect
27-
github.com/matryer/is v1.4.0 // indirect
25+
github.com/matryer/is v1.4.1 // indirect
2826
github.com/mitchellh/mapstructure v1.5.0 // indirect
27+
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
2928
github.com/nelkinda/http-go v0.0.1 // indirect
3029
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
3130
github.com/pkg/errors v0.9.1 // indirect
3231
github.com/prometheus/client_model v0.6.1 // indirect
33-
github.com/prometheus/common v0.53.0 // indirect
34-
github.com/prometheus/procfs v0.14.0 // indirect
35-
github.com/sagikazarmark/locafero v0.4.0 // indirect
32+
github.com/prometheus/common v0.55.0 // indirect
33+
github.com/prometheus/procfs v0.15.1 // indirect
34+
github.com/sagikazarmark/locafero v0.6.0 // indirect
3635
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
3736
github.com/sourcegraph/conc v0.3.0 // indirect
3837
github.com/spf13/afero v1.11.0 // indirect
3938
github.com/spf13/cast v1.6.0 // indirect
4039
github.com/spf13/pflag v1.0.5 // indirect
4140
github.com/subosito/gotenv v1.6.0 // indirect
4241
go.uber.org/multierr v1.11.0 // indirect
43-
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 // indirect
44-
golang.org/x/net v0.25.0 // indirect
45-
golang.org/x/sys v0.20.0 // indirect
46-
golang.org/x/text v0.15.0 // indirect
47-
golang.org/x/time v0.5.0 // indirect
48-
google.golang.org/protobuf v1.34.1 // indirect
42+
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
43+
golang.org/x/net v0.27.0 // indirect
44+
golang.org/x/sys v0.23.0 // indirect
45+
golang.org/x/text v0.16.0 // indirect
46+
golang.org/x/time v0.6.0 // indirect
47+
google.golang.org/protobuf v1.34.2 // indirect
4948
gopkg.in/ini.v1 v1.67.0 // indirect
5049
gopkg.in/yaml.v3 v3.0.1 // indirect
5150
)

0 commit comments

Comments
 (0)