Raushancs

Untitled

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