plugins.asciidoc 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. [[cat-plugins]]
  2. == cat plugins
  3. The `plugins` command provides a view per node of running plugins. This information *spans nodes*.
  4. [source,js]
  5. ------------------------------------------------------------------------------
  6. GET /_cat/plugins?v&s=component&h=name,component,version,description
  7. ------------------------------------------------------------------------------
  8. // CONSOLE
  9. Might look like:
  10. ["source","txt",subs="attributes,callouts"]
  11. ------------------------------------------------------------------------------
  12. name component version description
  13. U7321H6 analysis-icu {version} The ICU Analysis plugin integrates Lucene ICU module into elasticsearch, adding ICU relates analysis components.
  14. U7321H6 analysis-kuromoji {version} The Japanese (kuromoji) Analysis plugin integrates Lucene kuromoji analysis module into elasticsearch.
  15. U7321H6 analysis-phonetic {version} The Phonetic Analysis plugin integrates phonetic token filter analysis with elasticsearch.
  16. U7321H6 analysis-smartcn {version} Smart Chinese Analysis plugin integrates Lucene Smart Chinese analysis module into elasticsearch.
  17. U7321H6 analysis-stempel {version} The Stempel (Polish) Analysis plugin integrates Lucene stempel (polish) analysis module into elasticsearch.
  18. U7321H6 analysis-ukrainian {version} The Ukrainian Analysis plugin integrates the Lucene UkrainianMorfologikAnalyzer into elasticsearch.
  19. U7321H6 discovery-azure-classic {version} The Azure Classic Discovery plugin allows to use Azure Classic API for the unicast discovery mechanism
  20. U7321H6 discovery-ec2 {version} The EC2 discovery plugin allows to use AWS API for the unicast discovery mechanism.
  21. U7321H6 discovery-file {version} Discovery file plugin enables unicast discovery from hosts stored in a file.
  22. U7321H6 discovery-gce {version} The Google Compute Engine (GCE) Discovery plugin allows to use GCE API for the unicast discovery mechanism.
  23. U7321H6 ingest-attachment {version} Ingest processor that uses Apache Tika to extract contents
  24. U7321H6 ingest-geoip {version} Ingest processor that uses looksup geo data based on ip adresses using the Maxmind geo database
  25. U7321H6 ingest-user-agent {version} Ingest processor that extracts information from a user agent
  26. U7321H6 mapper-murmur3 {version} The Mapper Murmur3 plugin allows to compute hashes of a field's values at index-time and to store them in the index.
  27. U7321H6 mapper-size {version} The Mapper Size plugin allows document to record their uncompressed size at index time.
  28. U7321H6 store-smb {version} The Store SMB plugin adds support for SMB stores.
  29. U7321H6 transport-nio {version} The nio transport.
  30. ------------------------------------------------------------------------------
  31. // TESTRESPONSE[s/([.()])/\\$1/ s/U7321H6/.+/ _cat]
  32. We can tell quickly how many plugins per node we have and which versions.