Merge pull request #7337 from Security-Onion-Solutions/fix/pb_overrides

Fix formatting for PB overrides
This commit is contained in:
weslambert
2022-02-25 20:48:38 -05:00
committed by GitHub
2 changed files with 31 additions and 27 deletions

View File

@@ -7,19 +7,21 @@
"mappings": { "mappings": {
"properties": { "properties": {
"destination": { "destination": {
"ip": { "properties": {
"type": "ip", "ip": {
"fields": { "type": "ip",
"keyword": { "fields": {
"type": "keyword" "keyword": {
"type": "keyword"
}
} }
} },
}, "port": {
"port": { "type": "long",
"type": "long", "fields": {
"fields": { "keyword": {
"keyword": { "type": "keyword"
"type": "keyword" }
} }
} }
} }

View File

@@ -7,23 +7,25 @@
"mappings": { "mappings": {
"properties": { "properties": {
"source": { "source": {
"ip": { "properties": {
"type": "ip", "ip": {
"fields": { "type": "ip",
"keyword": { "fields": {
"type": "keyword" "keyword": {
} "type": "keyword"
} }
}, }
"port": { },
"type": "long", "port": {
"fields": { "type": "long",
"keyword": { "fields": {
"type": "keyword" "keyword": {
"type": "keyword"
}
} }
} }
} }
} }
} }
} }
} }