-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added task * debug * automatic apply * Refactor agent, merging repeaters * performed optimization of task execution * increased version
- Loading branch information
Showing
15 changed files
with
400 additions
and
611 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
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 +1 @@ | ||
1.16.0 | ||
1.17.0 |
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,43 +1,44 @@ | ||
module github.com/Releem/mysqlconfigurer | ||
|
||
go 1.19 | ||
go 1.22.0 | ||
|
||
require ( | ||
github.com/Releem/daemon v0.0.0-20221103142627-2a82cf09ac69 | ||
github.com/advantageous/go-logback v0.0.0-20161215180304-6db19679ca3e | ||
github.com/aws/aws-sdk-go v1.49.2 | ||
github.com/aws/aws-sdk-go-v2 v1.24.0 | ||
github.com/aws/aws-sdk-go-v2/config v1.26.1 | ||
github.com/aws/aws-sdk-go-v2/service/cloudwatch v1.32.0 | ||
github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs v1.30.0 | ||
github.com/aws/aws-sdk-go-v2/service/ec2 v1.141.0 | ||
github.com/aws/aws-sdk-go-v2/service/rds v1.64.5 | ||
github.com/go-sql-driver/mysql v1.7.1 | ||
github.com/aws/aws-sdk-go v1.53.7 | ||
github.com/aws/aws-sdk-go-v2 v1.27.0 | ||
github.com/aws/aws-sdk-go-v2/config v1.27.15 | ||
github.com/aws/aws-sdk-go-v2/service/cloudwatch v1.38.3 | ||
github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs v1.35.4 | ||
github.com/aws/aws-sdk-go-v2/service/ec2 v1.161.3 | ||
github.com/aws/aws-sdk-go-v2/service/rds v1.79.1 | ||
github.com/go-sql-driver/mysql v1.8.1 | ||
github.com/hashicorp/hcl v1.0.0 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/shirou/gopsutil/v3 v3.23.11 | ||
github.com/shirou/gopsutil/v3 v3.24.4 | ||
) | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.5.4 // indirect | ||
github.com/aws/aws-sdk-go-v2/credentials v1.16.12 // indirect | ||
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.14.10 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/configsources v1.2.9 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.5.9 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/ini v1.7.2 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.10.4 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.10.9 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sso v1.18.5 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.21.5 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sts v1.26.5 // indirect | ||
github.com/aws/smithy-go v1.19.0 // indirect | ||
filippo.io/edwards25519 v1.1.0 // indirect | ||
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.2 // indirect | ||
github.com/aws/aws-sdk-go-v2/credentials v1.17.15 // indirect | ||
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.3 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.7 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.7 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.0 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.2 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.9 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sso v1.20.8 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.24.2 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sts v1.28.9 // indirect | ||
github.com/aws/smithy-go v1.20.2 // indirect | ||
github.com/go-ole/go-ole v1.2.6 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect | ||
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect | ||
github.com/shoenig/go-m1cpu v0.1.6 // indirect | ||
github.com/tklauser/go-sysconf v0.3.12 // indirect | ||
github.com/tklauser/numcpus v0.6.1 // indirect | ||
github.com/yusufpapurcu/wmi v1.2.3 // indirect | ||
golang.org/x/sys v0.15.0 // indirect | ||
github.com/yusufpapurcu/wmi v1.2.4 // indirect | ||
golang.org/x/sys v0.19.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
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
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.