Files
troubleshoot/pkg/analyze/host_subnetavailable.go
Gerard NguyenandDiamon Wiggins f0b8de68ae feat: multiple nodes analyzers (#1667)
* implement refactor for multiple node analyzers

---------

Co-authored-by: Diamon Wiggins <38189728+diamonwiggins@users.noreply.github.com>
2024-11-04 14:17:39 +11:00

62 lines
1.8 KiB
Go

package analyzer
import (
"encoding/json"
"fmt"
"github.com/pkg/errors"
troubleshootv1beta2 "github.com/replicatedhq/troubleshoot/pkg/apis/troubleshoot/v1beta2"
"github.com/replicatedhq/troubleshoot/pkg/collect"
)
type AnalyzeHostSubnetAvailable struct {
hostAnalyzer *troubleshootv1beta2.SubnetAvailableAnalyze
}
func (a *AnalyzeHostSubnetAvailable) Title() string {
return hostAnalyzerTitleOrDefault(a.hostAnalyzer.AnalyzeMeta, "Subnet Available")
}
func (a *AnalyzeHostSubnetAvailable) IsExcluded() (bool, error) {
return isExcluded(a.hostAnalyzer.Exclude)
}
func (a *AnalyzeHostSubnetAvailable) Analyze(
getCollectedFileContents func(string) ([]byte, error), findFiles getChildCollectedFileContents,
) ([]*AnalyzeResult, error) {
collectorName := a.hostAnalyzer.CollectorName
if collectorName == "" {
collectorName = "result"
}
const nodeBaseDir = "host-collectors/subnetAvailable"
localPath := fmt.Sprintf("%s/%s.json", nodeBaseDir, collectorName)
fileName := fmt.Sprintf("%s.json", collectorName)
collectedContents, err := retrieveCollectedContents(
getCollectedFileContents,
localPath,
nodeBaseDir,
fileName,
)
if err != nil {
return []*AnalyzeResult{{Title: a.Title()}}, err
}
results, err := analyzeHostCollectorResults(collectedContents, a.hostAnalyzer.Outcomes, a.CheckCondition, a.Title())
if err != nil {
return nil, errors.Wrap(err, "failed to analyze HTTP Load Balancer")
}
return results, nil
}
func (a *AnalyzeHostSubnetAvailable) CheckCondition(when string, data []byte) (bool, error) {
isSubnetAvailable := &collect.SubnetAvailableResult{}
if err := json.Unmarshal(data, isSubnetAvailable); err != nil {
return false, errors.Wrap(err, "failed to unmarshal subnetAvailable result")
}
return string(isSubnetAvailable.Status) == when, nil
}