elasticSearch2.4与grafana,stagemonitor集成做监控需要执行的mapping
Posted 邱明成
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了elasticSearch2.4与grafana,stagemonitor集成做监控需要执行的mapping相关的知识,希望对你有一定的参考价值。
PUT /_template/stagemonitor-metrics-
{
"template": "stagemonitor-metrics-*",
"settings": {
"index": {
"refresh_interval": "5s"
}
},
"mappings": {
"_default_": {
"dynamic_templates": [
{
"strings": {
"match": "*",
"match_mapping_type": "string",
"mapping": { "type": "string", "doc_values": true, "index": "not_analyzed" }
}
}
],
"_all": { "enabled": false },
"_source": { "enabled": false },
"properties": {
"@timestamp": { "type": "date", "doc_values": true },
"measurement_start": { "type": "date","doc_values": true },
"count": { "type": "integer", "doc_values": true, "index": "no" },
"m1_rate": { "type": "float", "doc_values": true, "index": "no" },
"m5_rate": { "type": "float", "doc_values": true, "index": "no" },
"m15_rate": { "type": "float", "doc_values": true, "index": "no" },
"max": { "type": "integer", "doc_values": true, "index": "no" },
"mean": { "type": "integer", "doc_values": true, "index": "no" },
"mean_rate": { "type": "float", "doc_values": true, "index": "no" },
"median": { "type": "float", "doc_values": true, "index": "no" },
"min": { "type": "float", "doc_values": true, "index": "no" },
"p25": { "type": "float", "doc_values": true, "index": "no" },
"p75": { "type": "float", "doc_values": true, "index": "no" },
"p95": { "type": "float", "doc_values": true, "index": "no" },
"p98": { "type": "float", "doc_values": true, "index": "no" },
"p99": { "type": "float", "doc_values": true, "index": "no" },
"p999": { "type": "float", "doc_values": true, "index": "no" },
"std": { "type": "float", "doc_values": true, "index": "no" },
"value": { "type": "float", "doc_values": true, "index": "no" },
"value_boolean": { "type": "boolean", "doc_values": true, "index": "no" },
"value_string": { "type": "string", "doc_values": true, "index": "no" }
}
}
}
}
以上是关于elasticSearch2.4与grafana,stagemonitor集成做监控需要执行的mapping的主要内容,如果未能解决你的问题,请参考以下文章
elasticsearch2.4.2安装 --插件marvel
elasticsearch2.4升级elasticsearch6.2心得