zoukankan      html  css  js  c++  java
  • 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" }
    }
    }
    }
    }

  • 相关阅读:
    Codeforces Round #535 (Div. 3)
    2019 CCPC-Wannafly Winter Camp Day4(Div2, onsite)
    Codeforces Round #534 (Div. 2)
    2019 CCPC-Wannafly Winter Camp Day3(Div2, onsite)
    2019 CCPC-Wannafly Winter Camp Day2(Div2, onsite)
    2019 CCPC-Wannafly Winter Camp Day1 (Div2, onsite)
    codeforces1097D Makoto and a Blackboard 数学+期望dp
    【NOIP2016】换教室
    ICPC2019徐州站游记
    【Codeforces】Orz Panda Cup
  • 原文地址:https://www.cnblogs.com/qiumingcheng/p/6360903.html
Copyright © 2011-2022 走看看