opensearch_dashboards.yml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. ---
  2. # Copyright OpenSearch Contributors
  3. # SPDX-License-Identifier: Apache-2.0
  4. # Description:
  5. # Default configuration for OpenSearch Dashboards
  6. # See:
  7. #
  8. # ~/src/github.com/opensearch-project/OpenSearch-Dashboards/config/opensearch_dashboards.yml
  9. server.host: '0'
  10. opensearch.hosts: [https://localhost:9200]
  11. opensearch.ssl.verificationMode: none
  12. opensearch.username: kibanaserver
  13. opensearch.password: kibanaserver
  14. opensearch.requestHeadersWhitelist: [authorization, securitytenant]
  15. # Set the value of this setting to false to suppress search usage telemetry
  16. # for reducing the load of OpenSearch cluster.
  17. # data.search.usageTelemetry.enabled: false
  18. # The maximum payload size in bytes for incoming server requests.
  19. server.maxPayloadBytes: 10485760
  20. # Time in milliseconds to wait for OpenSearch to respond to pings. Defaults to the value of
  21. # the opensearch.requestTimeout setting.
  22. opensearch.pingTimeout: 15000
  23. # Time in milliseconds to wait for responses from the back end or OpenSearch. This value
  24. # must be a positive integer.
  25. opensearch.requestTimeout: 600000
  26. # Time in milliseconds for OpenSearch to wait for responses from shards. Set to 0 to disable.
  27. opensearch.shardTimeout: 0
  28. server.keepaliveTimeout: 600000
  29. server.socketTimeout: 600000
  30. # Logs queries sent to OpenSearch. Requires logging.verbose set to true.
  31. opensearch.logQueries: true
  32. # Set the value of this setting to true to log all events, including system usage information
  33. # and all requests.
  34. logging.verbose: true
  35. opensearch_security.multitenancy.enabled: true
  36. opensearch_security.multitenancy.tenants.preferred: [Private, Global]
  37. opensearch_security.readonly_mode.roles: [kibana_read_only]
  38. # Use this setting if you are running opensearch-dashboards without https
  39. opensearch_security.cookie.secure: false