Skip to content

Commit 62e8ad2

Browse files
authored
feat(fxcore): Updated dependencies (#175)
1 parent 7cc8ad6 commit 62e8ad2

File tree

7 files changed

+210
-556
lines changed

7 files changed

+210
-556
lines changed

fxcore/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,7 @@ modules:
118118
path: /metrics # metrics route path (default /metrics)
119119
collect:
120120
enabled: true # to collect core http server metrics, disabled by default
121-
namespace: app # core http server metrics namespace (default app.name value)
122-
subsystem: fx-core # core http server metrics subsystem (default fx-core)
121+
namespace: foo # core http server metrics namespace (empty by default)
123122
buckets: 0.1, 1, 10 # to override default request duration buckets
124123
normalize:
125124
request_path: true # to normalize http request path, disabled by default

fxcore/go.mod

Lines changed: 41 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,26 @@ module github.com/ankorstore/yokai/fxcore
33
go 1.20
44

55
require (
6-
github.com/ankorstore/yokai/config v1.2.0
7-
github.com/ankorstore/yokai/fxconfig v1.0.0
8-
github.com/ankorstore/yokai/fxgenerate v1.0.0
9-
github.com/ankorstore/yokai/fxhealthcheck v1.0.0
10-
github.com/ankorstore/yokai/fxlog v1.0.0
11-
github.com/ankorstore/yokai/fxmetrics v1.0.0
12-
github.com/ankorstore/yokai/fxtrace v1.1.0
13-
github.com/ankorstore/yokai/generate v1.0.0
14-
github.com/ankorstore/yokai/healthcheck v1.0.0
15-
github.com/ankorstore/yokai/httpserver v1.1.0
16-
github.com/ankorstore/yokai/log v1.1.0
17-
github.com/ankorstore/yokai/trace v1.1.0
6+
github.com/ankorstore/yokai/config v1.3.0
7+
github.com/ankorstore/yokai/fxconfig v1.1.0
8+
github.com/ankorstore/yokai/fxgenerate v1.1.0
9+
github.com/ankorstore/yokai/fxhealthcheck v1.1.0
10+
github.com/ankorstore/yokai/fxlog v1.1.0
11+
github.com/ankorstore/yokai/fxmetrics v1.1.0
12+
github.com/ankorstore/yokai/fxtrace v1.2.0
13+
github.com/ankorstore/yokai/generate v1.1.0
14+
github.com/ankorstore/yokai/healthcheck v1.1.0
15+
github.com/ankorstore/yokai/httpserver v1.3.0
16+
github.com/ankorstore/yokai/log v1.2.0
17+
github.com/ankorstore/yokai/trace v1.2.0
1818
github.com/arl/statsviz v0.6.0
19-
github.com/labstack/echo/v4 v4.11.1
19+
github.com/labstack/echo/v4 v4.11.4
2020
github.com/prometheus/client_golang v1.19.0
21-
github.com/rs/zerolog v1.31.0
22-
github.com/stretchr/testify v1.8.4
23-
go.opentelemetry.io/otel v1.17.0
24-
go.opentelemetry.io/otel/trace v1.17.0
25-
go.uber.org/fx v1.20.1
21+
github.com/rs/zerolog v1.32.0
22+
github.com/stretchr/testify v1.9.0
23+
go.opentelemetry.io/otel v1.24.0
24+
go.opentelemetry.io/otel/trace v1.24.0
25+
go.uber.org/fx v1.21.0
2626
)
2727

2828
require (
@@ -31,14 +31,14 @@ require (
3131
github.com/cespare/xxhash/v2 v2.2.0 // indirect
3232
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
3333
github.com/fsnotify/fsnotify v1.7.0 // indirect
34-
github.com/go-errors/errors v1.4.2 // indirect
35-
github.com/go-logr/logr v1.2.4 // indirect
34+
github.com/go-errors/errors v1.5.1 // indirect
35+
github.com/go-logr/logr v1.4.1 // indirect
3636
github.com/go-logr/stdr v1.2.2 // indirect
3737
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
38-
github.com/golang/protobuf v1.5.3 // indirect
39-
github.com/google/uuid v1.5.0 // indirect
40-
github.com/gorilla/websocket v1.5.0 // indirect
41-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.0 // indirect
38+
github.com/golang/protobuf v1.5.4 // indirect
39+
github.com/google/uuid v1.6.0 // indirect
40+
github.com/gorilla/websocket v1.5.1 // indirect
41+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.1 // indirect
4242
github.com/hashicorp/hcl v1.0.0 // indirect
4343
github.com/labstack/gommon v0.4.2 // indirect
4444
github.com/magiconair/properties v1.8.7 // indirect
@@ -47,9 +47,9 @@ require (
4747
github.com/mitchellh/mapstructure v1.5.0 // indirect
4848
github.com/pelletier/go-toml/v2 v2.1.1 // indirect
4949
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
50-
github.com/prometheus/client_model v0.5.0 // indirect
50+
github.com/prometheus/client_model v0.6.0 // indirect
5151
github.com/prometheus/common v0.48.0 // indirect
52-
github.com/prometheus/procfs v0.12.0 // indirect
52+
github.com/prometheus/procfs v0.13.0 // indirect
5353
github.com/sagikazarmark/locafero v0.4.0 // indirect
5454
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
5555
github.com/sourcegraph/conc v0.3.0 // indirect
@@ -60,27 +60,25 @@ require (
6060
github.com/subosito/gotenv v1.6.0 // indirect
6161
github.com/valyala/bytebufferpool v1.0.0 // indirect
6262
github.com/valyala/fasttemplate v1.2.2 // indirect
63-
go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.16.0 // indirect
64-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.16.0 // indirect
65-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.16.0 // indirect
66-
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.16.0 // indirect
67-
go.opentelemetry.io/otel/metric v1.17.0 // indirect
68-
go.opentelemetry.io/otel/sdk v1.16.0 // indirect
69-
go.opentelemetry.io/proto/otlp v0.19.0 // indirect
63+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.24.0 // indirect
64+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.24.0 // indirect
65+
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.24.0 // indirect
66+
go.opentelemetry.io/otel/metric v1.24.0 // indirect
67+
go.opentelemetry.io/otel/sdk v1.24.0 // indirect
68+
go.opentelemetry.io/proto/otlp v1.1.0 // indirect
7069
go.uber.org/dig v1.17.1 // indirect
7170
go.uber.org/multierr v1.11.0 // indirect
72-
go.uber.org/zap v1.26.0 // indirect
73-
golang.org/x/crypto v0.18.0 // indirect
74-
golang.org/x/exp v0.0.0-20240110193028-0dcbfd608b1e // indirect
75-
golang.org/x/net v0.20.0 // indirect
76-
golang.org/x/sys v0.16.0 // indirect
71+
go.uber.org/zap v1.27.0 // indirect
72+
golang.org/x/crypto v0.21.0 // indirect
73+
golang.org/x/exp v0.0.0-20240314144324-c7f7c6466f7f // indirect
74+
golang.org/x/net v0.22.0 // indirect
75+
golang.org/x/sys v0.18.0 // indirect
7776
golang.org/x/text v0.14.0 // indirect
7877
golang.org/x/time v0.5.0 // indirect
79-
google.golang.org/genproto v0.0.0-20231106174013-bbf56f31fb17 // indirect
80-
google.golang.org/genproto/googleapis/api v0.0.0-20231106174013-bbf56f31fb17 // indirect
81-
google.golang.org/genproto/googleapis/rpc v0.0.0-20231120223509-83a465c0220f // indirect
82-
google.golang.org/grpc v1.59.0 // indirect
83-
google.golang.org/protobuf v1.32.0 // indirect
78+
google.golang.org/genproto/googleapis/api v0.0.0-20240314234333-6e1732d8331c // indirect
79+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240314234333-6e1732d8331c // indirect
80+
google.golang.org/grpc v1.62.1 // indirect
81+
google.golang.org/protobuf v1.33.0 // indirect
8482
gopkg.in/ini.v1 v1.67.0 // indirect
8583
gopkg.in/yaml.v3 v3.0.1 // indirect
8684
)

0 commit comments

Comments
 (0)