From 12a8c669f52c0e84d580c078cee849b25133b585 Mon Sep 17 00:00:00 2001 From: Herbert Eiselt Date: Thu, 7 Feb 2019 17:50:41 +0100 Subject: Add sdnr wt devicemanager Add complete sdnr wireless transport app devicemanager Change-Id: I433014ee579a3c8833b3b8f84c4087c5f776704f Issue-ID: SDNC-575 Signed-off-by: Herbert Eiselt --- .../sdnperformance/sdnperformanceMapping.json | 92 ++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 sdnr/wt/devicemanager/provider/src/main/resources/elasticsearch/index/sdnperformance/sdnperformanceMapping.json (limited to 'sdnr/wt/devicemanager/provider/src/main/resources/elasticsearch/index/sdnperformance') diff --git a/sdnr/wt/devicemanager/provider/src/main/resources/elasticsearch/index/sdnperformance/sdnperformanceMapping.json b/sdnr/wt/devicemanager/provider/src/main/resources/elasticsearch/index/sdnperformance/sdnperformanceMapping.json new file mode 100644 index 000000000..92d5ad2fb --- /dev/null +++ b/sdnr/wt/devicemanager/provider/src/main/resources/elasticsearch/index/sdnperformance/sdnperformanceMapping.json @@ -0,0 +1,92 @@ +{ + "mappings": + { + "historicalperformance24h": + { + "properties": + { + "node-name": + { + "index": "not_analyzed", + "type": "string" + }, + "time-stamp": + { + "index": "not_analyzed", + "type": "string" + }, + "suspect-interval-flag": + { + "type": "boolean" + }, + "scanner-id": + { + "index": "not_analyzed", + "type": "string" + }, + "uuid-interface": + { + "index": "not_analyzed", + "type": "string" + }, + "layer-protocol-name": { + "index": "not_analyzed", + "type": "string" + }, + "granularity-period": + { + "index": "not_analyzed", + "type": "string" + }, + "radio-signal-id": { + "index": "not_analyzed", + "type": "string" + } + } + }, + + "historicalperformance15min": + { + "properties": + { + "node-name": + { + "index": "not_analyzed", + "type": "string" + }, + "time-stamp": + { + "index": "not_analyzed", + "type": "string" + }, + "suspect-interval-flag": + { + "type": "boolean" + }, + "scanner-id": + { + "index": "not_analyzed", + "type": "string" + }, + "uuid-interface": + { + "index": "not_analyzed", + "type": "string" + }, + "layer-protocol-name": { + "index": "not_analyzed", + "type": "string" + }, + "granularity-period": + { + "index": "not_analyzed", + "type": "string" + }, + "radio-signal-id": { + "index": "not_analyzed", + "type": "string" + } + } + } + } +} -- cgit 1.2.3-korg