Advertisement
Guest User

Untitled

a guest
Jan 20th, 2016
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.78 KB | None | 0 0
  1. # Kibana is served by a back end server. This controls which port to use.
  2. server.port: 5601
  3. # The host to bind the server to.
  4. server.host: "IP"
  5. # A value to use as a XSRF token. This token is sent back to the server on each request
  6. # and required if you want to execute requests from other clients (like curl).
  7. # server.xsrf.token: ""
  8. # If you are running kibana behind a proxy, and want to mount it at a path,
  9. # specify that path here. The basePath can't end in a slash.
  10. # server.basePath: ""
  11. # The Elasticsearch instance to use for all your queries.
  12. elasticsearch.url: "http://IP:9200/"
  13. # preserve_elasticsearch_host true will send the hostname specified in `elasticsearch`. If you set it to false,
  14. # then the host you use to connect to *this* Kibana instance will be sent.
  15. elasticsearch.preserveHost: true
  16. # Kibana uses an index in Elasticsearch to store saved searches, visualizations
  17. # and dashboards. It will create a new index if it doesn't already exist.
  18. kibana.index: ".kibana"
  19. # The default application to load.
  20. kibana.defaultAppId: "discover"
  21. # If your Elasticsearch is protected with basic auth, these are the user credentials
  22. # used by the Kibana server to perform maintenance on the kibana_index at startup. Your Kibana
  23. # users will still need to authenticate with Elasticsearch (which is proxied through
  24. # the Kibana server)
  25. # elasticsearch.username: "user"
  26. # elasticsearch.password: "pass"
  27. # SSL for outgoing requests from the Kibana Server to the browser (PEM formatted)
  28. # server.ssl.cert: /path/to/your/server.crt
  29. # server.ssl.key: /path/to/your/server.key
  30. # Optional setting to validate that your Elasticsearch backend uses the same key files (PEM formatted)
  31. # elasticsearch.ssl.cert: /path/to/your/client.crt
  32. # elasticsearch.ssl.key: /path/to/your/client.key
  33. # If you need to provide a CA certificate for your Elasticsearch instance, put
  34. # the path of the pem file here.
  35. # elasticsearch.ssl.ca: /path/to/your/CA.pem
  36. # Set to false to have a complete disregard for the validity of the SSL
  37. # certificate.
  38. elasticsearch.ssl.verify: true
  39. # Time in milliseconds to wait for elasticsearch to respond to pings, defaults to
  40. # request_timeout setting
  41. # elasticsearch.pingTimeout: 1500
  42. # Time in milliseconds to wait for responses from the back end or elasticsearch.
  43. # This must be > 0
  44. # elasticsearch.requestTimeout: 300000
  45. # Time in milliseconds for Elasticsearch to wait for responses from shards.
  46. # Set to 0 to disable.
  47. # elasticsearch.shardTimeout: 0
  48. # Time in milliseconds to wait for Elasticsearch at Kibana startup before retrying
  49. # elasticsearch.startupTimeout: 5000
  50. # Set the path to where you would like the process id file to be created.
  51. pid.file: /var/run/kibana.pid
  52. # If you would like to send the log output to a file you can set the path below.
  53. logging.dest: /var/log/kibana/kibana.log
  54. # Set this to true to suppress all logging output.
  55. # logging.silent: false
  56. # Set this to true to suppress all logging output except for error messages.
  57. # logging.quiet: true
  58. # Set this to true to log all events, including system usage information and all requests.
  59. # logging.verbose: true
  60.  
  61. **HTTP/1.1 200 OK
  62. x-app-name: kibana
  63. x-app-version: 4.3.0
  64. cache-control: no-cache
  65. content-type: text/html
  66. content-length: 217
  67. accept-ranges: bytes
  68. Date: Wed, 20 Jan 2016 15:28:35 GMT
  69. Connection: keep-alive
  70. <script>var hashRoute = '/app/kibana';
  71. var defaultRoute = '/app/kibana';
  72. var hash = window.location.hash;
  73. if (hash.length) {
  74. window.location = hashRoute + hash;
  75. } else {
  76. window.location = defaultRoute;
  77. </script>
  78.  
  79. {
  80. "name" : "node-1",
  81. "cluster_name" : "elasticsearch",
  82. "version" : {
  83. "number" : "2.1.0",
  84. "build_hash" : "72cd1f1a3eee09505e036106146dc1949dc5dc87",
  85. "build_timestamp" : "2015-11-18T22:40:03Z",
  86. "build_snapshot" : false,
  87. "lucene_version" : "5.3.1"
  88. },
  89. "tagline" : "You Know, for Search"
  90. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement