You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pkg/openapi/openapi_generated.go
+8-6Lines changed: 8 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -680,24 +680,25 @@ func schema_pkg_apis_mysql_v1alpha1_QueryLimits(ref common.ReferenceCallback) co
680
680
return common.OpenAPIDefinition{
681
681
Schema: spec.Schema{
682
682
SchemaProps: spec.SchemaProps{
683
+
Description: "QueryLimits represents the pt-kill parameters, more info can be found here: https://www.percona.com/doc/percona-toolkit/LATEST/pt-kill.html",
683
684
Properties: map[string]spec.Schema{
684
685
"maxIdleTime": {
685
686
SchemaProps: spec.SchemaProps{
686
-
Description: "MaxIdleTime match queries that have benn idle for longer then this time. (--idle-time flag)",
687
+
Description: "MaxIdleTime match queries that have been idle for longer then this time, in seconds. (--idle-time flag)",
687
688
Type: []string{"integer"},
688
689
Format: "int32",
689
690
},
690
691
},
691
692
"maxQueryTime": {
692
693
SchemaProps: spec.SchemaProps{
693
-
Description: "MaxQueryTime match queries that have been running for longer then this time. (--busy-time flag)",
694
+
Description: "MaxQueryTime match queries that have been running for longer then this time, in seconds. This field is required. (--busy-time flag)",
694
695
Type: []string{"integer"},
695
696
Format: "int32",
696
697
},
697
698
},
698
699
"kill": {
699
700
SchemaProps: spec.SchemaProps{
700
-
Description: "Kill represents the mode of which the matching queries in each class will be killed, (the --victims flag). Can be one of oldest|all|all-but-oldest",
701
+
Description: "Kill represents the mode of which the matching queries in each class will be killed, (the --victims flag). Can be one of oldest|all|all-but-oldest. By default, the matching query with the highest Time value is killed (the oldest query.",
701
702
Type: []string{"string"},
702
703
Format: "",
703
704
},
@@ -711,7 +712,7 @@ func schema_pkg_apis_mysql_v1alpha1_QueryLimits(ref common.ReferenceCallback) co
711
712
},
712
713
"ignoreDb": {
713
714
SchemaProps: spec.SchemaProps{
714
-
Description: "IgnoreDb is the lost of tatabase that are ignored by pt-kill (--ignore-db flag)",
715
+
Description: "IgnoreDb is the list of database that are ignored by pt-kill (--ignore-db flag).",
715
716
Type: []string{"array"},
716
717
Items: &spec.SchemaOrArray{
717
718
Schema: &spec.Schema{
@@ -725,7 +726,7 @@ func schema_pkg_apis_mysql_v1alpha1_QueryLimits(ref common.ReferenceCallback) co
725
726
},
726
727
"ignoreCommands": {
727
728
SchemaProps: spec.SchemaProps{
728
-
Description: "IgnoreCommands",
729
+
Description: "IgnoreCommands the list of commands to be ignored.",
729
730
Type: []string{"array"},
730
731
Items: &spec.SchemaOrArray{
731
732
Schema: &spec.Schema{
@@ -739,7 +740,7 @@ func schema_pkg_apis_mysql_v1alpha1_QueryLimits(ref common.ReferenceCallback) co
739
740
},
740
741
"ignoreUser": {
741
742
SchemaProps: spec.SchemaProps{
742
-
Description: "IgnoreUser",
743
+
Description: "IgnoreUser the list of users to be ignored.",
743
744
Type: []string{"array"},
744
745
Items: &spec.SchemaOrArray{
745
746
Schema: &spec.Schema{
@@ -752,6 +753,7 @@ func schema_pkg_apis_mysql_v1alpha1_QueryLimits(ref common.ReferenceCallback) co
0 commit comments