You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.5 KiB

  1. key: elasticsearch
  2. title: Elasticsearch
  3. description: Elasticsearch is a distributed, RESTful search and analytics engine capable of solving a growing number of use cases.
  4. author: requarks.io
  5. logo: https://static.requarks.io/logo/elasticsearch.svg
  6. website: https://www.elastic.co/products/elasticsearch
  7. isAvailable: true
  8. props:
  9. apiVersion:
  10. type: String
  11. title: API Version
  12. hint: Should match the version of the Elasticsearch nodes you are connecting to
  13. order: 1
  14. enum:
  15. - '6.6'
  16. - '6.5'
  17. - '6.4'
  18. - '6.3'
  19. default: '6.6'
  20. hosts:
  21. type: String
  22. title: Host(s)
  23. hint: Comma-separated list of Elasticsearch hosts to connect to. (including the port)
  24. order: 2
  25. user:
  26. type: String
  27. title: Username
  28. hint: (Optional) Username to use if using the security feature from X-Pack
  29. order: 3
  30. pass:
  31. type: String
  32. title: Password
  33. hint: (Optional) Password to use if using the security feature from X-Pack
  34. order: 4
  35. indexName:
  36. type: String
  37. title: Index Name
  38. hint: The index name to use during creation
  39. default: wiki
  40. order: 5
  41. sniffOnStart:
  42. type: Boolean
  43. title: Sniff on start
  44. hint: 'Should Wiki.js attempt to detect the rest of the cluster on first connect? (Default: off)'
  45. default: false
  46. order: 6
  47. sniffInterval:
  48. type: Number
  49. title: Sniff Interval
  50. hint: '0 = disabled, Interval in seconds to check for updated list of nodes in cluster. (Default: 0)'
  51. default: 0
  52. order: 7