diff --git a/pkg/agent/parca-agent.bpf.o b/pkg/agent/parca-agent.bpf.o deleted file mode 100644 index 5e8809a3f..000000000 Binary files a/pkg/agent/parca-agent.bpf.o and /dev/null differ diff --git a/pkg/agent/write_client.go b/pkg/agent/write_client.go index 96a11a632..bf4fa572d 100644 --- a/pkg/agent/write_client.go +++ b/pkg/agent/write_client.go @@ -82,10 +82,11 @@ func (b *Batcher) batchLoop(ctx context.Context) error { ctx, &profilestorepb.WriteRawRequest{Series: batch}, ); err != nil { - level.Error(b.logger).Log("msg", "Writeclient failed to send profiles", "err", err) + level.Error(b.logger).Log("msg", "Write client failed to send profiles", "err", err) return err } + level.Debug(b.logger).Log("msg", "Write client has sent profiles", "count", len(batch)) return nil }