emqx_redis.hocon 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. emqx_redis {
  2. cluster.desc:
  3. """Cluster mode. Must be set to 'cluster' when Redis server is running in clustered mode."""
  4. cluster.label:
  5. """Cluster Mode"""
  6. database.desc:
  7. """Redis database ID."""
  8. database.label:
  9. """Database ID"""
  10. sentinel.desc:
  11. """Sentinel mode. Must be set to 'sentinel' when Redis server is running in sentinel mode."""
  12. sentinel.label:
  13. """Sentinel Mode"""
  14. sentinel_desc.desc:
  15. """The cluster name in Redis sentinel mode."""
  16. sentinel_desc.label:
  17. """Cluster Name"""
  18. server.desc:
  19. """The IPv4 or IPv6 address or the hostname to connect to.<br/>
  20. A host entry has the following form: `Host[:Port]`.<br/>
  21. The Redis default port 6379 is used if `[:Port]` is not specified."""
  22. server.label:
  23. """Server Host"""
  24. servers.desc:
  25. """A Node list for Cluster to connect to. The nodes should be separated with commas, such as: `Node[,Node].`
  26. For each Node should be: The IPv4 or IPv6 address or the hostname to connect to.
  27. A host entry has the following form: `Host[:Port]`.
  28. The Redis default port 6379 is used if `[:Port]` is not specified."""
  29. servers.label:
  30. """Servers"""
  31. single.desc:
  32. """Single mode. Must be set to 'single' when Redis server is running in single mode."""
  33. single.label:
  34. """Single Mode"""
  35. redis_cluster_connector.label:
  36. """Redis Cluster Connector"""
  37. redis_cluster_connector.desc:
  38. """Redis connector in cluster mode"""
  39. redis_sentinel_connector.label:
  40. """Redis Sentinel Connector"""
  41. redis_sentinel_connector.desc:
  42. """Redis connector in sentinel mode"""
  43. redis_single_connector.label:
  44. """Redis Single Connector"""
  45. redis_single_connector.desc:
  46. """Redis connector in sentinel mode"""
  47. }