forked from muety/json-log-exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
25 lines (21 loc) · 734 Bytes
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
module github.com/phillipunzen/json-log-exporter
go 1.21
toolchain go1.21.4
require (
github.com/hpcloud/tail v1.0.0
github.com/prometheus/client_golang v1.19.0
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/fsnotify/fsnotify v1.5.4 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/prometheus/client_model v0.6.1 // indirect
github.com/prometheus/common v0.53.0 // indirect
github.com/prometheus/procfs v0.14.0 // indirect
golang.org/x/sys v0.19.0 // indirect
google.golang.org/protobuf v1.34.0 // indirect
gopkg.in/fsnotify.v1 v1.4.7 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
)