MySQL慢查询日志ES索引模板

Posted 运维小兵

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL慢查询日志ES索引模板相关的知识,希望对你有一定的参考价值。

{
    "template": "mysql-slow-log-*",
    "settings": {
        "index": {
            "refresh_interval": "5s"
        }
    },
    "mappings": {
        "mysql-slow-log": {
            "numeric_detection": true, //开启数值类型设置
            "properties": {
                "@timestamp": {
                    "type": "date",
                    "format": "strict_date_optional_time||epoch_millis"
                },
                "@version": {
                    "type": "string"
                },
                "Query_time": {
                    "type": "double"    //设置该字段为double类型的
                },
                "Row_sent": {
                    "type": "string"
                },
                "Rows_examined": {
                    "type": "string"
                },
                "clientip": {
                    "type": "string"
                },
                "envCode": {
                    "type": "string"
                },
                "host": {
                    "type": "string"
                },
                "id": {
                    "type": "string"
                },
                "lock_time": {
                    "type": "string"
                },
                "message": {
                    "type": "string"
                },
                "mysqlType": {
                    "type": "string",
                    "norms": {
                        "enabled": false
                    },
                    "fielddata": {
                        "format": "disabled"
                    },
                    "fields": {     //产生.raw聚合
                        "raw": {
                            "type": "string",
                            "index": "not_analyzed",
                            "ignore_above": 256
                        }
                    }
                },
                "nsCode": {
                    "type": "string"
                },
                "path": {
                    "type": "string"
                },
                "sql": {
                    "type": "string",
                    "index": "not_analyzed"     //在创建索引的时候,该字段不分词
                },
                "tags": {
                    "type": "string"
                },
                "timestamp": {
                    "type": "string"
                },
                "type": {
                    "type": "string"
                },
                "user": {
                    "type": "string"
                }
            }
        }
    }
}

 

以上是关于MySQL慢查询日志ES索引模板的主要内容,如果未能解决你的问题,请参考以下文章

Elasticsearch慢查询日志分析

MYSQL 索引--- SQL日志分析

mysql5.6.20开启慢查询日志以及创建索引优化慢查询

MySQL---正确使用索引limit分页执行计划慢日志查询

开启mysql慢查询日志并使用mysqldumpslow命令查看

MySQL 慢查询日志