From dfeca5cbace4b0c49958dd991ec9c5d26b5d79d4 Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Thu, 27 Nov 2014 20:49:16 +0100 Subject: added es5 (elasticsearch integration for sfive) --- src/es5/sfive-mapping.json | 56 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 src/es5/sfive-mapping.json (limited to 'src/es5/sfive-mapping.json') diff --git a/src/es5/sfive-mapping.json b/src/es5/sfive-mapping.json new file mode 100644 index 0000000..6ed1772 --- /dev/null +++ b/src/es5/sfive-mapping.json @@ -0,0 +1,56 @@ +{ + "mappings" : { + "dataupdate" : { + "properties" : { + "source-id": { "type": "string" }, + "SourceHubDataUpdateId" : { + "type" : "long" + }, + "SourceHubUuid" : { + "type" : "string" + }, + "data" : { + "properties" : { + "bytes-received" : { + "type" : "long" + }, + "bytes-sent" : { + "type" : "long" + }, + "client-count" : { + "type" : "long" + } + } + }, + "duration-ms" : { + "type" : "long" + }, + "hostname" : { + "type" : "string", + "copy_to": "source-id" + }, + "start-time" : { + "type" : "date", + "format" : "dateOptionalTime" + }, + "streamer-id" : { + "properties" : { + "content-id" : { + "type" : "string", + "copy_to": "source-id" + }, + "format" : { + "type" : "string" + }, + "quality" : { + "type" : "string" + } + } + }, + "version" : { + "type" : "long" + } + } + } + } +} -- cgit v1.2.3