Advertisement
darrynza

kibana.yml

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