Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2016
466
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.05 KB | None | 0 0
  1. # Kibana is served by a back end server. This controls which port to use.
  2. # server.port: 5601
  3.  
  4. # The host to bind the server to.
  5. # server.host: "191.168.32.200"
  6.  
  7. # If you are running kibana behind a proxy, and want to mount it at a path,
  8. # specify that path here. The basePath can't end in a slash.
  9. # server.basePath: ""
  10.  
  11. # The maximum payload size in bytes on incoming server requests.
  12. # server.maxPayloadBytes: 1048576
  13.  
  14. # The Elasticsearch instance to use for all your queries.
  15. # elasticsearch.url: "http://127.0.0.1:9200"
  16.  
  17. # preserve_elasticsearch_host true will send the hostname specified in `elasticsearch`. If you set it to false,
  18. # then the host you use to connect to *this* Kibana instance will be sent.
  19. # elasticsearch.preserveHost: true
  20.  
  21. # Kibana uses an index in Elasticsearch to store saved searches, visualizations
  22. # and dashboards. It will create a new index if it doesn't already exist.
  23. # kibana.index: ".kibana"
  24.  
  25. # The default application to load.
  26. # kibana.defaultAppId: "discover"
  27.  
  28. # If your Elasticsearch is protected with basic auth, these are the user credentials
  29. # used by the Kibana server to perform maintenance on the kibana_index at startup. Your Kibana
  30. # users will still need to authenticate with Elasticsearch (which is proxied through
  31. # the Kibana server)
  32. # elasticsearch.username: "user"
  33. # elasticsearch.password: "pass"
  34.  
  35. # SSL for outgoing requests from the Kibana Server to the browser (PEM formatted)
  36. # server.ssl.cert: /path/to/your/server.crt
  37. # server.ssl.key: /path/to/your/server.key
  38.  
  39. # Optional setting to validate that your Elasticsearch backend uses the same key files (PEM formatted)
  40. # elasticsearch.ssl.cert: /path/to/your/client.crt
  41. # elasticsearch.ssl.key: /path/to/your/client.key
  42.  
  43. # If you need to provide a CA certificate for your Elasticsearch instance, put
  44. # the path of the pem file here.
  45. # elasticsearch.ssl.ca: /path/to/your/CA.pem
  46.  
  47. # Set to false to have a complete disregard for the validity of the SSL
  48. # certificate.
  49. # elasticsearch.ssl.verify: false
  50.  
  51. # Time in milliseconds to wait for elasticsearch to respond to pings, defaults to
  52. # request_timeout setting
  53. # elasticsearch.pingTimeout: 1500
  54.  
  55. # Time in milliseconds to wait for responses from the back end or elasticsearch.
  56. # This must be > 0
  57. # elasticsearch.requestTimeout: 30000
  58.  
  59. # Time in milliseconds for Elasticsearch to wait for responses from shards.
  60. # Set to 0 to disable.
  61. # elasticsearch.shardTimeout: 0
  62.  
  63. # Time in milliseconds to wait for Elasticsearch at Kibana startup before retrying
  64. # elasticsearch.startupTimeout: 5000
  65.  
  66. # Set the path to where you would like the process id file to be created.
  67. # pid.file: /var/run/kibana.pid
  68.  
  69. # If you would like to send the log output to a file you can set the path below.
  70. # logging.dest: stdout
  71.  
  72. # Set this to true to suppress all logging output.
  73. # logging.silent: false
  74.  
  75. # Set this to true to suppress all logging output except for error messages.
  76. # logging.quiet: false
  77.  
  78. # Set this to true to log all events, including system usage information and all requests.
  79. # logging.verbose: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement