OpenSearch/x-pack/plugin
Jason Tedor 7d57bdb3a0
Follow stats structure (#34301)
This commit modifies the follow stats API response structure to more
clearly highlight meaning of the higher level fields. In particular,
previously the response had a top-level key for each index. Instead, we
nest the indices under an "indices" field which is now an array. The
values in this array are objects containing two fields: "index" which is
the name of the follower index, and "shards" which is an array where
each value in the array is the follower stats for that shard. That is,
we have gone from:

{
  "bar": [
    {
      "shard_id": 0...
    }...
  ]...
}

to

{
  "indices": [
    {
      "index": "bar",
      "shards": [
        {
          "shard_id": 0...
        }...
      ]
   }...
}
2018-10-05 06:38:20 -04:00
..
ccr Follow stats structure (#34301) 2018-10-05 06:38:20 -04:00
core Follow stats structure (#34301) 2018-10-05 06:38:20 -04:00
deprecation Remove unsupported Version.V_5_* (#32937) 2018-08-24 09:51:21 +02:00
graph Fix a variety of typos and misspelled words (#32792) 2018-10-03 18:11:38 +01:00
logstash Build: Rework shadow plugin configuration (#32409) 2018-08-21 20:03:28 -04:00
ml [ML] Allow asynchronous job deletion (#34058) 2018-10-05 02:41:28 +03:00
monitoring Rename CCR stats implementation (#34300) 2018-10-05 06:25:24 -04:00
rollup Fix a variety of typos and misspelled words (#32792) 2018-10-03 18:11:38 +01:00
security Allow User/Password realms to disable authc (#34033) 2018-10-05 12:10:42 +10:00
sql Fix a variety of typos and misspelled words (#32792) 2018-10-03 18:11:38 +01:00
src/test [ML] Allow asynchronous job deletion (#34058) 2018-10-05 02:41:28 +03:00
upgrade Fix a variety of typos and misspelled words (#32792) 2018-10-03 18:11:38 +01:00
watcher Logging: Drop remaining Settings log ctor (#34149) 2018-10-04 09:18:04 -04:00
build.gradle Allow Integ Tests to run in a FIPS-140 JVM (#31989) 2018-07-24 12:48:14 +03:00