Advertisement
niudaye123

Untitled

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