forked from ConSol-Monitoring/snclient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
72 lines (68 loc) · 3.07 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
module github.com/consol-monitoring/snclient
go 1.22.0
// use fork with pulled patches
replace github.com/shirou/gopsutil/v3 => github.com/sni/gopsutil/v3 v3.0.0-20240506201943-915d2ad98f31
require (
github.com/beevik/ntp v1.4.3
github.com/capnspacehook/taskmaster v0.0.0-20210519235353-1629df7c85e9
github.com/consol-monitoring/check_nsc_web/pkg/checknscweb v0.0.0-20240321161425-fd9209e96e1f
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
github.com/go-chi/chi/v5 v5.0.12
github.com/go-ole/go-ole v1.3.0
github.com/jessevdk/go-flags v1.5.0
github.com/kdar/factorlog v0.0.0-20211012144011-6ea75a169038
github.com/mackerelio/checkers v0.2.0
github.com/miekg/dns v1.1.59
github.com/otiai10/copy v1.14.0
github.com/prometheus/client_golang v1.19.1
github.com/reeflective/readline v1.0.14
github.com/sasha-s/go-deadlock v0.3.1
github.com/sassoftware/go-rpmutils v0.4.0
github.com/sevlyar/go-daemon v0.1.6
github.com/shirou/gopsutil/v3 v3.24.5
github.com/sni/check_http_go/pkg/checkhttp v0.0.0-20231227232912-71c069b10aae
github.com/sni/shelltoken v0.0.0-20240314123449-84b0a0c05450
github.com/spf13/cobra v1.8.0
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.9.0
github.com/yusufpapurcu/wmi v1.2.4
golang.org/x/exp v0.0.0-20240531132922-fd00a4e0eefc
golang.org/x/sys v0.20.0
golang.org/x/term v0.20.0
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/DataDog/zstd v1.5.5 // indirect
github.com/ProtonMail/go-crypto v1.0.0 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/cloudflare/circl v1.3.8 // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0 // indirect
github.com/klauspost/compress v1.17.8 // indirect
github.com/lufia/plan9stats v0.0.0-20240513124658-fba389f38bae // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
github.com/petermattis/goid v0.0.0-20240503122002-4b96552b8156 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/power-devops/perfstat v0.0.0-20240221224432-82ca36839d55 // indirect
github.com/prometheus/client_model v0.6.1 // indirect
github.com/prometheus/common v0.54.0 // indirect
github.com/prometheus/procfs v0.15.1 // indirect
github.com/rickb777/date v1.20.6 // indirect
github.com/rickb777/plural v1.4.2 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/shoenig/go-m1cpu v0.1.6 // indirect
github.com/tklauser/go-sysconf v0.3.14 // indirect
github.com/tklauser/numcpus v0.8.0 // indirect
github.com/ulikunitz/xz v0.5.12 // indirect
github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 // indirect
golang.org/x/crypto v0.23.0 // indirect
golang.org/x/mod v0.17.0 // indirect
golang.org/x/net v0.25.0 // indirect
golang.org/x/sync v0.7.0 // indirect
golang.org/x/tools v0.21.0 // indirect
google.golang.org/protobuf v1.34.1 // indirect
)