Signed-off-by: Maartje Eyskens <maartje@eyskens.me> klog v2 Signed-off-by: Maartje Eyskens <maartje@eyskens.me>
159 lines
3.8 KiB
Go
159 lines
3.8 KiB
Go
/*
|
|
Copyright 2019 The Jetstack cert-manager contributors.
|
|
|
|
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 logs
|
|
|
|
import (
|
|
"context"
|
|
"flag"
|
|
"log"
|
|
"time"
|
|
|
|
"github.com/go-logr/logr"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
|
"k8s.io/apimachinery/pkg/util/wait"
|
|
"k8s.io/klog/v2"
|
|
"k8s.io/klog/v2/klogr"
|
|
|
|
"github.com/jetstack/cert-manager/pkg/api"
|
|
)
|
|
|
|
var (
|
|
Log = klogr.New().WithName("cert-manager")
|
|
|
|
ErrorLevel = 0
|
|
WarnLevel = 1
|
|
InfoLevel = 2
|
|
DebugLevel = 3
|
|
// and the mysterious 4
|
|
)
|
|
|
|
var logFlushFreq = flag.Duration("log-flush-frequency", 5*time.Second, "Maximum number of seconds between log flushes")
|
|
|
|
// GlogWriter serves as a bridge between the standard log package and the glog package.
|
|
type GlogWriter struct{}
|
|
|
|
// Write implements the io.Writer interface.
|
|
func (writer GlogWriter) Write(data []byte) (n int, err error) {
|
|
klog.Info(string(data))
|
|
return len(data), nil
|
|
}
|
|
|
|
// InitLogs initializes logs the way we want for kubernetes.
|
|
func InitLogs(fs *flag.FlagSet) {
|
|
if fs == nil {
|
|
fs = flag.CommandLine
|
|
}
|
|
klog.InitFlags(fs)
|
|
fs.Set("logtostderr", "true")
|
|
|
|
log.SetOutput(GlogWriter{})
|
|
log.SetFlags(0)
|
|
|
|
// The default glog flush interval is 30 seconds, which is frighteningly long.
|
|
go wait.Until(klog.Flush, *logFlushFreq, wait.NeverStop)
|
|
}
|
|
|
|
// FlushLogs flushes logs immediately.
|
|
func FlushLogs() {
|
|
klog.Flush()
|
|
}
|
|
|
|
const (
|
|
ResourceNameKey = "resource_name"
|
|
ResourceNamespaceKey = "resource_namespace"
|
|
ResourceKindKey = "resource_kind"
|
|
ResourceVersionKey = "resource_version"
|
|
|
|
RelatedResourceNameKey = "related_resource_name"
|
|
RelatedResourceNamespaceKey = "related_resource_namespace"
|
|
RelatedResourceKindKey = "related_resource_kind"
|
|
RelatedResourceVersionKey = "related_resource_version"
|
|
)
|
|
|
|
func WithResource(l logr.Logger, obj metav1.Object) logr.Logger {
|
|
var gvk schema.GroupVersionKind
|
|
|
|
if runtimeObj, ok := obj.(runtime.Object); ok {
|
|
gvks, _, _ := api.Scheme.ObjectKinds(runtimeObj)
|
|
if len(gvks) > 0 {
|
|
gvk = gvks[0]
|
|
}
|
|
}
|
|
|
|
return l.WithValues(
|
|
ResourceNameKey, obj.GetName(),
|
|
ResourceNamespaceKey, obj.GetNamespace(),
|
|
ResourceKindKey, gvk.Kind,
|
|
ResourceVersionKey, gvk.Version,
|
|
)
|
|
}
|
|
|
|
func WithRelatedResource(l logr.Logger, obj metav1.Object) logr.Logger {
|
|
var gvk schema.GroupVersionKind
|
|
|
|
if runtimeObj, ok := obj.(runtime.Object); ok {
|
|
gvks, _, _ := api.Scheme.ObjectKinds(runtimeObj)
|
|
if len(gvks) > 0 {
|
|
gvk = gvks[0]
|
|
}
|
|
}
|
|
|
|
return l.WithValues(
|
|
RelatedResourceNameKey, obj.GetName(),
|
|
RelatedResourceNamespaceKey, obj.GetNamespace(),
|
|
RelatedResourceKindKey, gvk.Kind,
|
|
RelatedResourceVersionKey, gvk.Version,
|
|
)
|
|
}
|
|
|
|
func WithRelatedResourceName(l logr.Logger, name, namespace, kind string) logr.Logger {
|
|
return l.WithValues(
|
|
RelatedResourceNameKey, name,
|
|
RelatedResourceNamespaceKey, namespace,
|
|
RelatedResourceKindKey, kind,
|
|
)
|
|
}
|
|
|
|
var contextKey = &struct{}{}
|
|
|
|
func FromContext(ctx context.Context, names ...string) logr.Logger {
|
|
l := ctx.Value(contextKey)
|
|
if l == nil {
|
|
return Log
|
|
}
|
|
lT := l.(logr.Logger)
|
|
for _, n := range names {
|
|
lT = lT.WithName(n)
|
|
}
|
|
return lT
|
|
}
|
|
|
|
func NewContext(ctx context.Context, l logr.Logger, names ...string) context.Context {
|
|
if ctx == nil {
|
|
ctx = context.Background()
|
|
}
|
|
if l == nil {
|
|
l = FromContext(ctx)
|
|
}
|
|
for _, n := range names {
|
|
l = l.WithName(n)
|
|
}
|
|
return context.WithValue(ctx, contextKey, l)
|
|
}
|