Elasticsearch API /myindex01/_stats/store,docs


개요

Elasticsearch API /myindex01/_stats/store,docs
root@localhost:~# curl localhost:9200/myindex01/_stats/store,docs
{"_shards":{"total":2,"successful":1,"failed":0},"_all":{"primaries":{"docs":{"count":3,"deleted":0},"store":{"size_in_bytes":3588}},"total":{"docs":{"count":3,"deleted":0},"store":{"size_in_bytes":3588}}},"indices":{"myindex01":{"uuid":"gs-Ad-juTVKtfyQ6dTsLOQ","primaries":{"docs":{"count":3,"deleted":0},"store":{"size_in_bytes":3588}},"total":{"docs":{"count":3,"deleted":0},"store":{"size_in_bytes":3588}}}}}
root@localhost:~# curl 'localhost:9200/myindex01/_stats/store,docs?pretty'
{
  "_shards" : {
    "total" : 2,
    "successful" : 1,
    "failed" : 0
  },
  "_all" : {
    "primaries" : {
      "docs" : {
        "count" : 3,
        "deleted" : 0
      },
      "store" : {
        "size_in_bytes" : 3588
      }
    },
    "total" : {
      "docs" : {
        "count" : 3,
        "deleted" : 0
      },
      "store" : {
        "size_in_bytes" : 3588
      }
    }
  },
  "indices" : {
    "myindex01" : {
      "uuid" : "gs-Ad-juTVKtfyQ6dTsLOQ",
      "primaries" : {
        "docs" : {
          "count" : 3,
          "deleted" : 0
        },
        "store" : {
          "size_in_bytes" : 3588
        }
      },
      "total" : {
        "docs" : {
          "count" : 3,
          "deleted" : 0
        },
        "store" : {
          "size_in_bytes" : 3588
        }
      }
    }
  }
}

같이 보기