Skip to content

Commit 0f5f0ed

Browse files
committed
[DOCS] Edit cat operation summaries
1 parent 8c4e5ee commit 0f5f0ed

File tree

17 files changed

+33
-18
lines changed

17 files changed

+33
-18
lines changed

specification/cat/allocation/CatAllocationRequest.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ import { CatRequestBase } from '@cat/_types/CatBase'
2121
import { Bytes, NodeIds } from '@_types/common'
2222

2323
/**
24-
* Provides a snapshot of the number of shards allocated to each data node and their disk space.
24+
* Get shard allocation information.
25+
* Get a snapshot of the number of shards allocated to each data node and their disk space.
2526
* IMPORTANT: cat APIs are only intended for human consumption using the command line or Kibana console. They are not intended for use by applications.
2627
* @rest_spec_name cat.allocation
2728
* @availability stack stability=stable

specification/cat/fielddata/CatFielddataRequest.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ import { CatRequestBase } from '@cat/_types/CatBase'
2121
import { Bytes, Fields } from '@_types/common'
2222

2323
/**
24-
* Returns the amount of heap memory currently used by the field data cache on every data node in the cluster.
24+
* Get field data cache information.
25+
* Get the amount of heap memory currently used by the field data cache on every data node in the cluster.
2526
* IMPORTANT: cat APIs are only intended for human consumption using the command line or Kibana console.
2627
* They are not intended for use by applications. For application consumption, use the nodes stats API.
2728
* @rest_spec_name cat.fielddata

specification/cat/health/CatHealthRequest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import { CatRequestBase } from '@cat/_types/CatBase'
2121
import { TimeUnit } from '@_types/Time'
2222

2323
/**
24-
* Returns the health status of a cluster, similar to the cluster health API.
24+
* Get the cluster health status.
2525
* IMPORTANT: cat APIs are only intended for human consumption using the command line or Kibana console.
2626
* They are not intended for use by applications. For application consumption, use the cluster health API.
2727
* This API is often used to check malfunctioning clusters.

specification/cat/master/CatMasterRequest.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
import { CatRequestBase } from '@cat/_types/CatBase'
2121

2222
/**
23-
* Returns information about the master node, including the ID, bound IP address, and name.
23+
* Get master node information.
24+
* Get information about the master node, including the ID, bound IP address, and name.
2425
* IMPORTANT: cat APIs are only intended for human consumption using the command line or Kibana console. They are not intended for use by applications. For application consumption, use the nodes info API.
2526
* @rest_spec_name cat.master
2627
* @availability stack stability=stable

specification/cat/nodeattrs/CatNodeAttributesRequest.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
import { CatRequestBase } from '@cat/_types/CatBase'
2121

2222
/**
23-
* Returns information about custom node attributes.
23+
* Get node attribute information.
24+
* Get information about custom node attributes.
2425
* IMPORTANT: cat APIs are only intended for human consumption using the command line or Kibana console. They are not intended for use by applications. For application consumption, use the nodes info API.
2526
* @rest_spec_name cat.nodeattrs
2627
* @availability stack stability=stable

specification/cat/nodes/CatNodesRequest.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ import { CatRequestBase } from '@cat/_types/CatBase'
2121
import { Bytes } from '@_types/common'
2222

2323
/**
24-
* Returns information about the nodes in a cluster.
24+
* Get node information.
25+
* Get information about the nodes in a cluster.
2526
* IMPORTANT: cat APIs are only intended for human consumption using the command line or Kibana console. They are not intended for use by applications. For application consumption, use the nodes info API.
2627
* @rest_spec_name cat.nodes
2728
* @availability stack stability=stable

specification/cat/pending_tasks/CatPendingTasksRequest.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
import { CatRequestBase } from '@cat/_types/CatBase'
2121

2222
/**
23-
* Returns cluster-level changes that have not yet been executed.
23+
* Get pending task information.
24+
* Get information about cluster-level changes that have not yet taken effect.
2425
* IMPORTANT: cat APIs are only intended for human consumption using the command line or Kibana console. They are not intended for use by applications. For application consumption, use the pending cluster tasks API.
2526
* @rest_spec_name cat.pending_tasks
2627
* @availability stack stability=stable

specification/cat/plugins/CatPluginsRequest.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
import { CatRequestBase } from '@cat/_types/CatBase'
2121

2222
/**
23-
* Returns a list of plugins running on each node of a cluster.
23+
* Get plugin information.
24+
* Get a list of plugins running on each node of a cluster.
2425
* IMPORTANT: cat APIs are only intended for human consumption using the command line or Kibana console. They are not intended for use by applications. For application consumption, use the nodes info API.
2526
* @rest_spec_name cat.plugins
2627
* @availability stack stability=stable

specification/cat/recovery/CatRecoveryRequest.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ import { CatRequestBase } from '@cat/_types/CatBase'
2121
import { Bytes, Indices } from '@_types/common'
2222

2323
/**
24-
* Returns information about ongoing and completed shard recoveries.
24+
* Get shard recovery information.
25+
* Get information about ongoing and completed shard recoveries.
2526
* Shard recovery is the process of initializing a shard copy, such as restoring a primary shard from a snapshot or syncing a replica shard from a primary shard. When a shard recovery completes, the recovered shard is available for search and indexing.
2627
* For data streams, the API returns information about the stream’s backing indices.
2728
* IMPORTANT: cat APIs are only intended for human consumption using the command line or Kibana console. They are not intended for use by applications. For application consumption, use the index recovery API.

specification/cat/repositories/CatRepositoriesRequest.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
import { CatRequestBase } from '@cat/_types/CatBase'
2121

2222
/**
23-
* Returns the snapshot repositories for a cluster.
23+
* Get snapshot repository information.
24+
* Get a list of snapshot repositories for a cluster.
2425
* IMPORTANT: cat APIs are only intended for human consumption using the command line or Kibana console. They are not intended for use by applications. For application consumption, use the get snapshot repository API.
2526
* @rest_spec_name cat.repositories
2627
* @availability stack since=2.1.0 stability=stable

0 commit comments

Comments
 (0)