• 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" }
    }
    }
    }
    }

  • 相关阅读:
    可展开的UITableView (附源码)
    如何给Wordpress安装插件
    使用SAP UI5 Web Components开发React应用
    如何在SAP Fiori应用里使用React component
    SAP云平台上的Fiori Launchpad tile数据是如何从后台取出来的
    ABAP Netweaver和SAP Hybris的内存管理
    SAP CRM的Genil层和Hybris的jalo模型
    wordpress插件在服务器上的存储位置
    一步步把一个SpringBoot应用打包成Docker镜像并运行
    SAP物料主数据创建时间和创建个数的函数关系
  • 原文地址:https://www.cnblogs.com/qiumingcheng/p/6360903.html
Copyright © 2020-2023  润新知