diff options
Diffstat (limited to 'src/index.py')
-rw-r--r-- | src/index.py | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/src/index.py b/src/index.py new file mode 100644 index 0000000..7933824 --- /dev/null +++ b/src/index.py @@ -0,0 +1,47 @@ +indexes = [ + { + "index": { + "fields": [ + "domain" + ] + }, + "name": "domain-json-index", + "type": "json" + }, + { + "index": { + "fields": [ + "ip" + ] + }, + "name": "ip-json-index", + "type": "json" + }, + { + "index": { + "fields": [ + "port" + ] + }, + "name": "port-json-index", + "type": "json" + }, + { + "index": { + "fields": [ + "asn" + ] + }, + "name": "asn-json-index", + "type": "json" + }, + { + "index": { + "fields": [ + "asn_country_code" + ] + }, + "name": "asn-country-code-json-index", + "type": "json" + } +] |