mirror of
https://github.com/kubernetes/node-problem-detector.git
synced 2026-03-02 17:50:34 +00:00
97 lines
2.4 KiB
Go
97 lines
2.4 KiB
Go
/*
|
|
Copyright 2019 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 main
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
"os"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/golang/glog"
|
|
"github.com/spf13/pflag"
|
|
|
|
"k8s.io/node-problem-detector/test/e2e/problemmaker/makers"
|
|
)
|
|
|
|
func init() {
|
|
pflag.CommandLine.AddGoFlagSet(flag.CommandLine)
|
|
}
|
|
|
|
type options struct {
|
|
// Command line options. See flag descriptions for the description
|
|
Rate float32
|
|
Duration time.Duration
|
|
Problem string
|
|
}
|
|
|
|
// AddFlags adds log counter command line options to pflag.
|
|
func (o *options) AddFlags(fs *pflag.FlagSet) {
|
|
fs.Float32Var(&o.Rate, "rate", 1.0,
|
|
"Number of times the problem should be generated per second")
|
|
fs.DurationVar(&o.Duration, "duration", time.Duration(1)*time.Second,
|
|
"Duration for problem maker to keep generating problems")
|
|
|
|
problems := makers.GetProblemTypes()
|
|
fs.StringVar(&o.Problem, "problem", "",
|
|
fmt.Sprintf("The type of problem to be generated. Supported types: %q",
|
|
strings.Join(problems, ", ")))
|
|
}
|
|
|
|
func main() {
|
|
// Set glog flag so that it does not log to files.
|
|
if err := flag.Set("logtostderr", "true"); err != nil {
|
|
fmt.Printf("Failed to set logtostderr=true: %v\n", err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
o := options{}
|
|
o.AddFlags(pflag.CommandLine)
|
|
pflag.Parse()
|
|
|
|
if o.Problem == "" {
|
|
glog.Fatalf("Please specify the type of problem to make using the --problem argument.")
|
|
}
|
|
|
|
problemGenerator, ok := makers.ProblemGenerators[o.Problem]
|
|
if !ok {
|
|
glog.Fatalf("Expected to see a problem type of one of %q, but got %q.",
|
|
makers.GetProblemTypes(), o.Problem)
|
|
}
|
|
|
|
periodMilli := int(1000.0 / o.Rate)
|
|
ticker := time.NewTicker(time.Duration(periodMilli) * time.Millisecond)
|
|
defer ticker.Stop()
|
|
|
|
done := make(chan bool)
|
|
go func() {
|
|
time.Sleep(o.Duration)
|
|
done <- true
|
|
}()
|
|
|
|
for {
|
|
select {
|
|
case <-done:
|
|
return
|
|
case <-ticker.C:
|
|
glog.Infof("Generating problem: %q", o.Problem)
|
|
problemGenerator()
|
|
}
|
|
}
|
|
}
|