plugins.asciidoc 4.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. [[cat-plugins]]
  2. === cat plugins API
  3. ++++
  4. <titleabbrev>cat plugins</titleabbrev>
  5. ++++
  6. .New API reference
  7. [sidebar]
  8. --
  9. For the most up-to-date API details, refer to {api-es}/group/endpoint-cat[Compact and aligned text (CAT) APIs]..
  10. --
  11. [IMPORTANT]
  12. ====
  13. cat APIs are only intended for human consumption using the command line or {kib}
  14. console. They are _not_ intended for use by applications. For application
  15. consumption, use the <<cluster-nodes-info,nodes info API>>.
  16. ====
  17. Returns a list of plugins running on each node of a cluster.
  18. [[cat-plugins-api-request]]
  19. ==== {api-request-title}
  20. `GET /_cat/plugins`
  21. [[cat-plugins-api-prereqs]]
  22. ==== {api-prereq-title}
  23. * If the {es} {security-features} are enabled, you must have the `monitor` or
  24. `manage` <<privileges-list-cluster,cluster privilege>> to use this API.
  25. [[cat-plugins-api-query-params]]
  26. ==== {api-query-parms-title}
  27. include::{es-ref-dir}/rest-api/common-parms.asciidoc[tag=http-format]
  28. include::{es-ref-dir}/rest-api/common-parms.asciidoc[tag=cat-h]
  29. include::{es-ref-dir}/rest-api/common-parms.asciidoc[tag=help]
  30. include::{es-ref-dir}/rest-api/common-parms.asciidoc[tag=local]
  31. include::{es-ref-dir}/rest-api/common-parms.asciidoc[tag=master-timeout]
  32. include::{es-ref-dir}/rest-api/common-parms.asciidoc[tag=cat-s]
  33. include::{es-ref-dir}/rest-api/common-parms.asciidoc[tag=cat-v]
  34. [[cat-plugins-api-example]]
  35. ==== {api-examples-title}
  36. [source,console]
  37. ------------------------------------------------------------------------------
  38. GET /_cat/plugins?v=true&s=component&h=name,component,version,description
  39. ------------------------------------------------------------------------------
  40. The API returns the following response:
  41. ["source","txt",subs="attributes,callouts"]
  42. ------------------------------------------------------------------------------
  43. name component version description
  44. U7321H6 analysis-icu {version_qualified} The ICU Analysis plugin integrates the Lucene ICU module into Elasticsearch, adding ICU-related analysis components.
  45. U7321H6 analysis-kuromoji {version_qualified} The Japanese (kuromoji) Analysis plugin integrates Lucene kuromoji analysis module into elasticsearch.
  46. U7321H6 analysis-nori {version_qualified} The Korean (nori) Analysis plugin integrates Lucene nori analysis module into elasticsearch.
  47. U7321H6 analysis-phonetic {version_qualified} The Phonetic Analysis plugin integrates phonetic token filter analysis with elasticsearch.
  48. U7321H6 analysis-smartcn {version_qualified} Smart Chinese Analysis plugin integrates Lucene Smart Chinese analysis module into elasticsearch.
  49. U7321H6 analysis-stempel {version_qualified} The Stempel (Polish) Analysis plugin integrates Lucene stempel (polish) analysis module into elasticsearch.
  50. U7321H6 analysis-ukrainian {version_qualified} The Ukrainian Analysis plugin integrates the Lucene UkrainianMorfologikAnalyzer into elasticsearch.
  51. U7321H6 discovery-azure-classic {version_qualified} The Azure Classic Discovery plugin allows to use Azure Classic API for the unicast discovery mechanism
  52. U7321H6 discovery-ec2 {version_qualified} The EC2 discovery plugin allows to use AWS API for the unicast discovery mechanism.
  53. U7321H6 discovery-gce {version_qualified} The Google Compute Engine (GCE) Discovery plugin allows to use GCE API for the unicast discovery mechanism.
  54. U7321H6 mapper-annotated-text {version_qualified} The Mapper Annotated_text plugin adds support for text fields with markup used to inject annotation tokens into the index.
  55. U7321H6 mapper-murmur3 {version_qualified} The Mapper Murmur3 plugin allows to compute hashes of a field's values at index-time and to store them in the index.
  56. U7321H6 mapper-size {version_qualified} The Mapper Size plugin allows document to record their uncompressed size at index time.
  57. U7321H6 store-smb {version_qualified} The Store SMB plugin adds support for SMB stores.
  58. ------------------------------------------------------------------------------
  59. // TESTRESPONSE[s/([.()])/\\$1/ s/U7321H6/.+/ non_json]