Advertisement
Guest User

kibana.yml

a guest
Jun 23rd, 2016
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 3.43 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. # This setting specifies the IP address of the back end server.
  5.  server.host: "192.168.71.49"
  6.  
  7. # Enables you to specify a path to mount Kibana at if you are running behind a proxy. This setting
  8. # cannot end in a slash.
  9. # server.basePath: ""
  10.  
  11. # The maximum payload size in bytes for incoming server requests.
  12. # server.maxPayloadBytes: 1048576
  13.  
  14. # The URL of the Elasticsearch instance to use for all your queries.
  15.  elasticsearch.url: "http://192.168.71.49:9200"
  16.  
  17. # When this setting’s value is true Kibana uses the hostname specified in the server.host
  18. # setting. When the value of this setting is false, Kibana uses the hostname of the host
  19. # that connects to this Kibana instance.
  20.  elasticsearch.preserveHost: true
  21.  
  22. # Kibana uses an index in Elasticsearch to store saved searches, visualizations and
  23. # dashboards. Kibana creates a new index if the index doesn’t already exist.
  24.  kibana.index: ".kibana"
  25.  
  26. # The default application to load.
  27.  kibana.defaultAppId: "discover"
  28.  
  29. # If your Elasticsearch is protected with basic authentication, these settings provide
  30. # the username and password that the Kibana server uses to perform maintenance on the Kibana
  31. # index at startup. Your Kibana users still need to authenticate with Elasticsearch, which
  32. # is proxied through the Kibana server.
  33. # elasticsearch.username: "user"
  34. # elasticsearch.password: "pass"
  35.  
  36. # Paths to the PEM-format SSL certificate and SSL key files, respectively. These
  37. # files enable SSL for outgoing requests from the Kibana server to the browser.
  38. # server.ssl.cert: /path/to/your/server.crt
  39. # server.ssl.key: /path/to/your/server.key
  40.  
  41. # Optional settings that provide the paths to the PEM-format SSL certificate and key files.
  42. # These files validate that your Elasticsearch backend uses the same key files.
  43. # elasticsearch.ssl.cert: /path/to/your/client.crt
  44. # elasticsearch.ssl.key: /path/to/your/client.key
  45.  
  46. # Optional setting that enables you to specify a path to the PEM file for the certificate
  47. # authority for your Elasticsearch instance.
  48. # elasticsearch.ssl.ca: /path/to/your/CA.pem
  49.  
  50. # To disregard the validity of SSL certificates, change this setting’s value to false.
  51. # elasticsearch.ssl.verify: true
  52.  
  53. # Time in milliseconds to wait for Elasticsearch to respond to pings. Defaults to the value of
  54. # the elasticsearch.requestTimeout setting.
  55. # elasticsearch.pingTimeout: 1500
  56.  
  57. # Time in milliseconds to wait for responses from the back end or Elasticsearch. This value
  58. # must be a positive integer.
  59. # elasticsearch.requestTimeout: 300000
  60.  
  61. # Time in milliseconds for Elasticsearch to wait for responses from shards. Set to 0 to disable.
  62. # elasticsearch.shardTimeout: 0
  63.  
  64. # Time in milliseconds to wait for Elasticsearch at Kibana startup before retrying.
  65. # elasticsearch.startupTimeout: 5000
  66.  
  67. # Specifies the path where Kibana creates the process ID file.
  68.  pid.file: /var/run/kibana.pid
  69.  
  70. # Enables you specify a file where Kibana stores log output.
  71.  logging.dest: /opt/kibana/logs/kib.log
  72.  
  73. # Set the value of this setting to true to suppress all logging output.
  74. # logging.silent: false
  75.  
  76. # Set the value of this setting to true to suppress all logging output other than error messages.
  77. # logging.quiet: false
  78.  
  79. # Set the value of this setting to true to log all events, including system usage information
  80. # and all requests.
  81. # logging.verbose: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement