kubernetes/test/integration/logs/benchmark/load.go
Patrick Ohly 072859c967 logs: create separate test/integration directory
The benchmark depends on k8s.io/api (for v1.Container). Such a dependency is
not desirable for k8s.io/component-base/logs, even if it's just for
testing. The solution is to create a separate directory where such a dependency
isn't a problem.

The alternative, a separate package with its own go.mod file under
k8s.io/component-base/logs wouldd have been more complicated to maintain (yet
another go.mod file and different whitelisted dependencies).
2022-01-11 09:56:22 +01:00

270 lines
7.4 KiB
Go

/*
Copyright 2021 The Kubernetes Authors.
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 benchmark
import (
"bufio"
"bytes"
"encoding/json"
"errors"
"fmt"
"os"
"reflect"
"regexp"
"sort"
"strings"
"text/template"
"k8s.io/api/core/v1"
"k8s.io/klog/v2"
)
type logMessage struct {
msg string
verbosity int
err error
isError bool
kvs []interface{}
}
const (
stringArg = "string"
multiLineStringArg = "multiLineString"
objectStringArg = "objectString"
numberArg = "number"
krefArg = "kref"
otherArg = "other"
totalArg = "total"
)
type logStats struct {
TotalLines, JsonLines, ErrorMessages int
ArgCounts map[string]int
OtherLines []string
OtherArgs []interface{}
MultiLineArgs [][]string
ObjectTypes map[string]int
}
var (
logStatsTemplate = template.Must(template.New("format").Funcs(template.FuncMap{
"percent": func(x, y int) string {
if y == 0 {
return "NA"
}
return fmt.Sprintf("%d%%", x*100/y)
},
"sub": func(x, y int) int {
return x - y
},
}).Parse(`Total number of lines: {{.TotalLines}}
Valid JSON messages: {{.JsonLines}} ({{percent .JsonLines .TotalLines}} of total lines)
Error messages: {{.ErrorMessages}} ({{percent .ErrorMessages .JsonLines}} of valid JSON messages)
Unrecognized lines: {{sub .TotalLines .JsonLines}}
{{range .OtherLines}} {{.}}
{{end}}
Args:
total: {{if .ArgCounts.total}}{{.ArgCounts.total}}{{else}}0{{end}}{{if .ArgCounts.string}}
strings: {{.ArgCounts.string}} ({{percent .ArgCounts.string .ArgCounts.total}}){{end}} {{if .ArgCounts.multiLineString}}
with line breaks: {{.ArgCounts.multiLineString}} ({{percent .ArgCounts.multiLineString .ArgCounts.total}} of all arguments)
{{range .MultiLineArgs}} ===== {{index . 0}} =====
{{index . 1}}
{{end}}{{end}}{{if .ArgCounts.objectString}}
with API objects: {{.ArgCounts.objectString}} ({{percent .ArgCounts.objectString .ArgCounts.total}} of all arguments)
types and their number of usage:{{range $key, $value := .ObjectTypes}} {{ $key }}:{{ $value }}{{end}}{{end}}{{if .ArgCounts.number}}
numbers: {{.ArgCounts.number}} ({{percent .ArgCounts.number .ArgCounts.total}}){{end}}{{if .ArgCounts.kref}}
ObjectRef: {{.ArgCounts.kref}} ({{percent .ArgCounts.kref .ArgCounts.total}}){{end}}{{if .ArgCounts.other}}
others: {{.ArgCounts.other}} ({{percent .ArgCounts.other .ArgCounts.total}}){{end}}
`))
)
// This produces too much output:
// {{range .OtherArgs}} {{.}}
// {{end}}
// Doesn't work?
// Unrecognized lines: {{with $delta := sub .TotalLines .JsonLines}}{{$delta}} ({{percent $delta .TotalLines}} of total lines){{end}}
func (s logStats) String() string {
var buffer bytes.Buffer
err := logStatsTemplate.Execute(&buffer, &s)
if err != nil {
return err.Error()
}
return buffer.String()
}
func loadLog(path string) (messages []logMessage, stats logStats, err error) {
file, err := os.Open(path)
if err != nil {
return nil, logStats{}, err
}
defer file.Close()
stats.ArgCounts = map[string]int{}
scanner := bufio.NewScanner(file)
for lineNo := 0; scanner.Scan(); lineNo++ {
line := scanner.Bytes()
msg, err := parseLine(line, &stats)
if err != nil {
stats.OtherLines = append(stats.OtherLines, fmt.Sprintf("%d: %s", lineNo, string(line)))
continue
}
messages = append(messages, msg)
}
if err := scanner.Err(); err != nil {
return nil, logStats{}, fmt.Errorf("reading %s failed: %v", path, err)
}
return
}
// systemd prefix:
// Nov 19 02:08:51 kind-worker2 kubelet[250]: {"ts":1637287731687.8315,...
//
// kubectl (?) prefix:
// 2021-11-19T02:08:28.475825534Z stderr F {"ts": ...
var prefixRE = regexp.MustCompile(`^\w+ \d+ \S+ \S+ \S+: |\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d+Z stderr . `)
// String format for API structs from generated.pb.go.
// &Container{...}
var objectRE = regexp.MustCompile(`^&([a-zA-Z]*)\{`)
func parseLine(line []byte, stats *logStats) (item logMessage, err error) {
stats.TotalLines++
line = prefixRE.ReplaceAll(line, nil)
content := map[string]interface{}{}
if err := json.Unmarshal(line, &content); err != nil {
return logMessage{}, fmt.Errorf("JSON parsing failed: %v", err)
}
stats.JsonLines++
kvs := map[string]interface{}{}
item.isError = true
for key, value := range content {
switch key {
case "v":
verbosity, ok := value.(float64)
if !ok {
return logMessage{}, fmt.Errorf("expected number for v, got: %T %v", value, value)
}
item.verbosity = int(verbosity)
item.isError = false
case "msg":
msg, ok := value.(string)
if !ok {
return logMessage{}, fmt.Errorf("expected string for msg, got: %T %v", value, value)
}
item.msg = msg
case "ts", "caller":
// ignore
case "err":
errStr, ok := value.(string)
if !ok {
return logMessage{}, fmt.Errorf("expected string for err, got: %T %v", value, value)
}
item.err = errors.New(errStr)
stats.ArgCounts[stringArg]++
stats.ArgCounts[totalArg]++
default:
if obj := toObject(value); obj != nil {
value = obj
}
switch value := value.(type) {
case string:
stats.ArgCounts[stringArg]++
if strings.Contains(value, "\n") {
stats.ArgCounts[multiLineStringArg]++
stats.MultiLineArgs = append(stats.MultiLineArgs, []string{key, value})
}
match := objectRE.FindStringSubmatch(value)
if match != nil {
if stats.ObjectTypes == nil {
stats.ObjectTypes = map[string]int{}
}
stats.ArgCounts[objectStringArg]++
stats.ObjectTypes[match[1]]++
}
case float64:
stats.ArgCounts[numberArg]++
case klog.ObjectRef:
stats.ArgCounts[krefArg]++
default:
stats.ArgCounts[otherArg]++
stats.OtherArgs = append(stats.OtherArgs, value)
}
stats.ArgCounts[totalArg]++
kvs[key] = value
}
}
// Sort by key.
var keys []string
for key := range kvs {
keys = append(keys, key)
}
sort.Strings(keys)
for _, key := range keys {
item.kvs = append(item.kvs, key, kvs[key])
}
if !item.isError && item.err != nil {
// Error is a normal key/value.
item.kvs = append(item.kvs, "err", item.err)
item.err = nil
}
if item.isError {
stats.ErrorMessages++
}
return
}
// This is a list of objects that might have been dumped. The simple ones must
// come first because unmarshaling will try one after the after and an
// ObjectRef would unmarshal fine into any of the others whereas any of the
// other types hopefully have enough extra fields that they won't fit (unknown
// fields are an error).
var objectTypes = []reflect.Type{
reflect.TypeOf(klog.ObjectRef{}),
reflect.TypeOf(&v1.Pod{}),
reflect.TypeOf(&v1.Container{}),
}
func toObject(value interface{}) interface{} {
data, ok := value.(map[string]interface{})
if !ok {
return nil
}
jsonData, err := json.Marshal(data)
if err != nil {
return nil
}
for _, t := range objectTypes {
obj := reflect.New(t)
decoder := json.NewDecoder(bytes.NewBuffer(jsonData))
decoder.DisallowUnknownFields()
if err := decoder.Decode(obj.Interface()); err == nil {
return reflect.Indirect(obj).Interface()
}
}
return nil
}