MCPcopy Index your code
hub / github.com/github/gh-aw / LogAnalysis

Interface LogAnalysis

pkg/cli/log_aggregation.go:17–22  ·  view source on GitHub ↗

LogAnalysis is a read-only interface for accessing domain analysis results. Both DomainAnalysis and FirewallAnalysis implement this interface.

Source from the content-addressed store, hash-verified

15// LogAnalysis is a read-only interface for accessing domain analysis results.
16// Both DomainAnalysis and FirewallAnalysis implement this interface.
17type LogAnalysis interface {
18 // GetAllowedDomains returns the list of allowed domains
19 GetAllowedDomains() []string
20 // GetBlockedDomains returns the list of blocked domains
21 GetBlockedDomains() []string
22}
23
24// MutableLogAnalysis extends LogAnalysis with mutation methods for aggregation.
25// Use this interface when both reading and writing domain data is required.

Implementers 1

DomainBucketspkg/cli/domain_buckets.go

Calls

no outgoing calls

Tested by

no test coverage detected