mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-03-27 03:14:56 +01:00
Added README.md
This commit is contained in:
parent
aa9a96f327
commit
bdf5147632
2 changed files with 19 additions and 0 deletions
18
plugins/elasticsearch/README.md
Normal file
18
plugins/elasticsearch/README.md
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
elasticsearch
|
||||
=======
|
||||
This plugin makes easy to use Elasticsearch API and it also offering autocomplete for common APIs.
|
||||
There are `GET`, `HEAD`, `DELETE`, `PUT` and `POST` commands.
|
||||
|
||||
Examples usage:
|
||||
- `GET _cluster/health`
|
||||
- `GET _cat`
|
||||
- `DELETE twitter`
|
||||
|
||||
|
||||
Aliases
|
||||
-------
|
||||
|
||||
- `alias ech='GET _cluster/health'`: Cluster status health
|
||||
- `alias ecs='GET _cluster/state'`: Allows to get a comprehensive state information of the whole cluster
|
||||
- `alias ens='GET _nodes/stats'`: Allows to retrieve all of the cluster nodes statistics
|
||||
- `alias esf='GET _stats/fielddata'`: Field data memory usage on index level
|
||||
|
|
@ -3,6 +3,7 @@
|
|||
local -a options
|
||||
options=(
|
||||
'_cache/clear:Allows to clear all caches for all indices'
|
||||
'_cat:List of all cat commands'
|
||||
'_cluster/health:Cluster status health'
|
||||
'_cluster/nodes/_local/_shutdown:Shutdown local node'
|
||||
'_cluster/pending_tasks:Returns a list of any cluster-level changes which have not yet been executed'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue