Adding index to initial es event, and updating mapping.

This commit is contained in:
Phrozyn 2018-08-07 15:48:52 -05:00
Родитель 4a098162ae
Коммит eb8fad8f58
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: DBCDDDC9CF758282
2 изменённых файлов: 10 добавлений и 10 удалений

Просмотреть файл

@ -134,7 +134,7 @@ def main():
# post to elastic search servers directly without going through
# message queues in case there is an availability issue
es.save_event(doc_type='mozdefhealth', body=json.dumps(healthlog))
es.save_event(index=index, doc_type='mozdefhealth', body=json.dumps(healthlog))
# post another doc with a static docid and tag
# for use when querying for the latest status
healthlog['tags'] = ['mozdef', 'status', 'latest']

Просмотреть файл

@ -284,6 +284,9 @@
"loadaverage": {
"type": "float"
},
"username": {
"type": "keyword"
},
"queues": {
"properties": {
"deliver_eps": {
@ -298,6 +301,12 @@
"publish_eps": {
"type": "float"
},
"messages_inflight": {
"type": "long"
},
"messages_delayed": {
"type": "long"
},
"queue": {
"type": "text",
"fields": {
@ -329,15 +338,6 @@
},
"total_publish_eps": {
"type": "float"
},
"username": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
}
}
},