Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: improve the format of --debug logs #1559

Merged
merged 28 commits into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion internal/trace/context.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ func NewLogger(ctx context.Context, debug bool) (context.Context, logrus.FieldLo
}

logger := logrus.New()
logger.SetFormatter(&logrus.TextFormatter{DisableQuote: true})
logger.SetFormatter(&TextFormatter{})
Wwwsylvia marked this conversation as resolved.
Show resolved Hide resolved
logger.SetLevel(logLevel)
entry := logger.WithContext(ctx)
return context.WithValue(ctx, loggerKey, entry), entry
Expand Down
50 changes: 50 additions & 0 deletions internal/trace/text_formatter.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
/*
Copyright The ORAS 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 trace

import (
"bytes"
"fmt"
"strings"
"time"

"github.com/sirupsen/logrus"
)

// TextFormatter formats logs into text.
type TextFormatter struct{}

// logEntrySeperator is the separator between log entries.
const logEntrySeperator = "\n\n" // two empty lines

// Format renders a single log entry.
func (f *TextFormatter) Format(entry *logrus.Entry) ([]byte, error) {
var buf bytes.Buffer

timestamp := entry.Time.Format(time.RFC3339Nano)
levelText := strings.ToUpper(entry.Level.String())
fmt.Fprintf(&buf, "[%s][%s]: %s\n", timestamp, levelText, entry.Message)
// print data fields
if len(entry.Data) > 0 {
buf.WriteString("[Data]:\n")
for k, v := range entry.Data {
fmt.Fprintf(&buf, " %s=%v\n", k, v)
}
}

buf.WriteString(logEntrySeperator)
return buf.Bytes(), nil
}
99 changes: 99 additions & 0 deletions internal/trace/text_formatter_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
/*
Copyright The ORAS 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 trace

import (
"reflect"
"testing"
"time"

"github.com/sirupsen/logrus"
)

func TestTextFormatter_Format(t *testing.T) {
tests := []struct {
name string
f *TextFormatter
entry *logrus.Entry
want []byte
wantErr bool
}{
{
name: "debug log entry",
f: &TextFormatter{},
entry: &logrus.Entry{
Time: time.Date(2024, time.December, 1, 23, 30, 1, 55, time.UTC),
Level: logrus.DebugLevel,
Message: "test debug",
Data: logrus.Fields{},
},
want: []byte("[2024-12-01T23:30:01.000000055Z][DEBUG]: test debug\n\n\n"),
wantErr: false,
},
{
name: "info log entry",
f: &TextFormatter{},
entry: &logrus.Entry{
Time: time.Date(2024, time.December, 1, 23, 30, 1, 55, time.UTC),
Level: logrus.InfoLevel,
Message: "test info",
Data: logrus.Fields{},
},
want: []byte("[2024-12-01T23:30:01.000000055Z][INFO]: test info\n\n\n"),
wantErr: false,
},
{
name: "warning log entry with data fields",
f: &TextFormatter{},
entry: &logrus.Entry{
Time: time.Date(2024, time.December, 1, 23, 30, 1, 55, time.UTC),
Level: logrus.WarnLevel,
Message: "test warning with fields",
Data: logrus.Fields{
"testkey": "testval",
},
},
want: []byte("[2024-12-01T23:30:01.000000055Z][WARNING]: test warning with fields\n[Data]:\n testkey=testval\n\n\n"),
wantErr: false,
},
{
name: "error log entry with data fields",
f: &TextFormatter{},
entry: &logrus.Entry{
Time: time.Date(2024, time.December, 1, 23, 30, 1, 55, time.UTC),
Level: logrus.ErrorLevel,
Message: "test warning with fields",
Data: logrus.Fields{
"testkey": 123,
},
},
want: []byte("[2024-12-01T23:30:01.000000055Z][ERROR]: test warning with fields\n[Data]:\n testkey=123\n\n\n"),
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := tt.f.Format(tt.entry)
if (err != nil) != tt.wantErr {
t.Errorf("TextFormatter.Format() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("TextFormatter.Format() = %s, want %s", got, tt.want)
}
})
}
}
80 changes: 75 additions & 5 deletions internal/trace/transport.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@
package trace

import (
"bytes"
"fmt"
"io"
"mime"
"net/http"
"strings"
"sync/atomic"
Expand All @@ -34,6 +37,9 @@
}
)

// payloadSizeLimit limits the maximum size of the response body to be printed.
const payloadSizeLimit int64 = 16 * 1024 // 16 KiB

// Transport is an http.RoundTripper that keeps track of the in-flight
// request and add hooks to report HTTP tracing events.
type Transport struct {
Expand All @@ -54,18 +60,18 @@
e := Logger(ctx)

// log the request
e.Debugf("Request #%d\n> Request URL: %q\n> Request method: %q\n> Request headers:\n%s",
e.Debugf("--> Request #%d\n> Request URL: %q\n> Request method: %q\n> Request headers:\n%s",
id, req.URL, req.Method, logHeader(req.Header))

// log the response
resp, err = t.RoundTripper.RoundTrip(req)
if err != nil {
e.Errorf("Error in getting response: %w", err)
e.Errorf("<-- Response #%d\nError in getting response: %v", id, err)

Check warning on line 69 in internal/trace/transport.go

View check run for this annotation

Codecov / codecov/patch

internal/trace/transport.go#L69

Added line #L69 was not covered by tests
} else if resp == nil {
e.Errorf("No response obtained for request %s %q", req.Method, req.URL)
e.Errorf("<-- Response #%d\nNo response obtained for request %s %q", id, req.Method, req.URL)

Check warning on line 71 in internal/trace/transport.go

View check run for this annotation

Codecov / codecov/patch

internal/trace/transport.go#L71

Added line #L71 was not covered by tests
} else {
e.Debugf("Response #%d\n< Response Status: %q\n< Response headers:\n%s",
id, resp.Status, logHeader(resp.Header))
e.Debugf("<-- Response #%d\n< Response Status: %q\n< Response headers:\n%s\n< Response body:\n%s",
id, resp.Status, logHeader(resp.Header), logResponseBody(resp))
}
return resp, err
}
Expand All @@ -87,3 +93,67 @@
}
return " Empty header"
}

// logResponseBody prints out the response body if it is printable and within
// the size limit.
func logResponseBody(resp *http.Response) string {
Wwwsylvia marked this conversation as resolved.
Show resolved Hide resolved
if resp.Body == nil || resp.Body == http.NoBody {
return " No response body to print"
}

// non-applicable body is not printed and remains untouched for subsequent processing
contentType := resp.Header.Get("Content-Type")
if contentType == "" {
return " Response body without a content type is not printed"
}
if !isPrintableContentType(contentType) {
return fmt.Sprintf(" Response body of content type %q is not printed", contentType)
}

buf := bytes.NewBuffer(nil)
body := resp.Body
// restore the body by concatenating the read body with the remaining body
resp.Body = struct {
io.Reader
io.Closer
}{
Reader: io.MultiReader(buf, body),
Closer: body,
}
// read the body up to limit+1 to check if the body exceeds the limit
if _, err := io.CopyN(buf, body, payloadSizeLimit+1); err != nil && err != io.EOF {
return fmt.Sprintf(" Error reading response body: %v", err)
}

readBody := buf.String()
if len(readBody) == 0 {
return " Response body is empty"
}
if containsCredentials(readBody) {
return " Response body redacted due to potential credentials"
}
if len(readBody) > int(payloadSizeLimit) {
return readBody[:payloadSizeLimit] + "\n...(truncated)"
}
return readBody
}

// isPrintableContentType returns true if the content of contentType is printable.
func isPrintableContentType(contentType string) bool {
Wwwsylvia marked this conversation as resolved.
Show resolved Hide resolved
mediaType, _, err := mime.ParseMediaType(contentType)
if err != nil {
return false
}

switch mediaType {
case "application/json", // JSON types
"text/plain", "text/html": // text types
return true
}
return strings.HasSuffix(mediaType, "+json")
}

// containsCredentials returns true if the body contains potential credentials.
func containsCredentials(body string) bool {
return strings.Contains(body, `"token"`) || strings.Contains(body, `"access_token"`)
}
Loading
Loading