richardphilipsroy

Kibana Default Configuration

Jun 7th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 5.05 KB | None | 0 0
  1. # Kibana is served by a back end server. This setting specifies the port to use.
  2. server.port: 5601
  3.  
  4. # Specifies the address to which the Kibana server will bind. IP addresses and host names are both valid values.
  5. # The default is 'localhost', which usually means remote machines will not be able to connect.
  6. # To allow connections from remote users, set this parameter to a non-loopback address.
  7. server.host: "0.0.0.0"
  8.  
  9. # Enables you to specify a path to mount Kibana at if you are running behind a proxy.
  10. # Use the `server.rewriteBasePath` setting to tell Kibana if it should remove the basePath
  11. # from requests it receives, and to prevent a deprecation warning at startup.
  12. # This setting cannot end in a slash.
  13. #server.basePath: ""
  14.  
  15. # Specifies whether Kibana should rewrite requests that are prefixed with
  16. # `server.basePath` or require that they are rewritten by your reverse proxy.
  17. # This setting was effectively always `false` before Kibana 6.3 and will
  18. # default to `true` starting in Kibana 7.0.
  19. #server.rewriteBasePath: false
  20.  
  21. # The maximum payload size in bytes for incoming server requests.
  22. #server.maxPayloadBytes: 1048576
  23.  
  24. # The Kibana server's name.  This is used for display purposes.
  25. #server.name: "your-hostname"
  26.  
  27. # The URLs of the Elasticsearch instances to use for all your queries.
  28. #elasticsearch.hosts: ["http://localhost:9200"]
  29.  
  30. # When this setting's value is true Kibana uses the hostname specified in the server.host
  31. # setting. When the value of this setting is false, Kibana uses the hostname of the host
  32. # that connects to this Kibana instance.
  33. #elasticsearch.preserveHost: true
  34.  
  35. # Kibana uses an index in Elasticsearch to store saved searches, visualizations and
  36. # dashboards. Kibana creates a new index if the index doesn't already exist.
  37. #kibana.index: ".kibana"
  38.  
  39. # The default application to load.
  40. #kibana.defaultAppId: "home"
  41.  
  42. # If your Elasticsearch is protected with basic authentication, these settings provide
  43. # the username and password that the Kibana server uses to perform maintenance on the Kibana
  44. # index at startup. Your Kibana users still need to authenticate with Elasticsearch, which
  45. # is proxied through the Kibana server.
  46. #elasticsearch.username: "user"
  47. #elasticsearch.password: "pass"
  48.  
  49. # Enables SSL and paths to the PEM-format SSL certificate and SSL key files, respectively.
  50. # These settings enable SSL for outgoing requests from the Kibana server to the browser.
  51. #server.ssl.enabled: false
  52. #server.ssl.certificate: /path/to/your/server.crt
  53. #server.ssl.key: /path/to/your/server.key
  54.  
  55. # Optional settings that provide the paths to the PEM-format SSL certificate and key files.
  56. # These files validate that your Elasticsearch backend uses the same key files.
  57. #elasticsearch.ssl.certificate: /path/to/your/client.crt
  58. #elasticsearch.ssl.key: /path/to/your/client.key
  59.  
  60. # Optional setting that enables you to specify a path to the PEM file for the certificate
  61. # authority for your Elasticsearch instance.
  62. #elasticsearch.ssl.certificateAuthorities: [ "/path/to/your/CA.pem" ]
  63.  
  64. # To disregard the validity of SSL certificates, change this setting's value to 'none'.
  65. #elasticsearch.ssl.verificationMode: full
  66.  
  67. # Time in milliseconds to wait for Elasticsearch to respond to pings. Defaults to the value of
  68. # the elasticsearch.requestTimeout setting.
  69. #elasticsearch.pingTimeout: 1500
  70.  
  71. # Time in milliseconds to wait for responses from the back end or Elasticsearch. This value
  72. # must be a positive integer.
  73. #elasticsearch.requestTimeout: 30000
  74.  
  75. # List of Kibana client-side headers to send to Elasticsearch. To send *no* client-side
  76. # headers, set this value to [] (an empty list).
  77. #elasticsearch.requestHeadersWhitelist: [ authorization ]
  78.  
  79. # Header names and values that are sent to Elasticsearch. Any custom headers cannot be overwritten
  80. # by client-side headers, regardless of the elasticsearch.requestHeadersWhitelist configuration.
  81. #elasticsearch.customHeaders: {}
  82.  
  83. # Time in milliseconds for Elasticsearch to wait for responses from shards. Set to 0 to disable.
  84. #elasticsearch.shardTimeout: 30000
  85.  
  86. # Time in milliseconds to wait for Elasticsearch at Kibana startup before retrying.
  87. #elasticsearch.startupTimeout: 5000
  88.  
  89. # Logs queries sent to Elasticsearch. Requires logging.verbose set to true.
  90. #elasticsearch.logQueries: false
  91.  
  92. # Specifies the path where Kibana creates the process ID file.
  93. #pid.file: /var/run/kibana.pid
  94.  
  95. # Enables you specify a file where Kibana stores log output.
  96. #logging.dest: stdout
  97.  
  98. # Set the value of this setting to true to suppress all logging output.
  99. #logging.silent: false
  100.  
  101. # Set the value of this setting to true to suppress all logging output other than error messages.
  102. #logging.quiet: false
  103.  
  104. # Set the value of this setting to true to log all events, including system usage information
  105. # and all requests.
  106. #logging.verbose: false
  107.  
  108. # Set the interval in milliseconds to sample system and process performance
  109. # metrics. Minimum is 100ms. Defaults to 5000.
  110. #ops.interval: 5000
  111.  
  112. # Specifies locale to be used for all localizable strings, dates and number formats.
  113. #i18n.locale: "en"
Add Comment
Please, Sign In to add comment