Skip to content
Closed
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
9 changes: 6 additions & 3 deletions correlation/ti/ti.go
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
package ti

import (
"github.com/tidwall/gjson"
"github.com/utmstack/UTMStack/correlation/correlation"
"github.com/utmstack/UTMStack/correlation/utils"
"net"
"runtime"
"strings"
"sync"
"time"

"github.com/tidwall/gjson"
"github.com/utmstack/UTMStack/correlation/correlation"
"github.com/utmstack/UTMStack/correlation/utils"
)

type Cache map[string]bool
Expand All @@ -35,6 +36,8 @@ func blocked(log string) bool {
"drop",
"reject",
"deny",
"timeout",
"closed",
}

for _, e := range exclusionList {
Expand Down