From 1b2b71f10df1760a4cfe7db774c346e4320c22a4 Mon Sep 17 00:00:00 2001 From: lcawl Date: Tue, 31 Dec 2024 14:13:16 -0800 Subject: [PATCH] Fix example test failure --- docs/reference/rest-api/usage.asciidoc | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/reference/rest-api/usage.asciidoc b/docs/reference/rest-api/usage.asciidoc index c5cd0d441e3c7..065cca9537780 100644 --- a/docs/reference/rest-api/usage.asciidoc +++ b/docs/reference/rest-api/usage.asciidoc @@ -231,7 +231,8 @@ GET /_xpack/usage }, "eql" : { "available" : true, - "enabled" : true + "enabled" : true, + ... }, "esql" : { "available" : true, @@ -529,7 +530,10 @@ GET /_xpack/usage "available": true, "enabled": false, "indices_count": 0, - "indices_with_synthetic_source": 0 + "indices_with_synthetic_source": 0, + "num_docs": 0, + "size_in_bytes": 0, + "has_custom_cutoff_date": false } } ------------------------------------------------------------