mirror of
https://github.com/replicatedhq/troubleshoot.git
synced 2026-04-15 07:16:34 +00:00
146 lines
3.7 KiB
Go
146 lines
3.7 KiB
Go
package analyzer
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/pkg/errors"
|
|
troubleshootv1beta2 "github.com/replicatedhq/troubleshoot/pkg/apis/troubleshoot/v1beta2"
|
|
"github.com/replicatedhq/troubleshoot/pkg/collect"
|
|
"k8s.io/apimachinery/pkg/api/resource"
|
|
)
|
|
|
|
type AnalyzeHostMemory struct {
|
|
hostAnalyzer *troubleshootv1beta2.MemoryAnalyze
|
|
}
|
|
|
|
func (a *AnalyzeHostMemory) Title() string {
|
|
return hostAnalyzerTitleOrDefault(a.hostAnalyzer.AnalyzeMeta, "Amount of Memory")
|
|
}
|
|
|
|
func (a *AnalyzeHostMemory) IsExcluded() (bool, error) {
|
|
return isExcluded(a.hostAnalyzer.Exclude)
|
|
}
|
|
|
|
func (a *AnalyzeHostMemory) Analyze(getCollectedFileContents func(string) ([]byte, error)) ([]*AnalyzeResult, error) {
|
|
hostAnalyzer := a.hostAnalyzer
|
|
|
|
contents, err := getCollectedFileContents(collect.HostMemoryPath)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "failed to get collected file")
|
|
}
|
|
|
|
memoryInfo := collect.MemoryInfo{}
|
|
if err := json.Unmarshal(contents, &memoryInfo); err != nil {
|
|
return nil, errors.Wrap(err, "failed to unmarshal memory info")
|
|
}
|
|
|
|
result := AnalyzeResult{
|
|
Title: a.Title(),
|
|
}
|
|
|
|
for _, outcome := range hostAnalyzer.Outcomes {
|
|
|
|
if outcome.Fail != nil {
|
|
if outcome.Fail.When == "" {
|
|
result.IsFail = true
|
|
result.Message = outcome.Fail.Message
|
|
result.URI = outcome.Fail.URI
|
|
|
|
return []*AnalyzeResult{&result}, nil
|
|
}
|
|
|
|
isMatch, err := compareHostMemoryConditionalToActual(outcome.Fail.When, memoryInfo.Total)
|
|
if err != nil {
|
|
return nil, errors.Wrapf(err, "failed to compare %s", outcome.Fail.When)
|
|
}
|
|
|
|
if isMatch {
|
|
result.IsFail = true
|
|
result.Message = outcome.Fail.Message
|
|
result.URI = outcome.Fail.URI
|
|
|
|
return []*AnalyzeResult{&result}, nil
|
|
}
|
|
} else if outcome.Warn != nil {
|
|
if outcome.Warn.When == "" {
|
|
result.IsWarn = true
|
|
result.Message = outcome.Warn.Message
|
|
result.URI = outcome.Warn.URI
|
|
|
|
return []*AnalyzeResult{&result}, nil
|
|
}
|
|
|
|
isMatch, err := compareHostMemoryConditionalToActual(outcome.Warn.When, memoryInfo.Total)
|
|
if err != nil {
|
|
return nil, errors.Wrapf(err, "failed to compare %s", outcome.Warn.When)
|
|
}
|
|
|
|
if isMatch {
|
|
result.IsWarn = true
|
|
result.Message = outcome.Warn.Message
|
|
result.URI = outcome.Warn.URI
|
|
|
|
return []*AnalyzeResult{&result}, nil
|
|
}
|
|
} else if outcome.Pass != nil {
|
|
if outcome.Pass.When == "" {
|
|
result.IsPass = true
|
|
result.Message = outcome.Pass.Message
|
|
result.URI = outcome.Pass.URI
|
|
|
|
return []*AnalyzeResult{&result}, nil
|
|
}
|
|
|
|
isMatch, err := compareHostMemoryConditionalToActual(outcome.Pass.When, memoryInfo.Total)
|
|
if err != nil {
|
|
return nil, errors.Wrapf(err, "failed to compare %s", outcome.Pass.When)
|
|
}
|
|
|
|
if isMatch {
|
|
result.IsPass = true
|
|
result.Message = outcome.Pass.Message
|
|
result.URI = outcome.Pass.URI
|
|
|
|
return []*AnalyzeResult{&result}, nil
|
|
}
|
|
}
|
|
}
|
|
|
|
return []*AnalyzeResult{&result}, nil
|
|
}
|
|
|
|
func compareHostMemoryConditionalToActual(conditional string, total uint64) (res bool, err error) {
|
|
parts := strings.Split(conditional, " ")
|
|
if len(parts) != 2 {
|
|
return false, fmt.Errorf("Expected 2 parts in conditional, got %d", len(parts))
|
|
}
|
|
|
|
operator := parts[0]
|
|
desired := parts[1]
|
|
quantity, err := resource.ParseQuantity(desired)
|
|
if err != nil {
|
|
return false, fmt.Errorf("could not parse quantity %q", desired)
|
|
}
|
|
desiredInt, ok := quantity.AsInt64()
|
|
if !ok {
|
|
return false, fmt.Errorf("could not parse quantity %q", desired)
|
|
}
|
|
|
|
switch operator {
|
|
case "<":
|
|
return total < uint64(desiredInt), nil
|
|
case "<=":
|
|
return total <= uint64(desiredInt), nil
|
|
case ">":
|
|
return total > uint64(desiredInt), nil
|
|
case ">=":
|
|
return total >= uint64(desiredInt), nil
|
|
case "=", "==", "===":
|
|
return total == uint64(desiredInt), nil
|
|
}
|
|
|
|
return false, errors.New("unknown operator")
|
|
}
|