• elasticsearch kabana中创建索引


    在kabana中创建索引和索引类型语法

    PUT clockin
    {
    "mappings": {
    "time": {

    }
    }
    }

    查询索引下的所有数据

    GET clockin/_search
    {
    "query": {
    "match_all": {}
    }
    }

    删除索引

    DELETE clockin

    通过uuid查询和时间倒序查询

    GET test/_search
    {
    "query": {
    "bool": {
    "must": [
    {
    "match": {
    "uuid": "050058"
    }
    }
    ]
    }
    },
    "sort": {
    "time": {
    "order": "desc"
    }
    },
    "size": 1000
    }

    //通过时间段查询和时间倒序排序

    GET test/_search
    {
    "query": {
    "bool": {
    "must": [{
    "range": {
    "time": {
    "gte": "2018-09-14T07:00:00",
    "lte": "2018-09-14T23:30:00"
    }
    }
    }]

    }
    },
    "sort": {
    "time": {
    "order": "desc"
    }
    },

    "size": 10000
    }

     

    fileddata 在text默认编辑字段上被禁用的需要手动开启

    exceptin 是index       log是type

    PUT exception/_mapping/log
    {
    "properties":{
    "time":{
    "type":"text",
    "fielddata":true
    }
    }
    }

  • 相关阅读:
    git
    fragment
    Builder模式
    代码混淆
    android studio快捷键
    小知识点
    angular组件使用
    英语摘要2019-6-4
    英语笔记2019-4-3
    搭建Eureka注册中心时遇到的问题
  • 原文地址:https://www.cnblogs.com/lizihao/p/9641416.html
Copyright © 2020-2023  润新知