AKAI TSUKI

System development or Technical something

check index infomation by REST API

infomation

# curl http://localhost:9200/customer?pretty
{
  "customer" : {
    "aliases" : { },
    "mappings" : { },
    "settings" : {
      "index" : {
        "creation_date" : "1514796397799",
        "number_of_shards" : "5",
        "number_of_replicas" : "1",
        "uuid" : "2bDYA53CQp6lvXxoHe_jAQ",
        "version" : {
          "created" : "5040399"
        },
        "provided_name" : "customer"
      }
    }
  }
}
#

settings

# curl http://localhost:9200/customer/_settings?pretty
{
  "customer" : {
    "settings" : {
      "index" : {
        "creation_date" : "1514796397799",
        "number_of_shards" : "5",
        "number_of_replicas" : "1",
        "uuid" : "2bDYA53CQp6lvXxoHe_jAQ",
        "version" : {
          "created" : "5040399"
        },
        "provided_name" : "customer"
      }
    }
  }
}
#

mappings

# curl http://localhost:9200/customer/_mappings?pretty
{
  "customer" : {
    "mappings" : { }
  }
}
#

alias

# curl http://localhost:9200/customer/_alias?pretty
{
  "customer" : {
    "aliases" : { }
  }
}
#

mappings and alias

# curl http://localhost:9200/customer/_mappings,_alias?pretty
{
  "customer" : {
    "mappings" : { },
    "aliases" : { }
  }
}
#