Advertisement
Guest User

kibana.yml

a guest
Dec 9th, 2020
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 4.44 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: "172.16.128.208"
  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://172.16.128.208:9200"]
  29.  
  30. # Kibana uses an index in Elasticsearch to store saved searches, visualizations and
  31. # dashboards. Kibana creates a new index if the index doesn't already exist.
  32. #kibana.index: ".kibana"
  33.  
  34. # The default application to load.
  35. #kibana.defaultAppId: "home"
  36.  If your Elasticsearch is protected with basic authentication, these settings provide
  37. # the username and password that the Kibana server uses to perform maintenance on the Kibana
  38. # index at startup. Your Kibana users still need to authenticate with Elasticsearch, which
  39. # is proxied through the Kibana server.
  40. elasticsearch.username: "kibana_system"
  41. elasticsearch.password: "pass"
  42.  
  43. # Enables SSL and paths to the PEM-format SSL certificate and SSL key files, respectively.
  44. # These settings enable SSL for outgoing requests from the Kibana server to the browser.
  45. #server.ssl.enabled: false
  46. #server.ssl.certificate: /path/to/your/server.crt
  47. #server.ssl.key: /path/to/your/server.key
  48.  
  49. # Optional settings that provide the paths to the PEM-format SSL certificate and key files.
  50. # These files are used to verify the identity of Kibana to Elasticsearch and are required when
  51. # xpack.security.http.ssl.client_authentication in Elasticsearch is set to required.
  52. #elasticsearch.ssl.certificate: /path/to/your/client.crt
  53. #elasticsearch.ssl.key: /path/to/your/client.key
  54.  
  55. # Optional setting that enables you to specify a path to the PEM file for the certificate
  56. # authority for your Elasticsearch instance.
  57. #elasticsearch.ssl.certificateAuthorities: [ "/path/to/your/CA.pem" ]
  58.  
  59. # To disregard the validity of SSL certificates, change this setting's value to 'none'.
  60. #elasticsearch.ssl.verificationMode: full
  61.  
  62. # Time in milliseconds to wait for Elasticsearch to respond to pings. Defaults to the value of
  63. # the elasticsearch.requestTimeout setting.
  64. #elasticsearch.pingTimeout: 1500
  65.  
  66. # Time in milliseconds to wait for responses from the back end or Elasticsearch. This value
  67. # must be a positive integer.
  68. #elasticsearch.requestTimeout: 30000
  69. # Logs queries sent to Elasticsearch. Requires logging.verbose set to true.
  70. #elasticsearch.logQueries: false
  71.  
  72. # Specifies the path where Kibana creates the process ID file.
  73. #pid.file: /var/run/kibana.pid
  74.  
  75. # Enables you to specify a file where Kibana stores log output.
  76. #logging.dest: stdout
  77.  
  78. # Set the value of this setting to true to suppress all logging output.
  79. #logging.silent: false
  80.  
  81. # Set the value of this setting to true to suppress all logging output other than error messages.
  82. #logging.quiet: false
  83.  
  84. # Set the value of this setting to true to log all events, including system usage information
  85. # and all requests.
  86. #logging.verbose: false
  87.  
  88. # Set the interval in milliseconds to sample system and process performance
  89. # metrics. Minimum is 100ms. Defaults to 5000.
  90. #ops.interval: 5000
  91.  
  92. # Specifies locale to be used for all localizable strings, dates and number formats.
  93. # Supported languages are the following: English - en , by default , Chinese - zh-CN .
  94. #i18n.locale: "en"
  95.  
  96. #Extra Settings added below
  97. xpack.encryptedSavedObjects.encryptionKey: 'somereallylongrandomstringfishjskloppd678e'
  98.  
  99.  
  100.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement