-
Notifications
You must be signed in to change notification settings - Fork 238
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1842 from anxuanzi/master
Add status command to agent and cleanup code
- Loading branch information
Showing
3 changed files
with
88 additions
and
125 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 |
---|---|---|
@@ -1,35 +1,37 @@ | ||
module oneuptime-infrastructure-agent | ||
|
||
go 1.22.0 | ||
go 1.23.0 | ||
|
||
toolchain go1.24.0 | ||
|
||
require ( | ||
github.com/go-co-op/gocron/v2 v2.4.1 | ||
github.com/go-co-op/gocron/v2 v2.16.0 | ||
github.com/gookit/config/v2 v2.2.5 | ||
github.com/kardianos/service v1.2.2 | ||
github.com/shirou/gopsutil/v3 v3.24.4 | ||
github.com/shirou/gopsutil/v3 v3.24.5 | ||
) | ||
|
||
replace gopkg.in/alecthomas/kingpin.v2 v2.4.0 => github.com/alecthomas/kingpin/v2 v2.4.0 | ||
|
||
require ( | ||
dario.cat/mergo v1.0.0 // indirect | ||
dario.cat/mergo v1.0.1 // indirect | ||
github.com/go-ole/go-ole v1.3.0 // indirect | ||
github.com/google/uuid v1.6.0 // indirect | ||
github.com/gookit/color v1.5.4 // indirect | ||
github.com/gookit/goutil v0.6.15 // indirect | ||
github.com/jonboulle/clockwork v0.4.0 // indirect | ||
github.com/lufia/plan9stats v0.0.0-20240408141607-282e7b5d6b74 // indirect | ||
github.com/gookit/goutil v0.6.18 // indirect | ||
github.com/jonboulle/clockwork v0.5.0 // indirect | ||
github.com/lufia/plan9stats v0.0.0-20250224150550-a661cff19cfb // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/power-devops/perfstat v0.0.0-20240221224432-82ca36839d55 // indirect | ||
github.com/robfig/cron/v3 v3.0.1 // 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/tklauser/numcpus v0.9.0 // indirect | ||
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect | ||
github.com/yusufpapurcu/wmi v1.2.4 // indirect | ||
golang.org/x/exp v0.0.0-20240416160154-fe59bbe5cc7f // indirect | ||
golang.org/x/sync v0.7.0 // indirect | ||
golang.org/x/sys v0.20.0 // indirect | ||
golang.org/x/term v0.15.0 // indirect | ||
golang.org/x/text v0.15.0 // indirect | ||
golang.org/x/exp v0.0.0-20250218142911-aa4b98e5adaa // indirect | ||
golang.org/x/sync v0.11.0 // indirect | ||
golang.org/x/sys v0.30.0 // indirect | ||
golang.org/x/term v0.29.0 // indirect | ||
golang.org/x/text v0.22.0 // indirect | ||
) |
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
Oops, something went wrong.