Skip to content
Merged
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
6 changes: 0 additions & 6 deletions pkg/mcp/auditlogs/collector.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import (
"fmt"
"io"
"net/http"
"strings"
"sync"
"time"

Expand Down Expand Up @@ -55,11 +54,6 @@ func (c *Collector) CollectMCPAuditEntry(entry MCPAuditLog) {
return
}

if entry.ClientName == "nanobot-ui" && strings.HasPrefix(entry.CallIdentifier, "chat://") && entry.CallType == "resources/read" {
// These are spammy audit logs that we do not need to send, as they never contain useful information.
return
}

entry.Metadata = c.auditLogMetadata

c.auditLock.Lock()
Expand Down