mirror of
https://github.com/kubernetes/node-problem-detector.git
synced 2026-08-19 12:16:26 +00:00
Compile fixed patterns during monitor and log counter initialization, pass compiled expressions to the log buffer, and reject invalid log counter patterns before watching logs.
268 lines
8.0 KiB
Go
268 lines
8.0 KiB
Go
/*
|
|
Copyright 2016 The Kubernetes Authors All rights reserved.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package systemlogmonitor
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"os"
|
|
"regexp"
|
|
"time"
|
|
|
|
"k8s.io/klog/v2"
|
|
|
|
"k8s.io/node-problem-detector/pkg/problemdaemon"
|
|
"k8s.io/node-problem-detector/pkg/problemmetrics"
|
|
"k8s.io/node-problem-detector/pkg/systemlogmonitor/logwatchers"
|
|
watchertypes "k8s.io/node-problem-detector/pkg/systemlogmonitor/logwatchers/types"
|
|
systemlogtypes "k8s.io/node-problem-detector/pkg/systemlogmonitor/types"
|
|
"k8s.io/node-problem-detector/pkg/types"
|
|
"k8s.io/node-problem-detector/pkg/util"
|
|
"k8s.io/node-problem-detector/pkg/util/tomb"
|
|
)
|
|
|
|
const SystemLogMonitorName = "system-log-monitor"
|
|
|
|
func init() {
|
|
problemdaemon.Register(
|
|
SystemLogMonitorName,
|
|
types.ProblemDaemonHandler{
|
|
CreateProblemDaemonOrDie: NewLogMonitorOrDie,
|
|
CmdOptionDescription: "Set to config file paths.",
|
|
})
|
|
}
|
|
|
|
type logMonitor struct {
|
|
configPath string
|
|
watcher watchertypes.LogWatcher
|
|
buffer LogBuffer
|
|
config MonitorConfig
|
|
patterns []*regexp.Regexp
|
|
conditions []types.Condition
|
|
logCh <-chan *systemlogtypes.Log
|
|
output chan *types.Status
|
|
tomb *tomb.Tomb
|
|
}
|
|
|
|
// NewLogMonitorOrDie create a new LogMonitor, panic if error occurs.
|
|
func NewLogMonitorOrDie(configPath string) types.Monitor {
|
|
l := &logMonitor{
|
|
configPath: configPath,
|
|
tomb: tomb.NewTomb(),
|
|
}
|
|
|
|
f, err := os.ReadFile(configPath)
|
|
if err != nil {
|
|
klog.Fatalf("Failed to read configuration file %q: %v", configPath, err)
|
|
}
|
|
err = json.Unmarshal(f, &l.config)
|
|
if err != nil {
|
|
klog.Fatalf("Failed to unmarshal configuration file %q: %v", configPath, err)
|
|
}
|
|
// Apply default configurations
|
|
(&l.config).ApplyDefaultConfiguration()
|
|
l.patterns, err = l.config.compileRules()
|
|
if err != nil {
|
|
klog.Fatalf("Failed to validate %s matching rules %+v: %v", l.configPath, l.config.Rules, err)
|
|
}
|
|
klog.Infof("Finish parsing log monitor config file %s: %+v", l.configPath, l.config)
|
|
|
|
l.watcher = logwatchers.GetLogWatcherOrDie(l.config.WatcherConfig)
|
|
l.buffer = NewLogBuffer(l.config.BufferSize)
|
|
// A 1000 size channel should be big enough.
|
|
l.output = make(chan *types.Status, 1000)
|
|
|
|
if *l.config.EnableMetricsReporting {
|
|
initializeProblemMetricsOrDie(l.config.Rules)
|
|
}
|
|
return l
|
|
}
|
|
|
|
// initializeProblemMetricsOrDie creates problem metrics for all problems and set the value to 0,
|
|
// panic if error occurs.
|
|
func initializeProblemMetricsOrDie(rules []systemlogtypes.Rule) {
|
|
for _, rule := range rules {
|
|
if rule.Type == types.Perm {
|
|
err := problemmetrics.GlobalProblemMetricsManager.SetProblemGauge(rule.Condition, rule.Reason, false)
|
|
if err != nil {
|
|
klog.Fatalf("Failed to initialize problem gauge metrics for problem %q, reason %q: %v",
|
|
rule.Condition, rule.Reason, err)
|
|
}
|
|
}
|
|
err := problemmetrics.GlobalProblemMetricsManager.IncrementProblemCounter(rule.Reason, 0)
|
|
if err != nil {
|
|
klog.Fatalf("Failed to initialize problem counter metrics for %q: %v", rule.Reason, err)
|
|
}
|
|
}
|
|
}
|
|
|
|
func (l *logMonitor) Start() (<-chan *types.Status, error) {
|
|
klog.Infof("Start log monitor %s", l.configPath)
|
|
var err error
|
|
l.logCh, err = l.watcher.Watch()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
go l.monitorLoop()
|
|
return l.output, nil
|
|
}
|
|
|
|
func (l *logMonitor) Stop() {
|
|
klog.Infof("Stop log monitor %s", l.configPath)
|
|
l.tomb.Stop()
|
|
}
|
|
|
|
// monitorLoop is the main loop of log monitor.
|
|
func (l *logMonitor) monitorLoop() {
|
|
defer func() {
|
|
close(l.output)
|
|
l.tomb.Done()
|
|
}()
|
|
l.initializeStatus()
|
|
for {
|
|
select {
|
|
case log, ok := <-l.logCh:
|
|
if !ok {
|
|
klog.Errorf("Log channel closed: %s", l.configPath)
|
|
return
|
|
}
|
|
l.parseLog(log)
|
|
case <-l.tomb.Stopping():
|
|
l.watcher.Stop()
|
|
klog.Infof("Log monitor stopped: %s", l.configPath)
|
|
return
|
|
}
|
|
}
|
|
}
|
|
|
|
// parseLog parses one log line.
|
|
func (l *logMonitor) parseLog(log *systemlogtypes.Log) {
|
|
// Once there is new log, log monitor will push it into the log buffer and try
|
|
// to match each rule. If any rule is matched, log monitor will report a status.
|
|
l.buffer.Push(log)
|
|
for i, rule := range l.config.Rules {
|
|
matched := l.buffer.Match(l.patterns[i])
|
|
if len(matched) == 0 {
|
|
continue
|
|
}
|
|
status := l.generateStatus(matched, rule)
|
|
klog.Infof("New status generated: %+v", status)
|
|
l.output <- status
|
|
}
|
|
}
|
|
|
|
// generateStatus generates status from the logs.
|
|
func (l *logMonitor) generateStatus(logs []*systemlogtypes.Log, rule systemlogtypes.Rule) *types.Status {
|
|
// We use the timestamp of the first log line as the timestamp of the status.
|
|
timestamp := logs[0].Timestamp
|
|
message := generateMessage(logs, rule.PatternGeneratedMessageSuffix)
|
|
var events []types.Event
|
|
var changedConditions []*types.Condition
|
|
if rule.Type == types.Temp {
|
|
// For temporary error only generate event
|
|
events = append(events, types.Event{
|
|
Severity: types.Warn,
|
|
Timestamp: timestamp,
|
|
Reason: rule.Reason,
|
|
Message: message,
|
|
})
|
|
} else {
|
|
// For permanent error changes the condition
|
|
for i := range l.conditions {
|
|
condition := &l.conditions[i]
|
|
if condition.Type == rule.Condition {
|
|
// Update transition timestamp and message when the condition
|
|
// changes. Condition is considered to be changed only when
|
|
// status or reason changes.
|
|
if condition.Status == types.False || condition.Reason != rule.Reason {
|
|
condition.Transition = timestamp
|
|
condition.Message = message
|
|
events = append(events, util.GenerateConditionChangeEvent(
|
|
condition.Type,
|
|
types.True,
|
|
rule.Reason,
|
|
message,
|
|
timestamp,
|
|
))
|
|
}
|
|
condition.Status = types.True
|
|
condition.Reason = rule.Reason
|
|
changedConditions = append(changedConditions, condition)
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
if *l.config.EnableMetricsReporting {
|
|
for _, event := range events {
|
|
err := problemmetrics.GlobalProblemMetricsManager.IncrementProblemCounter(event.Reason, 1)
|
|
if err != nil {
|
|
klog.Errorf("Failed to update problem counter metrics for %q: %v", event.Reason, err)
|
|
}
|
|
}
|
|
for _, condition := range changedConditions {
|
|
err := problemmetrics.GlobalProblemMetricsManager.SetProblemGauge(
|
|
condition.Type, condition.Reason, condition.Status == types.True)
|
|
if err != nil {
|
|
klog.Errorf("Failed to update problem gauge metrics for problem %q, reason %q: %v",
|
|
condition.Type, condition.Reason, err)
|
|
}
|
|
}
|
|
}
|
|
|
|
return &types.Status{
|
|
Source: l.config.Source,
|
|
// TODO(random-liu): Aggregate events and conditions and then do periodically report.
|
|
Events: events,
|
|
Conditions: l.conditions,
|
|
}
|
|
}
|
|
|
|
// initializeStatus initializes the internal condition and also reports it to the node problem detector.
|
|
func (l *logMonitor) initializeStatus() {
|
|
// Initialize the default node conditions
|
|
l.conditions = initialConditions(l.config.DefaultConditions)
|
|
klog.Infof("Initialize condition generated: %+v", l.conditions)
|
|
// Update the initial status
|
|
l.output <- &types.Status{
|
|
Source: l.config.Source,
|
|
Conditions: l.conditions,
|
|
}
|
|
}
|
|
|
|
func initialConditions(defaults []types.Condition) []types.Condition {
|
|
conditions := make([]types.Condition, len(defaults))
|
|
copy(conditions, defaults)
|
|
for i := range conditions {
|
|
conditions[i].Status = types.False
|
|
conditions[i].Transition = time.Now()
|
|
}
|
|
return conditions
|
|
}
|
|
|
|
func generateMessage(logs []*systemlogtypes.Log, patternGeneratedMessageSuffix string) string {
|
|
messages := []string{}
|
|
for _, log := range logs {
|
|
messages = append(messages, log.Message)
|
|
}
|
|
logMessage := concatLogs(messages)
|
|
if patternGeneratedMessageSuffix != "" {
|
|
return fmt.Sprintf("%s; %s", logMessage, patternGeneratedMessageSuffix)
|
|
}
|
|
return logMessage
|
|
}
|