@@ -16,10 +16,10 @@ import (
16
16
)
17
17
18
18
type gatherStatusReport struct {
19
- Name string `json:"name"`
20
- Duration time.Duration `json:"duration_in_ms"`
21
- RecordsCount int `json:"records_count"`
22
- Errors []string `json:"errors"`
19
+ Name string `json:"name"`
20
+ Duration time.Duration `json:"duration_in_ms"`
21
+ RecordsCount int `json:"records_count"`
22
+ Errors []string `json:"errors"`
23
23
}
24
24
25
25
// Gatherer is a driving instance invoking collection of data
@@ -78,10 +78,10 @@ var gatherFunctions = map[string]gathering{
78
78
"machine_config_pools" : important (GatherMachineConfigPool ),
79
79
"container_runtime_configs" : important (GatherContainerRuntimeConfig ),
80
80
"netnamespaces" : important (GatherNetNamespace ),
81
- "openshift_apiserver_operator_logs" : important (GatherOpenShiftAPIServerOperatorLogs ),
82
- "openshift_sdn_logs" : important (GatherOpenshiftSDNLogs ),
83
- "openshift_sdn_controller_logs" : important (GatherOpenshiftSDNControllerLogs ),
84
- "openshift_authentication_logs" : important (GatherOpenshiftAuthenticationLogs ),
81
+ "openshift_apiserver_operator_logs" : failable (GatherOpenShiftAPIServerOperatorLogs ),
82
+ "openshift_sdn_logs" : failable (GatherOpenshiftSDNLogs ),
83
+ "openshift_sdn_controller_logs" : failable (GatherOpenshiftSDNControllerLogs ),
84
+ "openshift_authentication_logs" : failable (GatherOpenshiftAuthenticationLogs ),
85
85
"sap_config" : failable (GatherSAPConfig ),
86
86
"olm_operators" : failable (GatherOLMOperators ),
87
87
}
0 commit comments