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

go-algorand 3.13.2-beta Release PR #4936

Merged
merged 4 commits into from
Dec 22, 2022
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 buildnumber.dat
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1
2
11 changes: 11 additions & 0 deletions logging/cyclicWriter.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import (
"os"
"os/exec"
"path/filepath"
"runtime"
"strings"
"text/template"
"time"
Expand Down Expand Up @@ -124,6 +125,16 @@ func (cyclic *CyclicFileWriter) Write(p []byte) (n int, err error) {

if uint64(len(p)) > cyclic.limit {
// there's no hope for writing this entry to the log

// for the large lines this is a clear indication something does wrong, dump data into stderr
const minDebugLogLineSize = 10 * 1024 * 1024
if len(p) >= minDebugLogLineSize {
buf := make([]byte, 16*1024)
stlen := runtime.Stack(buf, false)
fmt.Fprintf(os.Stderr, "Attempt to write a large log line:\n%s\n", string(buf[:stlen]))
fmt.Fprintf(os.Stderr, "The offending line:\n%s\n", string(p[:4096]))
}

return 0, fmt.Errorf("CyclicFileWriter: input too long to write. Len = %v", len(p))
}

Expand Down
9 changes: 7 additions & 2 deletions logging/telemetryhook.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ import (
"github.com/algorand/go-algorand/util/metrics"
)

var telemetryDrops = metrics.MakeCounter(metrics.MetricName{Name: "algod_telemetry_drops_total", Description: "telemetry messages not sent to server"})
var telemetryDrops = metrics.MakeCounter(metrics.MetricName{Name: "algod_telemetry_drops_total", Description: "telemetry messages dropped due to full queues"})
var telemetryErrors = metrics.MakeCounter(metrics.MetricName{Name: "algod_telemetry_errs_total", Description: "telemetry messages dropped due to server error"})

func createAsyncHook(wrappedHook logrus.Hook, channelDepth uint, maxQueueDepth int) *asyncTelemetryHook {
return createAsyncHookLevels(wrappedHook, channelDepth, maxQueueDepth, makeLevels(logrus.InfoLevel))
Expand Down Expand Up @@ -88,7 +89,8 @@ func createAsyncHookLevels(wrappedHook logrus.Hook, channelDepth uint, maxQueueD
if entry != nil {
err := hook.wrappedHook.Fire(entry)
if err != nil {
Base().Warnf("Unable to write event %#v to telemetry : %v", entry, err)
Base().WithFields(Fields{"TelemetryError": true}).Warnf("Unable to write event %#v to telemetry : %v", entry, err)
telemetryErrors.Inc(nil)
}
hook.wg.Done()
} else {
Expand Down Expand Up @@ -146,6 +148,9 @@ func (hook *asyncTelemetryHook) waitForEventAndReady() bool {

// Fire is required to implement logrus hook interface
func (hook *asyncTelemetryHook) Fire(entry *logrus.Entry) error {
if _, ok := entry.Data["TelemetryError"]; ok {
return nil
}
hook.wg.Add(1)
select {
case <-hook.quit:
Expand Down
31 changes: 31 additions & 0 deletions logging/telemetryhook_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -229,3 +229,34 @@ func TestAsyncTelemetryHook_QueueDepth(t *testing.T) {
// be one higher then the maxDepth.
require.LessOrEqual(t, hookEntries, maxDepth+1)
}

// Ensure that errors from inside the telemetryhook.go implementation are not reported to telemetry.
func TestAsyncTelemetryHook_SelfReporting(t *testing.T) {
partitiontest.PartitionTest(t)
t.Parallel()

const entryCount = 100
const maxDepth = 10

filling := make(chan struct{})

testHook := makeMockTelemetryHook(logrus.DebugLevel)
testHook.cb = func(entry *logrus.Entry) {
<-filling // Block while filling
}

hook := createAsyncHook(&testHook, 100, 10)
hook.ready = true
for i := 0; i < entryCount; i++ {
selfEntry := logrus.Entry{
Level: logrus.ErrorLevel,
Data: logrus.Fields{"TelemetryError": true},
Message: "Unable to write event",
}
hook.Fire(&selfEntry)
}
close(filling)
hook.Close()

require.Len(t, testHook.entries(), 0)
}