From 9ba1c160b2c35746b519a5aad0ab384eef4fa151 Mon Sep 17 00:00:00 2001 From: ruflin <spam@ruflin.com> Date: Mon, 7 May 2018 08:52:35 +0200 Subject: [PATCH] Filebeat Kibana module with log fileset This adds the Kibana module to Filebeat reading the Kibana log. The Kibana log is in JSON format which simplifies reading it but at the same time it provides many fields which are not necessarily know in advance. To solve this issue The data is put under `kibana.log.meta` and the most common known fields are picked into `kibana.log.*` or directly put into the global field like `message`. The fields under `meta` are stored as keyword. This make sure all the meta information around the event is still in the index but prevents potential type conflicts like long vs double. Additional change: * Module tests always overwrite the pipeline. This should make development easier. --- CHANGELOG.asciidoc | 1 + filebeat/_meta/fields.common.yml | 5 + filebeat/docs/fields.asciidoc | 58 ++++++ filebeat/docs/modules/kibana.asciidoc | 40 ++++ filebeat/docs/modules_list.asciidoc | 2 + filebeat/filebeat.reference.yml | 10 + filebeat/include/fields.go | 2 +- filebeat/module/kibana/_meta/config.yml | 8 + filebeat/module/kibana/_meta/docs.asciidoc | 27 +++ filebeat/module/kibana/_meta/fields.yml | 9 + .../kibana/log/_meta/config.reference.yml | 7 + filebeat/module/kibana/log/_meta/config.yml | 7 + filebeat/module/kibana/log/_meta/fields.yml | 16 ++ filebeat/module/kibana/log/config/log.yml | 9 + .../module/kibana/log/ingest/pipeline.json | 63 ++++++ filebeat/module/kibana/log/manifest.yml | 9 + filebeat/module/kibana/log/test/log.624.log | 84 ++++++++ .../kibana/log/test/log.verbose.624.log | 180 ++++++++++++++++++ .../module/kibana/log/test/test.expected.json | 66 +++++++ filebeat/module/kibana/log/test/test.log | 1 + filebeat/module/kibana/module.yml | 1 + filebeat/modules.d/kibana.yml.disabled | 8 + .../system/config/filebeat_modules.yml.j2 | 1 + 23 files changed, 613 insertions(+), 1 deletion(-) create mode 100644 filebeat/docs/modules/kibana.asciidoc create mode 100755 filebeat/module/kibana/_meta/config.yml create mode 100755 filebeat/module/kibana/_meta/docs.asciidoc create mode 100755 filebeat/module/kibana/_meta/fields.yml create mode 100644 filebeat/module/kibana/log/_meta/config.reference.yml create mode 100644 filebeat/module/kibana/log/_meta/config.yml create mode 100644 filebeat/module/kibana/log/_meta/fields.yml create mode 100755 filebeat/module/kibana/log/config/log.yml create mode 100755 filebeat/module/kibana/log/ingest/pipeline.json create mode 100755 filebeat/module/kibana/log/manifest.yml create mode 100644 filebeat/module/kibana/log/test/log.624.log create mode 100644 filebeat/module/kibana/log/test/log.verbose.624.log create mode 100644 filebeat/module/kibana/log/test/test.expected.json create mode 100644 filebeat/module/kibana/log/test/test.log create mode 100755 filebeat/module/kibana/module.yml create mode 100755 filebeat/modules.d/kibana.yml.disabled diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index 9726eba787a..60137f0c1e1 100644 --- a/CHANGELOG.asciidoc +++ b/CHANGELOG.asciidoc @@ -133,6 +133,7 @@ https://github.com/elastic/beats/compare/v6.2.3...master[Check the HEAD diff] - Ship fields.yml as part of the binary {pull}4834[4834] - Added options to dev-tools/cmd/dashboards/export_dashboard.go: -indexPattern to include index-pattern in output, -quiet to be quiet. {pull}7101[7101] - Add Indexer indexing by pod uid. Enable pod uid metadata gathering in add_kubernetes_metadata. Extended Matcher log_path matching to support volume mounts {pull}7072[7072] +- Add Kibana module with log fileset. {pull}7052[7052] *Auditbeat* diff --git a/filebeat/_meta/fields.common.yml b/filebeat/_meta/fields.common.yml index 1a020265503..10f0616b76f 100644 --- a/filebeat/_meta/fields.common.yml +++ b/filebeat/_meta/fields.common.yml @@ -96,3 +96,8 @@ required: false description: > The severity of the event. + + - name: service.name + type: keyword + description: > + Service name. diff --git a/filebeat/docs/fields.asciidoc b/filebeat/docs/fields.asciidoc index aac193642c5..9bfd104d998 100644 --- a/filebeat/docs/fields.asciidoc +++ b/filebeat/docs/fields.asciidoc @@ -21,6 +21,7 @@ grouped in the following categories: * <<exported-fields-icinga>> * <<exported-fields-iis>> * <<exported-fields-kafka>> +* <<exported-fields-kibana>> * <<exported-fields-kubernetes-processor>> * <<exported-fields-log>> * <<exported-fields-logstash>> @@ -1649,6 +1650,53 @@ type: text The full trace in the log line. +-- + +[[exported-fields-kibana]] +== kibana fields + +kibana Module + + + +[float] +== kibana fields + + + + +[float] +== log fields + +Kafka log lines. + + + +*`kibana.log.tags`*:: ++ +-- +type: keyword + +Kibana logging tags. + + +-- + +*`kibana.log.state`*:: ++ +-- +type: keyword + +Current state of Kibana. + + +-- + +*`kibana.log.meta`*:: ++ +-- +type: object + -- [[exported-fields-kubernetes-processor]] @@ -1920,6 +1968,16 @@ required: False The severity of the event. +-- + +*`service.name`*:: ++ +-- +type: keyword + +Service name. + + -- [[exported-fields-logstash]] diff --git a/filebeat/docs/modules/kibana.asciidoc b/filebeat/docs/modules/kibana.asciidoc new file mode 100644 index 00000000000..1509e979109 --- /dev/null +++ b/filebeat/docs/modules/kibana.asciidoc @@ -0,0 +1,40 @@ +//// +This file is generated! See scripts/docs_collector.py +//// + +[[filebeat-module-kibana]] +:modulename: kibana + +== Kibana module + +This is the Kibana module. + +include::../include/what-happens.asciidoc[] + +[float] +=== Compatibility + +The Kibana modules is compatible with Kibana 6.3 and newer. + +include::../include/running-modules.asciidoc[] + + +include::../include/configuring-intro.asciidoc[] + +//set the fileset name used in the included example +:fileset_ex: log + +include::../include/config-option-intro.asciidoc[] + +[float] +==== `{fileset}` log fileset settings + +include::../include/var-paths.asciidoc[] + + +[float] +=== Fields + +For a description of each field in the module, see the +<<exported-fields-kibana,exported fields>> section. + diff --git a/filebeat/docs/modules_list.asciidoc b/filebeat/docs/modules_list.asciidoc index d1aac5c2e2a..3fd7fc1a94d 100644 --- a/filebeat/docs/modules_list.asciidoc +++ b/filebeat/docs/modules_list.asciidoc @@ -8,6 +8,7 @@ This file is generated! See scripts/docs_collector.py * <<filebeat-module-icinga>> * <<filebeat-module-iis>> * <<filebeat-module-kafka>> + * <<filebeat-module-kibana>> * <<filebeat-module-logstash>> * <<filebeat-module-mongodb>> * <<filebeat-module-mysql>> @@ -27,6 +28,7 @@ include::modules/auditd.asciidoc[] include::modules/icinga.asciidoc[] include::modules/iis.asciidoc[] include::modules/kafka.asciidoc[] +include::modules/kibana.asciidoc[] include::modules/logstash.asciidoc[] include::modules/mongodb.asciidoc[] include::modules/mysql.asciidoc[] diff --git a/filebeat/filebeat.reference.yml b/filebeat/filebeat.reference.yml index a30b5b981fb..a4025666496 100644 --- a/filebeat/filebeat.reference.yml +++ b/filebeat/filebeat.reference.yml @@ -161,6 +161,16 @@ filebeat.modules: #var.paths: +#------------------------------- kibana Module ------------------------------- +- module: kibana + # All logs + log: + enabled: true + + # Set custom paths for the log files. If left empty, + # Filebeat will choose the paths depending on your OS. + #var.paths: + #------------------------------ logstash Module ------------------------------ #- module: logstash # logs diff --git a/filebeat/include/fields.go b/filebeat/include/fields.go index a038157926f..5ec90818413 100644 --- a/filebeat/include/fields.go +++ b/filebeat/include/fields.go @@ -15,5 +15,5 @@ func init() { // Asset returns asset data func Asset() string { - return "eJzsfVtz28j157s/xSm9xLNFcyaeZHbLqUrFseyMNr7F0lR2n8gmcAh2BHRjuhuSOZ/+X33DtQECJCQ5CfUkksD5/fp++ly6n72AW9y/gg0S9QxAUZXiK/ir/RSjjATNFeXsFfz5GQDAG84UoUxCxLOMM/MebCmmsQRyR2hKNikCZUDSFPAOmQK1z1Eun4F77NUzI+gFMJKhBV7qf823QUz9d7ND8wLwLagdGoYgkcWUJeaLlCeQoZQkQbmEq9pT5jUqS1ESlSaof48429KkEETDwZamuNDf6x+JgjuSFvpNKCTGRiZV+iPjqi7MvAI7LpVDcs/fcAPV4LHQv5mv1vrjupTDTYn7eS27leYRD1dcyY1IEKgKwTCGzd5A8Rw1DEtA7qXCDDiD+x2NdhXxWt2JgjHKkgAbRTP8jbMRbPyTD8nmDoWknB0m4x703cp0Z9P4CTJNBWNQOyptV142u+7FX3RRpCJZfuGE6r7+CmKifD0I/LWgAuNXoEThv9xykRHVeA6/kizXQ+91kRRSwcuf1A5e/vD7nxbw+5evfvzjqz/+uPzxx5fjatdQgnvbkdENQz1ABEZcxHBPZFW+VqEUSeQwymuxoUoQsTfP2tqKiJ4KTH/PUdiGIiw2H5QgTJJIVe1h66kFbGeHRj3yzb8w8mPNfljZX25xf89FPEy0nKsKiaIaU3qCsmAtBigEFw0CieBFPgzyVr/kZ8DIIur+S+KY6mdJCpRtuR7ZEZFm/jI4cuk7g5sVvUDPxk1m5feek8KvqvZlD62KmpOz7ABEPO5KTzlLpkjXQrqitayO6GabjZJuu4lboqKUF3G1Rr3RHyEX/I7GqIupSEwUCS9bH9yvsBU8s5LKV6Vuq2oKInG8Mg+svEj9ZIRSctG7iulHl+atpRfbHtgYHRi9H2vLW5PhEj5zKanuuGZNkkAEaoELSCJcABcQ04QqkvIICVv2cqNMKsIiXNEDQ+fKPQhXl56SXkQgI9GOsvbQDSEcXplKjPq6Pg7FPbCq9bOyntXLZYYxLbJh9A9WhOli08CdmkNTqvar2pJXMijkCyRSvfh9dGAirQkCsyLSarWj0tKhslrmBrqcmRvLVi2puF9efB3f9dwrmsvfOE9StCOtH11gcnCp/WKeOVQ+N9BjHt2a8eNG+qX/HBBufwOpiNLTb5pipNdsM8ztb3rMyh0XamVXgFewJanUjUZYtOPC470oR/mz5qTsi1zSguD60DePuzUBxZLGp82JvzD6a4GVQKBxaFYv4bLQ8jEJsd4vjDivnToCWpHYFDRVwNkQldpkcCSTNyWmljWElZINprKD1tAlYFifOMDlytSExSk7re7MVZf92X4KCLnSykCto+pVrjP1VH1Tf3+wZzrsaf3y9Db52W0ruq0xU0+3E0SgkxMR7ajCSBVihjI0xMFzXCZL+Pp/flr99IcFEJEtIM+jBWQ0l991qXC5zFOitEp/GpNP1+AFOQ4RMsXlAopNwVSxgHvKYn7fQ6K54zmeg5MTxNiSjKb7kyGsGFdIgfGOqAXEuKGELWArEDcyHiotzTsUGl8NoL+nUukJ7erzCxLHAqVE2QXISHRaIT3Mjoj4ngiswBZQyIKk6R4+vH5T5+Dnkdtig4KhQlnNJn+vfxeArX4v1eCmTlsJhfpcMrwsVi8dnIAapGHSNJTzeIbloVYDOY/t3BaEKk6dmlpIWl5wapU5ieYrVCWxC6Z3YLPWoJbYU4VjF9dxQFYaZCTvIhHGuDL2r9ngaiLDmHMqLDXcqKG7DMHOoLIFca1cN8OkPKmmlvc8MfZF8zCyQ1bf1D+eUtY06tYLJHkhys4fKkPQKjZg1DKQRqevjIGagVFABZJ4CTd6R2HI+HJLu53fSJ4WCiEnageKmy8ri6r+e8dFtWNaf39HxPcpT763FshlypN1a/PDt1uJTY2rZjepCudn1DGlszINO4E5F1o5NEWUigglgbStj037UMc2RBPGBa7Iht/hK/jhyIp3vcLvAQwhXd+2Mbzd3VZnswsogSQb1QVG1JLupVaitWpqCpQltR6e8kQuvBnyd1LFvFC/Ay7M/yjE75r0csFljpHiYlmzIUytHcrywvo32p3TmlybdtZ6F6XS+gZsd7SOBk2IbilWA91vDtYaYt3yEVhwicaw6hvoHU3R2LDtom5bBp5fvv385e2b1zdvL1+BRIS1edkUff1ds2aqX/6zK6VZat2hVqXpfLiQV86Sa/ESlApymqMZGzkREu3EUxniG2PFjSi5AKpAKi6wWt+MB0TQhDKSwrryLqzhucBcoESmvL9L/1iZ+LXkxoT4na2RmrPE1HHH5p6iRLXMeFykI9q2rEn7wmhPiccZ564qUdxro2HkXqY8WW5JZGxq803QTiDgVyVIZWCy5jLKBVX7MBX/62xUvEDfty3OUG1IvEP9xspoW3PNyMatWGTEzsXGp+KBhhvlwWl4oGVnxtdbmGUueCLmW5nafmknvg+83H3M0BNoXAM14lvuLNMnfKvMhusFenDX9ZxySXIS7fBlpWBevLbfXIQ1S/crfPAzUHNP6packJJZIcEUf50H9B5A+23f7pREumI7GnkdZwAL6qqzcxH65cvz+Pnm5vOlwzFazLL2epsWNJasjCtcNSwffV16BE/DNaV6hb76DM4wsQwiFxLFqrVDOhFZdyzjpTVjqZAY27VtQySNgBRqp5e+yMZD+AiLILkM1Y630YeYlZr/397eTCeth4/WAHQzOuyeShPpvNXVQP7ly/sw7E6pfNW1Dc6Ab3A71kJo9FCZcyZx1fI0Q5+3eQqyF97yQNfxNzzer7TOtNzsFcqxDHx0RuilEexYkW1Q6NnRCCgXahR3KCramlxftW1RiNLT1OR7WnN50WFgklgDQBe1FXMwAvJNfQ9esBdGMY7tGDc4ej9HWbKETyzdg1NugdrK0o91RNrX3qZEKhpJJCLaQZ4WCWUuKKsWgMaF+aJ/mjBzWH+B2xP81BK74v5SFdeq33OVtiopYXGgmOGlo14BMd7RqD0q4UA/G1ENEFKKdntJI5I60DbVuuH9X7xbFQNjdQIhI7sd71X1xwFSlD0cKS37GFI5UdHu4VrPiD+GV0AtGEOrXITf7AQPSjii243hy9sz/Bi2R3BpBzYOMVo9+jCYxu6xx8Mkdkd2wNmb1FNKkPeo6KesMX9DfvXZBBZqXUXXVULUDgXGWmXGGDhzpmS3SfDmn7bE0HpkhY9aejryjlmKIs4UZcjUIzZeidnfmSJeMCX2Kyp5SIOdidgbiwJX158CqmydT8rt/qeXR4J8lXPaUWkmVJEevVQVsdUrUqLMh35ONvbrgdvNgrQCf9pMIqr2D8xDQzgWXSdePXgYjjEUvHP2AW9YtAYCK3eSYSDFO5x5r1nafIxsP4Y6kcV1FpGxJcxLozJMVHGyxmLRMRC7euszEbQjq+GEnY4dNkmC8XCF5DRslThuD+xMfnB1GUZTs6KpnXH69YE13AdNvKPb2nkYcsHjIqol+TTqubQ6FjFVcd3oaL7osTlaW6OxxOl9monWN8+Xw2y8EdIDwxQbZHuot9BhwCBpnffNOj5hknlPWfHV4mvRS/iot9FpWqZ0CYSYR0WGTA8srWHABiNSyGZzqx3u7cN7RjIameXjjog9bPZOfJUMNt7CGXERr1rJBCP7zxBoTWFM4xUpOmPlgPx3dkamzMqX1iNF7dafp7EDv7q0lkxv8jX7EePAAcU7Qo0MIzVMleH93FQZ3pdUl7Vau7r0nnTDP0RWkAhhW5iISS+ZV6XUXzl1kgqgMTKll49oR1iCEp6n9La7UG8w4pkejYJz9V1/g8mpZrmD7SVRmg3H/C02L1fdYBXXJVypVkOBoggkpJXrErQabLOvCwsWQeKvBbKOneiUtaQ+ML14ZzTtMUtG0RFLst38R0aJt5o/kZJH1CgI91Tt6s6rEGx3vR6joVx2fHJB2Q8pnCrMTrJbGwEmh5cNVZB+bDqMfsvHe7CYRkShdDEi5idelNFGiiuStnl1dwAmgsQ9RSX8hoK/MJvgPwFxUSR8Cz9AhoRJl8Jrg8CEVEZoT7/7YXrprEwiErNi+inR5bJGJE17PSXTsQTKIlW1QACPAc9lYf2JXMCW0LQQ2DOdPq11Ym0Vn6XWPLRiv+6IHLCan60Uj7XvbTAykRV9ZB7FHFCnYwHPNpx6/fTZcPxmiertFKltlq7MFz2bJftjFZ8R2gWVEmH8LqhvgxPjpjhpi9MXcOEKYuRPsqe0wsmaxI7a3167oEa98JmwxCznzIXZOppup3vQzNIK75mBXCjV+MLU2sUCLhhXNEL9X2161x/viWCUJRcQ8A1cRIIqGpH04qkMMp1ulhHazZWar5dp8edO9t/eyUzoftHNVpuvnzmEc1f7b+tqfi2nsr6QX12PN3leXV2XyRu9mTyU9mf0jTBudjDg0WMtNYUjoittuNas0ZU3VRTYoQjLcxBjA/bXAsV+ZQPGHgbfILiQtIXeYRLWE52XcxH2ah1nDfMEtNhBK9g3HXT7ALHIN5V379BoebKAyacOcJXFZiUVUcXo2Nax4LLYWMED6PeU/fhyfvx/2rx/OIjvho5J21p1LJ5zDEqTY0UZZDRNqcSIs7inC0qq8AFGpxbrjNcsBloemDQwT7iFa34udbOLW8Yah/OVqcFobCGtM+ZCVJ8yNj3i/JbOXEOtZFkLAcZmyQUIjJDeYTy8vLQOdZyJmTlIZYckdpP9MId/07h5Q9vX8jdF3c4m/czPgfdzB94X58D7c+D9OfD+HHh/Drw/B963yZwD779xl/bZaXsOvK/zqAfet+FPjrvvMxpPD7x/aiuYQZ/ZPunAD5onn9Ze7tBnLrsDP1j2p7RjnD0FDdintsgKJJKzVb4TRM5sw3EUtHyw8nudJcVD2CKNIy3PU+8QyDlPA0vDWf0q/87q11n9+k9Tv/wpxWR7Ww8h/Lv+3BN7YH6rcsSC5wc7cXB6/OCJCVKWrD9Ob7Tq1z46cGQN3/SfE5i6g+C7WKH8znJVv/jn6y8fL6azMJBa8LeUMlkGEs23kr0pY5N8RVNzlxllian/vmRWIsPOhOmF/7/kjliBkyiYjKu51lOAG5PARdlAfxuxgAWqBeaZd1q1ZPPNhuoJDvZWGGq0kbQAPljZkBNRJapodv10tkXaHq/zcDEZJ0Wa+uppt2btxGepiNzVJmz/Vc+c7X8ejvuuyYXZZ25H9H2NaLPmTkl79cWbsr2fdw7s8dPVrjEcPfmfqNiXU38rr39hUw8jLuzGx+QXvufJH/5lH++LXXu4ZHAu3JRwbxKRqzOF3aG5qmcdsenrMzXcVW3zQTa8cGd22zuMfKZ8RVDX7gF6KU9WphxBhp3D7kdwvMW9y8BOC7QpD4lmV9s4hc6wkCm/P1F/6oo4D6nzkHr0IdU/nKaz+0LuIS6yvHQ/+RO6uyClk9hYDWY2wjQuaTMAQ9iBUxNO6TG1W/IswCu4Ynmh5ALe0VShkAv4VCj9je5Tb3iMUU9vVpzfrihb2ai6IMfpRrq3XzEqTAcyQXs+TcKbb8bE8HlejLCOc/rBaBmwIVauOXMiSE+M4/QefW0igKrc6Bqlxs3DhwmtgqvTaQvXiz83mTUvQzZhyu5aI0tFr2T6zym7GWcJjzc1Xdd9Mz414oN+4fKvh9MjKiyYkiLRVEhraA99/EvA29XHIMTiQJrOoV7XOUQqtCqXloyrZ90u1Z27hk0Fh87aKJi5KIKkEBGFCRf0N9vLDpF78+nDh9cfLydSZJ2hOkKjwa/qIB3KqCIsTqlUyCaRCokdoz24XfCgAaE2PZWDcy9/TWtD88P++h/vxw9MjWVeaQ7N0cc1eXg45bSmAAEYGLLzO6ibRKb7qR/TWGmVt9Vsp5G9NtG1tuR/XP7v5ctF44AcpyvSeGkO0rHPOQeqLE/yqb/ZQQjcIeUPW6M9zs4DFlmXSThQ0OFNxLeTz3r6/vBAZ9YIk/pyIIR3REktmD0VyWSsCiwPDjSpYP3B+dPBTPC9uwrJb2EGoH0z9J0q1fGqjvHdVgcnzkfEZuXpGWEpMQr2w23KyRE1Zg/+MRpzxUar5wu94Dh1eQFEArEQem0wHsDBOI2UR7cPwpdk5pQpra82Od8TWr/kVxPQ088GK2+yOXetI9UqwFSeVF7B76XJ45hp7m2mOmjpIFAVglUa+cDgMWz0rEgZznk2ZYuRjAgbR6hvGTyFTMHo19oiqcgtsmqOW1+/vYHarV4D5MxP0/HN/DkgdtZTQSPOmLtp7eqy7OQO3Wt8LKHsa03j+6g/T9P4zCtHanweHk7R+AIE4EkuDbJETrksaKX3CME+QIQgE3vca2bfMoPPINRWGpTmfEKqJy0N6s8NdSewRTzLONOzIWVRWsS4gA1KGrvb84LHB0NN/KIBZdvKZrhJSOktwvr/vXjHxT0RMcb6v/USrhGBpNIeyrYu62QdChJ6wKDO7jVLtbPj8mKT0qizYjcZm1Zc28pfwtUWGK9e7OBVtUQE+qAnpzcHtF3HQ9A7orqqQ4hIF9EQ61XYvtk89nM0ZQP2fHnUv10S7PnyqP+YHNbz5VHnHNZzDus5h/Wcw3rOYe2QOSdRnJMozkkU/6ZJFB2L0YMksVYGoye/Q+qtJWD8/s9xmSwtpQX4gzR7jqef786kz6ULD5miW4oCnn++uuzBnfP2JOeQ9LB9mQ7elDqfq/RNZZ49BD+/L9F2OS/XG4O59HZtbw7+ZL/pMQg7Qyx+zblQlVF/7eSsh7OKKjQ4PTrd3rZw2hg1Fs9tuEzuNocMldDrpho7Uuc3pdVXOud6a1+vRuXQxSAkCqw0J5B6xwVQFgnMkCm9ESSKLCAj4taErWrVxQaulgfPkTju+JjAHsKW8TuM6zfncGZKe2HeuVjAhXvmYqFfuJCM5HLHVc9Rvzsu1aoaXvO2RG2y8hO6cSY3zt1zvdzt+an0cbPd1e6j1vfSdF8K6s/eLRj9alylM81FvzT9Yq53mT5U9+mCpCxyUcg5j3ZL+MVfxxTxLC+Udwmt/1Jzo0U8LbK+c/5IiiwmIliY4ujWcRGUAp32W0aNWfUwTd3Eq1GN49bq2m68uyarnGQ5lyoR2IyN+my/nBwgVb13pM+swQaOD2xsEnnsq+36qsH/fTMRUjTD3zg74oo7/6YPPDCwjxOGVVeowhNI1yxZRUSROKNsUjyUj33viC0tkkSRTffMhQoz29sI4MmQQcnjIr/evb55/X7uuK84FJw9FMBS8fnxh+UPk+hc+qhrvgUyNVyhwr1++/7tmxv4X/Duy6cPpg3lnybx+Ic7npsoowM8WUCcm64Fxo1z97/ozz2TtPltOI3Si4Mnz363ZMvpcuRs+VA32/r11LKyPrC+2KK506O0xCa+P315CW8aiuM6I1KhWC9gLVNyh/qfaEfTeA3P9dL85fLd968/vYN7vdVlCZjfvluEtNO1ViUow3Q9Ps50rky1TrFM1qAuzB2KDZemXPa2jLXRjNfuhowerg8yGqsNZRtuhtDUax97asIkhN6I4Z3WPvU6bvvAHSVAgKG65+K2tmkfq1dE2ZTgglEhWFlGWAxo8oz6/JV+yVjOdlD7z6aqWAJUmcBMUNxzcCqw5WUSryIxnOI06/RRTRsDy9UtznjBjEa9xX1zV+YrQO9GhxuHiCTcKkeT8ddPSnvPaZhURNJUU/JrmnVD1Ba1a/PF+K2Hu4DyuC1HiQ6nxOmFKMBQoF6hdnNuOfxt2mpXZRI9emIGkWBMjrXbxdVu+JyVnkPnR8a2M3u57mTUXPBEkCOukPUawtHAs044nzvX8lp7mfSHzBwmNP9aOSo/67QcCmPSqdIHKqOgDRSSoHgthaSOJ2U7+OBon6YbgdJeQBbpZej6+ufGBdrjHIpDieNjjtPZYRu4rVBdvI4izJW1Mb4jNC1NjFfsjqQ0vljWnglg2PuLCbjLfbdF6i4fryS4Z1yDuCAGF9/k02hL/24AwvmiS35teVURiVKY5Qp2RJorhruO28GYyglV2orfdGGS7crNiZR6tbwwNWpjYW9xf9HHquNW950w8MMoqtUpra0Mm2Z96aU3I12vaKmqCZ7nGHfjjWfmp2u20l9dE2u9l+fI7G0zWYYxJQrTvWfVRzpw7upgRMcUwub01ZOqVNKEEVWIbocfxaN8vTTvOmI23voWO/chD0VvDM11IwhNv2LbDWk9ipY9oe72b+5gjnA4R39Ax4SQjsNO+VFu+UmBHeOCBR6OWfDe7bGxFA9Gq+/+7UmBMLOxOxwOMyogZkxIzIT66r2PO0RLFjF/QOXIqkRlrqf3p2vUtd8eTlSYWqEr9q+0/RoN5OOnG+PkK2KOohszOWoabgQUaGkRkXY10GLLre2wLqI6F8uORL+5+f+19aeBSPs2+LX18f5I/ScqhNDTcUwFRoqL/QkkgoHiZTsJzo9UexURCSq3E+A1a0OboLynKtoFPNO1Mzyy0EoyrqpaljBjq9MUegaa5kvi8EbwQceaAz5yuAUn+FEVVGVIbZCyxMZI9HaWzhZ5tEI3BH912asrzQ5oGnEAcRcKFR8hV78HW57GtagMhvemgL0q6A4DR4COAItxS4pUWQEBuGDXNiV/kr7tkR+9c9d1El07hsgD9LVeApURqAb/rI0s9/Khzs+womsm0Ce2Ojo+j253HIP7QJbHUdCdvjeHiXEM8iMaGb1PQQmCW3pbcyrc2G+mBTS5lw4fx1bhwSluhCAePEnCv6dySsp/sMVnSlzvVa3OKd7nFO9zineI3TnFG84p3ucUb3ZO8T6neI+mdU7xPqd4n1O8zyne5xTvc4p3h9Q3mOIdrguzIVuZfjPjdqd2AKZFkEH4reBMIYv7d+bHWYHqo8ZjmGEe3nOR6FaT6NvuHuAQNgyI8p4VJ965yfwWmBqDij0K8NmzZ/8TAAD//8cxDts=" + return "eJzsfV2T27ix9r1/RdfcxPuWrN3Yyb6nnKpUJjN2Vif+ime2cs6VBJEtChkS4ALgzGh//Sl88ZsUKVEz3kS+8lBkPw+ABtBodAMvXsEd7t7CGol6AaCoivEt/NX+FaIMBE0V5ewt/PkFAMAVZ4pQJiHgScKZ+Q42FONQArknNCbrGIEyIHEMeI9MgdqlKOcvwL329oUR9AoYSdACz/V/zdNWTP3vdovmA+AbUFs0DEEiCymLzIOYR5CglCRCOYdF6S3zGZW5KIlKE9S/B5xtaJQJouFgQ2Oc6ef6R6LgnsSZ/hIyiaGRSZX+k3FVFmY+gS2XyiG592+5garwmOnfzKOV/nOVy+GmxN285s1K84j7Ky7nRiQIVJlgGMJ6Z6B4ihqGRSB3UmECnMHDlgbbgnip7kTGGGVRCxtFE/yVswFs/JunZHOPQlLO9pNxL3q1MupsGj9CpqlgCGpLpVXleVV1L/6iiyIVSdILJ1Tr+lsIifL1IPCXjAoM34ISmX+44SIhqvIePpIk1V3vMosyqeD1j2oLr3/4/Y8z+P3rt2/++PaPb+Zv3rweVruGEjxYRUbXDXUHERhwEcIDkUX5aoVSJJL9KJdiTZUgYmfetbUVED0UGH1PUdiGIiw0fyhBmCSBKtrD1lMN2I4OlXrk639h4Pua/WNpf7nD3QMXYT/RfKzKJIqiT+kByoLVGKAQXFQIRIJnaT/IO/2RHwEDi6j1l4Qh1e+SGCjbcN2zAyLN+GVw5NwrgxsVvUDPxg1m+XPPSeGjKj3soFVQc3LmDYCAh03pMWfRGOlaSFO0ltUQXW2zQdKtmrgpKoh5FhZz1JX+E1LB72mIupiKhESR9mnro/sVNoInVlL+qdRtVQxBJAyX5oWlF6nfDFBKLjpnMf3q3Hw192LrHRuDPb33U2l6qzKcwxcuJdWKa+YkCUSgFjiDKMAZcAEhjagiMQ+QsHknN8qkIizAJd3TdRbuRVhce0p6EoGEBFvK6l23DWH/zJRjlOf1YSjuhWVJz/J6Vq/nCYY0S/rRP1oRRsXGgTszh8ZU7ZalKS9nkMlXSKR69ftgz0BaEgRmRqTFbEelpUNlMc31qJwZG/NWzam4X149Dlc994nm8jfOoxhtT+tGFxjtnWq/mnf2lc919JAHd6b/uJ5+7f9uEW5/A6mI0sNvHGOg52zTze1vus/KLRdqaWeAt7AhsdSNRliw5cLjvcp7+YvqoOyLnNOC1vmhaxx3cwKKOQ2PGxN/ZvSXDAuBQMO2UT2HS9qmj1GIZb0w4rx16ghoQ2Kd0VgBZ31USoPBgUyuckwtqw8rJmuMZQOtYktAvz2xh8vC1ITFyZVWK3Ohsj/Zv1qELLQxUFJUPcs1hp5CN/XzvZrpsMfp5fFt8pNbVjRbYyJNtwNEi5ITEWypwkBlYoIyVMTBS5xHc3j8rx+XP/5hBkQkM0jTYAYJTeV3TSpcztOYKG3SH8fk8w14QY5DgExxOYNsnTGVzeCBspA/dJCorngO5+DktGJsSELj3dEQVowrpMBwS9QMQlxTwmawEYhrGfaVlqYNCpVHPegfqFR6QFt8eUXCUKCUKJsACQmOK6SH2RIRPhCBBdgMMpmRON7Bx8urMgc/jtxlaxQMFcpiNPl7+VkLbPF7bgZXbdpCKJTHkv5psfho7wBUIQ2jhqGUhxNMD6UaSHlox7ZWqOzYoamGpOW1Dq0yJcF0hSokNsH0CmzSGtQSO6pw6OQ6DMhKg4SkTSTCGFfG/zUZXElkO+aUBksJN6jYLn2wE5hsrbhWrhthYh4VQ8sHHhn/onkZ2T6vb+xfjymrOnXLBZI8E7nyt5Wh1SvW49QykMamL5yBmoExQAWScA63ekVhyPhyS7ucX0seZwohJWoLipuHhUdV/3vPRbFiWn1/T8T3MY++tx7IecyjVW3xwzcbiVWLq+Q3KQrnR9QhpbMyDTuBKRfaODRFlIoIJYHUvY9V/1DDN0QjxgUuyZrf41v44cCKd1rh1wCGkK5v2xje726rs6oCSiBJBqnAgFrSWmolWq+mpkBZVNLwmEdy5t2Qv5Mq5Jn6HXBh/o9C/K5KLxVcphgoLuYlH8LY2qEszez+Rl05rcu16mctqyiVdm/AqqPdaNCE6IZi0dH94mClIVa1PQILLtE4Vn0DvacxGh+2ndRty8DL63dfvr67urx9d/0WJCKszMem6KvvqjVT/PLvXSnVUmuFWuau8/5CLpwn1+JFKBWkNEXTN1IiJNqBp3DEV/qK61FyBlSBVFxgMb+ZHRBBI8pIDKtid2EFLwWmAiUy5fe79I+Fi19LrgyI39kaKW2WmDpu+NxjlKjmCQ+zeEDb5jVpPxi8U+Jxhm1X5Sjus8EwcidjHs03JDA+tekGaCcQ8FEJUjiYrLuMckHVrp2K/3UyKl6g122L01cbEu9Rf7E01tZUI7LZVswSYsdis6figfob5eQ0PNC8MeLrJcw8FTwS081M9X1pJ74LPF99TKAJNCyBGvG17SyjE75VJsP1Aj14q+qhuKdBZVkyYt/uxn7tPH3OaiUpCbb4urBcLy7tk4t2k9X9Ch/90FZd7Lq5rM16LZBgzEagB/Rbi/Zp17KXBLrFGqZ+GacHC8o2udt79POi5/HT7e2Xa4djzKN56fM6LajMhQlXuKy4VLpacABPwzWmeupffAHn8Zi3ImcSxbK29DoSWWus2f41nTSTGNpJc00kDYBkaqvn1MAGWvjQjVZyCaotr6P3McuXFH97dzuetO6X2rTQzeiwOypNxNNWVwX5568f2mG3SqXLptNxAnyD23BDQkVDZcqZxGVtCxu6trHHIHvhta3tMv6ah7ulNsbm651COZSBD/to+2gAO5YlaxR62DUCcgsAxT2KgrYm11VtGxQi38Kq8j2uubzodmASWc9CE7UWzDAA8qq8uM/YK2Nxh7aPGxy9UKQsmsNnFu/AWc1AbWXp1xoi7WfvYiIVDSQSEWwhjbOIMhftVYps48I86B4mzBjWXeD6AD+2xK64PxfFtXb9VKUtSkpY2FLM9qmjXAEh6sm78XO/ng2oBmiztrY7SQMSO9A61bJH/1+8WRU9fXUEISO7HkhW6GMPKcpOR0rLPoRUSlSwPV3rGfGH8GoxC4bQyifhq63grRIOULshfHl9hB/C9gAu9YjJPkbLJ+8G49g9dX8Yxe5ABZy8ST2lCHmHiX7MHPM35IsvJmJR2yq6riKitigw1CYzhsCZ81G7RYL3K9Ults1HVvigqach75CpKOBMUYZMPWHj5ZjdyhTwjCmxW1LJ2yzYiYhdWRRY3HxuMWXLfGJu1z+dPCLky5TThkkzoop076UqC61dERNl/ujmZIPKTtxuFqQWUVRnElC1OzEPDeFYNHcHy1HJcIij4L3zD3iPpXUQWLmjHAMx3uPEa83cmWRk+z7UCFkuswiML2FaGoVjogjANR6LhufZ1VuXi6Aesg1HrHRst4kiDPsrJKXtXonD1sDOlwiL63Y0NSma2prdxC6wyr5EFe/gtnZbF6ngYRaUsocq9Zx7HbOQqrDsdDQPOnyO1tdoPHF6nWbSAMz7eTcb7oT0wDDGB1nv6jV06HFI2qiAah0fMch8oCx7tPha9Bw+6WV0HOe5YgIh5EGWINMdS1sYsMaAZLLa3GqLO/vyjpGEBmb6uCdiB+udE19kmQ33cAZchMtalsJA/ekDLRmMcbgkWaOv7JH/3o7IlFn50m51Ubv053HowBfX1pPpXb5mPWJ2hkDxhlAjw0htp8rwYWqqDB9yqvNSrS2u/Ra94d9GVpAAYZOZUEwvmRel1I+cOUkF0BCZ0tNHsCUsQgkvY3rXnKjXGPBE90bBufquu8HkWLfc3vaSKM2CY/oWm5arbrCC6xwWqtZQoCgCabPKdQlqDbbelYW1FkHiLxmyhp/omLmk3DG9eOc07XBLBsEBU7Jd/AfGiLeWP5GSB9QYCA9Ubcu7Ym2wzfl6iIVy3djsa5V9SuFUYXKU39oIMMnBrK+C9GvjYfRXPpCEhTQgCqULPjE/8SwPY1JckbjOq7kCMKEp7i0q4VcU/JVZBP8JiAtP4Rv4ARIkTLrcYBtdJqQyQjv07ofxpbMyiYjMjOmHRJckG5A47twpGY8lUGaxKkUYeAx4KTO7n8gFbAiNM4Edw+nzeidW1vCZa8tDG/arhsger/nZS/FU694KIxOy0UXmSdwBZToW8OzDKddPlw/HL5aoXk6R0mJpYR50LJbsj0V8RtsqKJcIw1dBXQucENfZUUucroALVxAjf5Q/pRanViV20Pr2xkVL6onPxDsmKWcuftfRdCvdvW6WWtzQBOTacpgvTK1dzOCCcUUD1P8rDe/6zwciGGXRBbTsDVwEgioakPjiuRwyDTVLCG0mYU2nZVr8Wcn+05XM5ARkzTS46fTMIZxV7T9N1fxcTmV5Il/cDHd5LhY3eVZIZ4oQpd2pggOcmw0MePJYS03hgOhKG641aXTlbREFti/C8hzEWIH9JUOxW9qAsdPgGwQXkjbTK0zCOqLzUi7ad7UO84Z5Alpsrxfsmw66PUEs8m2xu7evtzxbwORzB7jKbL2UiqhscGzrUHCZra3gHvQHyt68nh7/n/ZAAdiL77qOyQdbNjyeU3RKk7xFGSQ0jqnEgLOwQwUlVXiC3qnFOuc1C4HmJzH1jBNu4pqeS9nt4qaxyql/ec4xGl9I7fC6NqrPGZsecH5HJ66hWhauhQDjs+QCBAZI7zHsn15qp0VOxMyc0LJFErrBvp/DbzRu3tD2tfxNUbejSTfzc+D91IH32Tnw/hx4fw68PwfenwPvz4H3dTLnwPtvfEv7vGl7Drwv8ygH3tfhj46773Iajw+8f24vmEGf2D/pwPe6J5/XX+7QJy67A99b9uf0Y5x3Ciqwz+2RFUgkZ8t0K4ic2IfjKGj5YOV3bpZkp/BFmo20NI39hkDKedwyNZzNr/zf2fw6m1//buaXP/6YbO7KIYR/1393xB6Y34ocsdaDiZ04OD5+8MgEKUvWn9M32PSrn0k4sIZvuw8gjN0J802stvzOfFa/+Ofl108X41kYSC34W0qZzAOJppvJrvLYJF/R1FySRllk6r8rmZXI9s2E8YX/b3JPrMBRFEzG1VTzKcCtSeCirEffBkxgLdUC04w7tVqy+WZ99QR7tRX6Gm0gLYCPVjakRBSJKppdN51NFtf76zRcTMZJFse+euqtmY/WdE1Yebi2DzrGa/tjf8R3LhF+syN2cYFaFfqgYeXvts70oGZylUnUtVJVxWVyE+BeZULYPT2ijI1niXSuFeupgRa6cVA7dF28UjqcXCoityWd8o86tMr/3K9XJbkwuWY5oh9KRKv1cEwitS/eGIfRtLNqx85v6cbNwebEkUvF3JionRQxs8msARd2KW0yVj/w6A//sq93RUOe7ngBLtwk82BS24vjr935zqrDMrEHIkzUcIvScpaseeaOl7fXbfmzFwqCunb30It5tDTlGN7d93C8w53L6Y8ztEk0ZqQrLcXbTkWRMX84cnxvijh3qXOXevIu1d2dxrP7Sh4gzJI039D0h8k3QfKwA+OHmtitV7lP0AD0Ybecw3GMxpQudLQAb2HB0kzJGbynsUIhZ/A5U/qJ1qkrHmLQoc2K87slZUsbp9nKcbzb990jBplRIBMG6hNvvENwSFSo58UIa4Q7nIyWAetj5ZozJYJ0RM2O1+gbE1NWZNuXKFUuyd5PaNk6Ox03cb36c5VZ9d5uE/jubuCyVPRMpv85YzfhLOLhumTruifDk20+6g+u/7o/4abAgjFJN1WDtIR26gOFWvZPuxi0sdiT+LVP6xrHkrXNyrlvbPGiqVLNsavf+bTv9JaMmTtNSAwBURhxQX+1WraP3NXnjx8vP12PpMgaXXWARYOPai8dyqgiLIypVMhGkWoTO8R6cH6VXpdUaXjKO+dO/hKXuubH3c0/PgzvmBrLfFLtmoMPAPPwcMz5Xy0EoKfLTh/yUCUyPvLhKd3f1nhbTna+3aWJ17Yl/+P8/89fzypHLjlbkYZzczSTfc9tycv8bKjylw2EluvO/PF9tGP7fI+P3+Wm9hS0fxHx7WRIH78+3KPMGmGULrcEhQ8oqQWz52yZHGiB+VGUJrmwO91jPJhJ53C3dvklTA+0b4auc8oa+/RDogGKozinI2LzPPWIMJcYtOrhJubkgBqzR0kZi7lgo83zmZ5wnLk8AyKBWAg9N5g95d7In5gHdyfhSxJzbpm2V6ucHwgt30etCejhZ41FfII5ya8h1RrAVB5VXsEfpMkMmmjsrSbPaOkgUGWCFRZ5T+cxbPSoSBlOedppjZEMCBtGqGsaPIZMxuhjaZJU5A5ZMcatbt7dQukCuh5y5qfx+Gb87BE76TmzAWfMXQq4uM6V3KF7i49FlD2WLL5P+u9xFp/55ECLz8PDMRZfCwF4lmuoLJFjrp9a6jVCqw4QIchIjbtk9ivT+QxCaaZBaU68pHrQ0qD+JFp3pl/Ak4QzPRpSFsRZiDNYo6Shu+ix9UBqKImfVaBsW9mcSQkxvUNY/c+r91w8EBFiqP+3msMNIpBY2mP+VnmdrNrCzk4YJty8uKt0GmGarWMaNGbsKmPTiitb+XNYbIDx4sMGXlFLRKAPo3N2c4u163gIek9U03RoI9JENMQ6DbZv9mSEc3xuBfZ8HdlvLq36fB3Zv01W9Pk6snNW9Dkr+pwVfc6KPmdFN8ic03LOaTnntJzfaFpOw2N0krTowmH07LeSvbMEzL7/S5xHc0tpBv5o1o4LD6a7hetLvoWHTNENRQEvvyyuO3CnvI/LbUh62K7cGe9KnW6r9Kpwz+6Dn34v0aqcl+udwVx6v7Z3B3+2Tzocws4Ri48pF6pw6q+cnFV/nlqBBsdHp9v7O47ro8bjuWkvk7sfJEEl9LyphvbU6V1p5ZnObb3VL+yjsu+qGRK0zDRHkHrPBVAWCEyQKb0QJIrMICHizoStatPFBq7mRxmSMGzsMYE91i/h9xiW72LizJT2wnxzMYML987FTH9wIRlJ5ZarjsOjt1yqZdG9pm2J0mDlB3SzmVw5ydFpuVvzU+njZpuz3Sdt78XxLhfUnQ+eMfpotkonGot+ru6LOe0yOlTe0wVJWeCikFMebOfws7/gK+BJmim/JbT6S2kbLeBxlnSdHEliZCERrYXJDm4dF0Ep0Fm/edSYNQ/j2A28GtVs3Fpb2/V312TFJlnKpYoEVmOjvtiHowOkiu8O3DOrsIHDAxurRJ76ssSuavD/vpkIKZrgr5wdcGmi/9IHHhjYpwnDKhtU7QNI0y1ZRESRMKFsVDyUj31viM09kkSRdfMUjwIz2dkI4NGQrZKHRX69v7y9/DB13FfYFpzdF8BS8Hnzw/yHUXSufdQ13wAZG65Q4N68+/Du6hb+H7z/+vmjaUP5p1E8/uEOfCfK2ADPFhDnhmuBYeUmh6/6745B2vzWn0bpxcGzZ+dasvlwOXC0PNVdyX4+tazsHlhXbNHU6VFaYhXfn+c9h6uK4bhKiFQoVjNYyZjco/5PsKVxuIKXemr+ev3++8vP7+FBL3VZBOa372Zt1ulKmxKUYbwaHmc6VaZao1gma1AX5h7FmktTLnv/yspYxit350oH15P0xmJBWYebIDT1xseemjAJoRdieK+tTz2PWx24pwQIMFQPXNyVFu1D7YogGRNcMCgEK0kICwFNnlHXfqWfMuaTHf3/k6kqFgFVJjATFPccnAlseZnEq0D0pzhNOnwUw0bPdHWHE15ZpFHvcFddlfkK0KvR/sYhYsqjDUw4qrvQVNqbc9tJBSSONSU/p9ltiNKkdmMeDF96uCtND1ty5OhwTJxeGwXoC9TL1HbKJYe/n11ti0yiJ0/MIBKMy7F0X73a9p/c03GNwcDYdmavax6NmgoeCXLApcTeQjgYeNIB50vjomfrL5P+2KL9hKafKwflZx2XQ2FcOkX6QOEUtIFCEhQvpZCU8aSsBx8cvKfpeqC0V9oFehq6ufmpciX7sA3FvsTxAathXSE14LpBdXEZBJgq62N8T2icuxgX7J7ENLyYl95pwbA3YhNw10VvsthdZ19IcO+4BnFBDC6+yafR5vu7LRBuLzrnV5dXFJEohUmqYEukubS6uXHbG1M5okpr8ZsuTLJeuSmRUs+WF6ZGbSzsHe4uulg1ttW9Erb8MIhqce5vLcOmWl966k1Ic1c0N9UET1MMm/HGE/PTNVvYr66Jtd3LU2T2/qIkwZAShfHOs+oi3XKSb29ExxjC5jzfo6pU0ogRlYmmwg/ikX+eu3cdMRtvfYeNG7b7ojf6xroBhMZf2u66tO5F845Qd/tv6mCO9nCO7oCOESEd+zflB23LjwrsGBYscDpmrTe5D42lOBmtrhvdRwXCTMZufzjMoICYISExI+qr84b3NloyC/kJjSNrEuW5nn4/XaOu/PJwpMFUC12x/3Lfr7FAPn2+NZt8WchRNGMmBw3DlYACLS0g0s4GWmy+tO23RVTjquKB6Le3/1uafyqItGuBX5ofHw60fwJ3YGBIBQaKi90RJFoDxfN2EpwfaPYqIiJUbiXAS96GOkH5QFWwbdmZLp3hkbTNJMOqquYJM746TaGjo2m+JGxfCJ60rzngA7tb6wA/qIKKDKk1UhbZGIlOZWkskQcbdH3wi+tOW2lyQNOIPYjbtlDxAXL1d7DhcViKymD4YArYaYJuseVQ2QFgIW5IFisroAWuVbVNyZ9Ftz3ykyt32SbRtWOInEDXOgkUTqAS/Is6stzJU52fYUWXXKDP7HV0fJ7c7zgE90Sex0HQDd2bwsU4BPkJnYx+T0EJght6V9pUuLVPxgU0uY/2H8dW4MEx2witePAsCf+eyjEp/60tPlHieqdpdU7xPqd4n1O829idU7zhnOJ9TvFm5xTvc4r3YFrnFO9zivc5xfuc4n1O8T6neDdIfYMp3u11YRZkS6M3Ey53SgdgWgTZCr8RnClkYffK/DAvULnXeAzTzdvXXCS40yS6lrt7OLQ7BkR+z4oT77bJ/BKYGoeKPQrwxYsX/xcAAP//INTAog==" } diff --git a/filebeat/module/kibana/_meta/config.yml b/filebeat/module/kibana/_meta/config.yml new file mode 100755 index 00000000000..176a9b263bc --- /dev/null +++ b/filebeat/module/kibana/_meta/config.yml @@ -0,0 +1,8 @@ +- module: kibana + # All logs + log: + enabled: true + + # Set custom paths for the log files. If left empty, + # Filebeat will choose the paths depending on your OS. + #var.paths: diff --git a/filebeat/module/kibana/_meta/docs.asciidoc b/filebeat/module/kibana/_meta/docs.asciidoc new file mode 100755 index 00000000000..fd4a64a45fd --- /dev/null +++ b/filebeat/module/kibana/_meta/docs.asciidoc @@ -0,0 +1,27 @@ +:modulename: kibana + +== Kibana module + +This is the Kibana module. + +include::../include/what-happens.asciidoc[] + +[float] +=== Compatibility + +The Kibana modules is compatible with Kibana 6.3 and newer. + +include::../include/running-modules.asciidoc[] + + +include::../include/configuring-intro.asciidoc[] + +//set the fileset name used in the included example +:fileset_ex: log + +include::../include/config-option-intro.asciidoc[] + +[float] +==== `{fileset}` log fileset settings + +include::../include/var-paths.asciidoc[] diff --git a/filebeat/module/kibana/_meta/fields.yml b/filebeat/module/kibana/_meta/fields.yml new file mode 100755 index 00000000000..772ae8afffe --- /dev/null +++ b/filebeat/module/kibana/_meta/fields.yml @@ -0,0 +1,9 @@ +- key: kibana + title: "kibana" + description: > + kibana Module + fields: + - name: kibana + type: group + description: > + fields: diff --git a/filebeat/module/kibana/log/_meta/config.reference.yml b/filebeat/module/kibana/log/_meta/config.reference.yml new file mode 100644 index 00000000000..1f2068fefc4 --- /dev/null +++ b/filebeat/module/kibana/log/_meta/config.reference.yml @@ -0,0 +1,7 @@ +- module: kibana + log: + enabled: true + + # Set custom paths for the log files. If left empty, + # Filebeat will choose the paths depending on your OS. + #var.paths: diff --git a/filebeat/module/kibana/log/_meta/config.yml b/filebeat/module/kibana/log/_meta/config.yml new file mode 100644 index 00000000000..1f2068fefc4 --- /dev/null +++ b/filebeat/module/kibana/log/_meta/config.yml @@ -0,0 +1,7 @@ +- module: kibana + log: + enabled: true + + # Set custom paths for the log files. If left empty, + # Filebeat will choose the paths depending on your OS. + #var.paths: diff --git a/filebeat/module/kibana/log/_meta/fields.yml b/filebeat/module/kibana/log/_meta/fields.yml new file mode 100644 index 00000000000..f7f87416490 --- /dev/null +++ b/filebeat/module/kibana/log/_meta/fields.yml @@ -0,0 +1,16 @@ +- name: log + type: group + description: > + Kafka log lines. + fields: + - name: tags + type: keyword + description: > + Kibana logging tags. + - name: state + type: keyword + description: > + Current state of Kibana. + - name: meta + type: object + object_type: keyword diff --git a/filebeat/module/kibana/log/config/log.yml b/filebeat/module/kibana/log/config/log.yml new file mode 100755 index 00000000000..2f89dcfea41 --- /dev/null +++ b/filebeat/module/kibana/log/config/log.yml @@ -0,0 +1,9 @@ +type: log +paths: +{{ range $i, $path := .paths }} + - {{$path}} +{{ end }} +exclude_files: [".gz$"] + +json.keys_under_root: false +json.add_error_key: true diff --git a/filebeat/module/kibana/log/ingest/pipeline.json b/filebeat/module/kibana/log/ingest/pipeline.json new file mode 100755 index 00000000000..34892cf4611 --- /dev/null +++ b/filebeat/module/kibana/log/ingest/pipeline.json @@ -0,0 +1,63 @@ +{ + "description": "Pipeline for parsing Kibana log logs", + "on_failure": [ + { + "set": { + "field": "error.message", + "value": "{{ _ingest.on_failure_message }}" + } + } + ], + "processors": [ + { + "rename": { + "field": "json", + "target_field": "kibana.log.meta" + } + }, + { + "rename": { + "field": "kibana.log.meta.@timestamp", + "target_field": "read_timestamp" + } + }, + { + "rename": { + "field": "kibana.log.meta.message", + "target_field": "message" + } + }, + { + "rename": { + "field": "kibana.log.meta.state", + "target_field": "kibana.log.state", + "ignore_missing": true + } + }, + { + "rename": { + "field": "kibana.log.meta.pid", + "target_field": "process.pid" + } + }, + { + "rename": { + "field": "kibana.log.meta.tags", + "target_field": "kibana.log.tags" + } + }, + { + "date": { + "field": "read_timestamp", + "formats" : ["ISO8601"], + "target_field": "@timestamp" + } + }, + { + "append": { + "field": "service.name", + "value": "kibana" + } + } + ] +} diff --git a/filebeat/module/kibana/log/manifest.yml b/filebeat/module/kibana/log/manifest.yml new file mode 100755 index 00000000000..6b4e75470ad --- /dev/null +++ b/filebeat/module/kibana/log/manifest.yml @@ -0,0 +1,9 @@ +module_version: 1.0 + +var: + - name: paths + default: + - /var/log/kibana/kibana.stdout + +ingest_pipeline: ingest/pipeline.json +prospector: config/log.yml diff --git a/filebeat/module/kibana/log/test/log.624.log b/filebeat/module/kibana/log/test/log.624.log new file mode 100644 index 00000000000..c5cbb6ded41 --- /dev/null +++ b/filebeat/module/kibana/log/test/log.624.log @@ -0,0 +1,84 @@ +{"type":"log","@timestamp":"2018-05-09T10:57:32Z","tags":["status","plugin:kibana@6.3.0","info"],"pid":69410,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:57:32Z","tags":["status","plugin:elasticsearch@6.3.0","info"],"pid":69410,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:57:32Z","tags":["status","plugin:xpack_main@6.3.0","info"],"pid":69410,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:57:32Z","tags":["status","plugin:searchprofiler@6.3.0","info"],"pid":69410,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:57:32Z","tags":["status","plugin:ml@6.3.0","info"],"pid":69410,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:57:32Z","tags":["status","plugin:tilemap@6.3.0","info"],"pid":69410,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:57:32Z","tags":["status","plugin:watcher@6.3.0","info"],"pid":69410,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:57:32Z","tags":["status","plugin:license_management@6.3.0","info"],"pid":69410,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:57:32Z","tags":["status","plugin:index_management@6.3.0","info"],"pid":69410,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:57:32Z","tags":["status","plugin:timelion@6.3.0","info"],"pid":69410,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:57:32Z","tags":["status","plugin:graph@6.3.0","info"],"pid":69410,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:57:32Z","tags":["status","plugin:monitoring@6.3.0","info"],"pid":69410,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:57:32Z","tags":["status","plugin:security@6.3.0","info"],"pid":69410,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:57:32Z","tags":["security","warning"],"pid":69410,"message":"Generating a random key for xpack.security.encryptionKey. To prevent sessions from being invalidated on restart, please set xpack.security.encryptionKey in kibana.yml"} +{"type":"log","@timestamp":"2018-05-09T10:57:32Z","tags":["security","warning"],"pid":69410,"message":"Session cookies will be transmitted over insecure connections. This is not recommended."} +{"type":"log","@timestamp":"2018-05-09T10:57:32Z","tags":["status","plugin:grokdebugger@6.3.0","info"],"pid":69410,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:57:32Z","tags":["status","plugin:dashboard_mode@6.3.0","info"],"pid":69410,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:57:32Z","tags":["status","plugin:logstash@6.3.0","info"],"pid":69410,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:57:32Z","tags":["status","plugin:apm@6.3.0","info"],"pid":69410,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:57:32Z","tags":["status","plugin:console@6.3.0","info"],"pid":69410,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:57:32Z","tags":["status","plugin:console_extensions@6.3.0","info"],"pid":69410,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:57:32Z","tags":["status","plugin:metrics@6.3.0","info"],"pid":69410,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:57:34Z","tags":["reporting","warning"],"pid":69410,"message":"Generating a random key for xpack.reporting.encryptionKey. To prevent pending reports from failing on restart, please set xpack.reporting.encryptionKey in kibana.yml"} +{"type":"log","@timestamp":"2018-05-09T10:57:34Z","tags":["status","plugin:reporting@6.3.0","info"],"pid":69410,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:57:34Z","tags":["listening","info"],"pid":69410,"message":"Server running at http://localhost:5601"} +{"type":"log","@timestamp":"2018-05-09T10:57:34Z","tags":["status","plugin:elasticsearch@6.3.0","info"],"pid":69410,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} +{"type":"log","@timestamp":"2018-05-09T10:57:34Z","tags":["license","info","xpack"],"pid":69410,"message":"Imported license information from Elasticsearch for the [data] cluster: mode: basic | status: active | expiry date: Invalid date"} +{"type":"log","@timestamp":"2018-05-09T10:57:34Z","tags":["status","plugin:xpack_main@6.3.0","info"],"pid":69410,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} +{"type":"log","@timestamp":"2018-05-09T10:57:34Z","tags":["status","plugin:searchprofiler@6.3.0","info"],"pid":69410,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} +{"type":"log","@timestamp":"2018-05-09T10:57:34Z","tags":["status","plugin:ml@6.3.0","info"],"pid":69410,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} +{"type":"log","@timestamp":"2018-05-09T10:57:34Z","tags":["status","plugin:tilemap@6.3.0","info"],"pid":69410,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} +{"type":"log","@timestamp":"2018-05-09T10:57:34Z","tags":["status","plugin:watcher@6.3.0","info"],"pid":69410,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} +{"type":"log","@timestamp":"2018-05-09T10:57:34Z","tags":["status","plugin:graph@6.3.0","info"],"pid":69410,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} +{"type":"log","@timestamp":"2018-05-09T10:57:34Z","tags":["status","plugin:security@6.3.0","info"],"pid":69410,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} +{"type":"log","@timestamp":"2018-05-09T10:57:34Z","tags":["status","plugin:grokdebugger@6.3.0","info"],"pid":69410,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} +{"type":"log","@timestamp":"2018-05-09T10:57:34Z","tags":["status","plugin:logstash@6.3.0","info"],"pid":69410,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} +{"type":"log","@timestamp":"2018-05-09T10:57:34Z","tags":["status","plugin:reporting@6.3.0","info"],"pid":69410,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} +{"type":"log","@timestamp":"2018-05-09T10:57:34Z","tags":["info","monitoring-ui","kibana-monitoring"],"pid":69410,"message":"Starting all Kibana monitoring collectors"} +{"type":"log","@timestamp":"2018-05-09T10:57:35Z","tags":["license","info","xpack"],"pid":69410,"message":"Imported license information from Elasticsearch for the [monitoring] cluster: mode: basic | status: active | expiry date: Invalid date"} +{"type":"response","@timestamp":"2018-05-09T10:57:51Z","tags":[],"pid":69410,"method":"get","statusCode":200,"req":{"url":"/","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","upgrade-insecure-requests":"1","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1"},"res":{"statusCode":200,"responseTime":68,"contentLength":9},"message":"GET / 200 68ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:52Z","tags":[],"pid":69410,"method":"get","statusCode":200,"req":{"url":"/app/kibana","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","upgrade-insecure-requests":"1","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8","referer":"http://localhost:5601/","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/"},"res":{"statusCode":200,"responseTime":224,"contentLength":9},"message":"GET /app/kibana 200 224ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:52Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/bundles/app/kibana/bootstrap.js","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"*/*","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"d1d40f3af2904b0fe2832615909d39cc87d63bec-gzip\""},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":43,"contentLength":9},"message":"GET /bundles/app/kibana/bootstrap.js 304 43ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:52Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/bundles/kibana.style.css","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"text/css,*/*;q=0.1","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"63a7e0fe485c0cf6bd57434a91c2f2e485bf2d32-/bundles/-gzip\""},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":30,"contentLength":9},"message":"GET /bundles/kibana.style.css 304 30ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:52Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/ui/favicons/favicon-32x32.png","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"8e183c2e644fb050707d89402e1f7a120a95e4d2\"","if-modified-since":"Thu, 03 May 2018 09:45:28 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":32,"contentLength":9},"message":"GET /ui/favicons/favicon-32x32.png 304 32ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:52Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/bundles/vendors.style.css","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"text/css,*/*;q=0.1","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"d9ef83163859bff075ba5d6e1c4ce799d32ba8bc-/bundles/-gzip\""},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":75,"contentLength":9},"message":"GET /bundles/vendors.style.css 304 75ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:52Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/bundles/commons.style.css","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"text/css,*/*;q=0.1","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"abe65868d7050c7459af42ab0a0f4c19889532b1-/bundles/-gzip\""},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":54,"contentLength":9},"message":"GET /bundles/commons.style.css 304 54ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:52Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/ui/favicons/favicon-16x16.png","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"13b869be5df4bdc56920edc16a28e67a7c08203b\"","if-modified-since":"Thu, 03 May 2018 09:45:28 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":13,"contentLength":9},"message":"GET /ui/favicons/favicon-16x16.png 304 13ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:52Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/bundles/vendors.bundle.js","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"*/*","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"333ee3fdd2264402ad73b95fab3fc725beb24674-/bundles/-gzip\""},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":131,"contentLength":9},"message":"GET /bundles/vendors.bundle.js 304 131ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:53Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/bundles/commons.bundle.js","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"*/*","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"c052cafa0b661261d8ee3d16eff7bb0548fd8b6e-/bundles/-gzip\""},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":25,"contentLength":9},"message":"GET /bundles/commons.bundle.js 304 25ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:53Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/bundles/kibana.bundle.js","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"*/*","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"43e987f5a0e6423dd63e190cfacf091932021817-/bundles/-gzip\""},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":18,"contentLength":9},"message":"GET /bundles/kibana.bundle.js 304 18ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:54Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/ui/fonts/open_sans/open_sans_v15_latin_regular.woff2","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","origin":"http://localhost:5601","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"*/*","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"2c07a9656f1e38da408f20f1cf11581a15cbd7a2\"","if-modified-since":"Thu, 03 May 2018 09:45:28 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":5,"contentLength":9},"message":"GET /ui/fonts/open_sans/open_sans_v15_latin_regular.woff2 304 5ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:54Z","tags":[],"pid":69410,"method":"get","statusCode":200,"req":{"url":"/api/console/api_server?sense_version=%40%40SENSE_VERSION&apis=es_5_0","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","accept":"application/json, text/javascript, */*; q=0.01","x-requested-with":"XMLHttpRequest","kbn-version":"6.3.0","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":200,"responseTime":181,"contentLength":9},"message":"GET /api/console/api_server?sense_version=%40%40SENSE_VERSION&apis=es_5_0 200 181ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:55Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/plugins/kibana/assets/visualize.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"4cc79a4d91bd0380d0c82a6b092f339d185670ef-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:26 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":10,"contentLength":9},"message":"GET /plugins/kibana/assets/visualize.svg 304 10ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:55Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/plugins/kibana/assets/discover.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"c4035451a8e776d0f0cd354a825ec432ad06884e-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:26 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":13,"contentLength":9},"message":"GET /plugins/kibana/assets/discover.svg 304 13ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:55Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/plugins/kibana/assets/dashboard.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"42c2161fa64691414784868afdd722444460763a-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:26 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":19,"contentLength":9},"message":"GET /plugins/kibana/assets/dashboard.svg 304 19ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:55Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/plugins/timelion/icon.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"cb793d5314d680b7d5ce130f0393a70b51989541-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:27 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":27,"contentLength":9},"message":"GET /plugins/timelion/icon.svg 304 27ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:55Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/plugins/apm/icon.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"cdb6515bc1340e806d4f17cbeea6a51eb5f40732-gzip\"","if-modified-since":"Thu, 03 May 2018 09:56:42 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":28,"contentLength":9},"message":"GET /plugins/apm/icon.svg 304 28ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:55Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/plugins/kibana/assets/wrench.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"088a9a98c99e406dca2354af14f688ad84826b97-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:26 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":24,"contentLength":9},"message":"GET /plugins/kibana/assets/wrench.svg 304 24ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:55Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/plugins/monitoring/icons/monitoring.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"a41ecd3d2ac0a1e77a72845479fc416658c609f8-gzip\"","if-modified-since":"Thu, 03 May 2018 09:56:42 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":26,"contentLength":9},"message":"GET /plugins/monitoring/icons/monitoring.svg 304 26ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:55Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/plugins/kibana/assets/settings.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"4f859e27d4917026ff1590805887902b14ce79d5-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:26 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":22,"contentLength":9},"message":"GET /plugins/kibana/assets/settings.svg 304 22ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:55Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/plugins/security/images/person.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"becef0294f6fdb73b9bf3ce52750e7e1b246e88f-gzip\"","if-modified-since":"Thu, 03 May 2018 09:56:42 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":22,"contentLength":9},"message":"GET /plugins/security/images/person.svg 304 22ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:55Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/plugins/security/images/logout.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"668bb08fe12a79ded121708cef3beebc475a2bea-gzip\"","if-modified-since":"Thu, 03 May 2018 09:56:42 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":17,"contentLength":9},"message":"GET /plugins/security/images/logout.svg 304 17ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:55Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/plugins/kibana/assets/play-circle.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"2433ecf38258f7121c835670b6993600e7657717-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:26 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":15,"contentLength":9},"message":"GET /plugins/kibana/assets/play-circle.svg 304 15ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:55Z","tags":[],"pid":69410,"method":"get","statusCode":200,"req":{"url":"/api/saved_objects/_find?type=index-pattern&per_page=10000&page=1","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","accept":"application/json, text/plain, */*","kbn-version":"6.3.0","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":200,"responseTime":129,"contentLength":9},"message":"GET /api/saved_objects/_find?type=index-pattern&per_page=10000&page=1 200 129ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:55Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/bundles/ebdca7741674eca4e1fadeca157f3ae6.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/bundles/commons.style.css","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"eacd5acd1258d9b09e78dbc1958744f30e38bcbd-gzip\"","if-modified-since":"Thu, 03 May 2018 09:54:49 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/bundles/commons.style.css"},"res":{"statusCode":304,"responseTime":5,"contentLength":9},"message":"GET /bundles/ebdca7741674eca4e1fadeca157f3ae6.svg 304 5ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:55Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/ui/favicons/favicon-32x32.png","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"8e183c2e644fb050707d89402e1f7a120a95e4d2\"","if-modified-since":"Thu, 03 May 2018 09:45:28 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":3,"contentLength":9},"message":"GET /ui/favicons/favicon-32x32.png 304 3ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:55Z","tags":[],"pid":69410,"method":"get","statusCode":200,"req":{"url":"/api/xpack/v1/info","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","accept":"application/json, text/plain, */*","kbn-version":"6.3.0","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":200,"responseTime":5,"contentLength":9},"message":"GET /api/xpack/v1/info 200 5ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:55Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/plugins/kibana/assets/app_monitoring.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"457dc00b37f24a612e3e51bf323121ffdb4386dd-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:26 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":15,"contentLength":9},"message":"GET /plugins/kibana/assets/app_monitoring.svg 304 15ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:55Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/plugins/kibana/assets/app_apm.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"6561a902856504eaf56de28322529e13881654af-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:26 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":17,"contentLength":9},"message":"GET /plugins/kibana/assets/app_apm.svg 304 17ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:55Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/plugins/kibana/assets/app_logging.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"1c8bf6856f43e3624697a537b3cec2fe995134b9-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:26 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":20,"contentLength":9},"message":"GET /plugins/kibana/assets/app_logging.svg 304 20ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:55Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/plugins/kibana/assets/app_discover.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"63fbb8a8097faaab028c60c5bfe4fb3564b54617-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:26 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":23,"contentLength":9},"message":"GET /plugins/kibana/assets/app_discover.svg 304 23ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:55Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/plugins/kibana/assets/app_dashboard.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"b4261017978445223123954c34d7f62499a61e72-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:26 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":26,"contentLength":9},"message":"GET /plugins/kibana/assets/app_dashboard.svg 304 26ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:55Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/plugins/kibana/assets/app_security.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"154317cbb2d2fb1a29cc4ea1fce567e006b73451-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:26 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":28,"contentLength":9},"message":"GET /plugins/kibana/assets/app_security.svg 304 28ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:55Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/plugins/graph/assets/app_graph.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"51bf11135e7f37b7a9043190b668e9937c3bfeea-gzip\"","if-modified-since":"Thu, 03 May 2018 09:56:42 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":4,"contentLength":9},"message":"GET /plugins/graph/assets/app_graph.svg 304 4ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:55Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/plugins/ml/assets/app_ml.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"83ce11e8c3f1541a87bd6a4f79db4fb7bb87b93b-gzip\"","if-modified-since":"Thu, 03 May 2018 09:56:42 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":7,"contentLength":9},"message":"GET /plugins/ml/assets/app_ml.svg 304 7ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:55Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/plugins/kibana/assets/app_timelion.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"f9495c0fc17cac4af10c948301bf08c1a45911db-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:26 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":7,"contentLength":9},"message":"GET /plugins/kibana/assets/app_timelion.svg 304 7ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:55Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/plugins/kibana/assets/app_visualize.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"11273d325dd73b3f8b3eee569b56068b690d6d9e-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:26 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":30,"contentLength":9},"message":"GET /plugins/kibana/assets/app_visualize.svg 304 30ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:55Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/ui/fonts/open_sans/open_sans_v15_latin_700.woff2","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","origin":"http://localhost:5601","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"*/*","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"5a6a45d6f98752b11ccb7c4f0f6fd7faf18ad1a7\"","if-modified-since":"Thu, 03 May 2018 09:45:28 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":20,"contentLength":9},"message":"GET /ui/fonts/open_sans/open_sans_v15_latin_700.woff2 304 20ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:55Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/plugins/kibana/assets/app_console.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"25044a6e1d5e83bb615c5971068f0c5152c77ef1-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:26 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":21,"contentLength":9},"message":"GET /plugins/kibana/assets/app_console.svg 304 21ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:55Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/ui/fonts/open_sans/open_sans_v15_latin_600.woff2","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","origin":"http://localhost:5601","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"*/*","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"24234c1c81b3948758c1a0be8e5a65386ca94c52\"","if-modified-since":"Thu, 03 May 2018 09:45:28 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":26,"contentLength":9},"message":"GET /ui/fonts/open_sans/open_sans_v15_latin_600.woff2 304 26ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:55Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/plugins/kibana/assets/app_index_pattern.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"4f29178ca608fa80e8dd4574ba430d2e1c35c696-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:26 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":34,"contentLength":9},"message":"GET /plugins/kibana/assets/app_index_pattern.svg 304 34ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:55Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/plugins/kibana/assets/app_saved_objects.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"55ba19c1c215bd5631cd99fca8f5792acc0a7296-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:26 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":44,"contentLength":9},"message":"GET /plugins/kibana/assets/app_saved_objects.svg 304 44ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:55Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/plugins/watcher/assets/app_watches.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"ae65d07bcf6e13b041a12384c8a3219c2a1e3f1c-gzip\"","if-modified-since":"Thu, 03 May 2018 09:56:42 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":14,"contentLength":9},"message":"GET /plugins/watcher/assets/app_watches.svg 304 14ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:57:56Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/ui/favicons/favicon-16x16.png","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"13b869be5df4bdc56920edc16a28e67a7c08203b\"","if-modified-since":"Thu, 03 May 2018 09:45:28 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":5,"contentLength":9},"message":"GET /ui/favicons/favicon-16x16.png 304 5ms - 9.0B"} diff --git a/filebeat/module/kibana/log/test/log.verbose.624.log b/filebeat/module/kibana/log/test/log.verbose.624.log new file mode 100644 index 00000000000..891f02c03af --- /dev/null +++ b/filebeat/module/kibana/log/test/log.verbose.624.log @@ -0,0 +1,180 @@ +{"type":"log","@timestamp":"2018-05-09T10:58:59Z","tags":["plugin","debug"],"pid":69776,"path":"/Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/node_modules/x-pack","message":"Found plugin at /Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/node_modules/x-pack"} +{"type":"ops","@timestamp":"2018-05-09T10:58:59Z","tags":[],"pid":69776,"os":{"load":[4.75537109375,5.1513671875,4.4111328125],"mem":{"total":17179869184,"free":101990400},"uptime":622892},"proc":{"uptime":22.791,"mem":{"rss":236576768,"heapTotal":209911808,"heapUsed":119288176,"external":50628},"delay":1.456926941871643},"load":{"requests":{},"concurrents":{"5601":0},"responseTimes":{},"sockets":{"http":{"total":0},"https":{"total":0}}},"message":"memory: 113.8MB uptime: 0:00:23 load: [4.76 5.15 4.41] delay: 1.457"} +{"type":"log","@timestamp":"2018-05-09T10:58:59Z","tags":["plugin","debug"],"pid":69776,"path":"/Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/src/core_plugins/console","message":"Found plugin at /Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/src/core_plugins/console"} +{"type":"log","@timestamp":"2018-05-09T10:58:59Z","tags":["plugin","debug"],"pid":69776,"path":"/Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/src/core_plugins/elasticsearch","message":"Found plugin at /Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/src/core_plugins/elasticsearch"} +{"type":"log","@timestamp":"2018-05-09T10:58:59Z","tags":["plugin","debug"],"pid":69776,"path":"/Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/src/core_plugins/input_control_vis","message":"Found plugin at /Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/src/core_plugins/input_control_vis"} +{"type":"log","@timestamp":"2018-05-09T10:58:59Z","tags":["plugin","debug"],"pid":69776,"path":"/Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/src/core_plugins/kbn_doc_views","message":"Found plugin at /Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/src/core_plugins/kbn_doc_views"} +{"type":"log","@timestamp":"2018-05-09T10:58:59Z","tags":["plugin","debug"],"pid":69776,"path":"/Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/src/core_plugins/kbn_vislib_vis_types","message":"Found plugin at /Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/src/core_plugins/kbn_vislib_vis_types"} +{"type":"log","@timestamp":"2018-05-09T10:58:59Z","tags":["plugin","debug"],"pid":69776,"path":"/Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/src/core_plugins/kibana","message":"Found plugin at /Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/src/core_plugins/kibana"} +{"type":"log","@timestamp":"2018-05-09T10:58:59Z","tags":["plugin","debug"],"pid":69776,"path":"/Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/src/core_plugins/markdown_vis","message":"Found plugin at /Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/src/core_plugins/markdown_vis"} +{"type":"log","@timestamp":"2018-05-09T10:58:59Z","tags":["plugin","debug"],"pid":69776,"path":"/Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/src/core_plugins/metric_vis","message":"Found plugin at /Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/src/core_plugins/metric_vis"} +{"type":"log","@timestamp":"2018-05-09T10:58:59Z","tags":["plugin","debug"],"pid":69776,"path":"/Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/src/core_plugins/metrics","message":"Found plugin at /Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/src/core_plugins/metrics"} +{"type":"log","@timestamp":"2018-05-09T10:58:59Z","tags":["plugin","debug"],"pid":69776,"path":"/Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/src/core_plugins/region_map","message":"Found plugin at /Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/src/core_plugins/region_map"} +{"type":"log","@timestamp":"2018-05-09T10:58:59Z","tags":["plugin","debug"],"pid":69776,"path":"/Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/src/core_plugins/spy_modes","message":"Found plugin at /Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/src/core_plugins/spy_modes"} +{"type":"log","@timestamp":"2018-05-09T10:58:59Z","tags":["plugin","debug"],"pid":69776,"path":"/Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/src/core_plugins/state_session_storage_redirect","message":"Found plugin at /Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/src/core_plugins/state_session_storage_redirect"} +{"type":"log","@timestamp":"2018-05-09T10:58:59Z","tags":["plugin","debug"],"pid":69776,"path":"/Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/src/core_plugins/status_page","message":"Found plugin at /Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/src/core_plugins/status_page"} +{"type":"log","@timestamp":"2018-05-09T10:58:59Z","tags":["plugin","debug"],"pid":69776,"path":"/Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/src/core_plugins/table_vis","message":"Found plugin at /Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/src/core_plugins/table_vis"} +{"type":"log","@timestamp":"2018-05-09T10:58:59Z","tags":["plugin","debug"],"pid":69776,"path":"/Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/src/core_plugins/tagcloud","message":"Found plugin at /Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/src/core_plugins/tagcloud"} +{"type":"log","@timestamp":"2018-05-09T10:58:59Z","tags":["plugin","debug"],"pid":69776,"path":"/Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/src/core_plugins/tile_map","message":"Found plugin at /Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/src/core_plugins/tile_map"} +{"type":"log","@timestamp":"2018-05-09T10:58:59Z","tags":["plugin","debug"],"pid":69776,"path":"/Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/src/core_plugins/timelion","message":"Found plugin at /Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/src/core_plugins/timelion"} +{"type":"log","@timestamp":"2018-05-09T10:58:59Z","tags":["plugin","debug"],"pid":69776,"path":"/Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/src/core_plugins/vega","message":"Found plugin at /Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/src/core_plugins/vega"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["debug","optimize"],"pid":69776,"message":"All bundles are cached and ready to go!"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["plugins","debug"],"pid":69776,"plugin":{"name":"kibana","version":"kibana","config":{"@elastic/eslint-import-resolver-kibana":{"projectRoot":false}}},"message":"Initializing plugin kibana@kibana"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["status","plugin:kibana@6.3.0","info"],"pid":69776,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["plugins","debug"],"pid":69776,"plugin":{"name":"elasticsearch","version":"kibana"},"message":"Initializing plugin elasticsearch@kibana"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["status","plugin:elasticsearch@6.3.0","info"],"pid":69776,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["plugins","debug"],"pid":69776,"plugin":{"name":"x-pack","version":"6.3.0","private":true,"author":"Elastic","license":"Elastic-License","kibana":{"build":{"intermediateBuildDirectory":"build/plugin/kibana/x-pack"},"version":"6.3.0"},"dependencies":{"@elastic/eui":"0.0.38","@elastic/node-crypto":"0.1.2","@elastic/node-phantom-simple":"2.2.4","@elastic/numeral":"2.3.2","@kbn/datemath":"file:../packages/kbn-datemath","@kbn/ui-framework":"file:../packages/kbn-ui-framework","angular-paging":"2.2.1","angular-resource":"1.4.9","angular-sanitize":"1.4.9","angular-ui-ace":"0.2.3","angular-ui-bootstrap":"1.2.5","babel-core":"^6.26.0","babel-preset-es2015":"^6.24.1","babel-runtime":"^6.26.0","bluebird":"3.1.1","boom":"3.1.1","brace":"0.10.0","chrome-remote-interface":"0.24.2","classnames":"2.2.5","concat-stream":"1.5.1","d3":"3.5.6","d3-scale":"1.0.6","dedent":"^0.7.0","dragselect":"1.7.17","elasticsearch":"13.0.1","extract-zip":"1.5.0","font-awesome":"4.4.0","get-port":"2.1.0","getos":"^3.1.0","glob":"6.0.4","hapi-auth-cookie":"6.1.1","history":"4.7.2","humps":"2.0.1","icalendar":"0.7.1","isomorphic-fetch":"2.2.1","joi":"6.10.1","jquery":"^3.3.1","jstimezonedetect":"1.0.5","lodash":"3.10.1","lodash.mean":"^4.1.0","lodash.orderby":"4.6.0","mkdirp":"0.5.1","moment":"^2.20.1","moment-duration-format":"^1.3.0","moment-timezone":"^0.5.14","ngreact":"^0.5.1","object-hash":"1.2.0","path-match":"1.2.4","pdfmake":"0.1.33","pivotal-ui":"13.0.1","pluralize":"3.1.0","pngjs":"3.3.1","prop-types":"^15.6.0","puid":"1.0.5","react":"^16.2.0","react-clipboard.js":"^1.1.2","react-dom":"^16.2.0","react-markdown-renderer":"^1.4.0","react-portal":"^3.2.0","react-redux":"^5.0.5","react-router-breadcrumbs-hoc":"1.1.2","react-router-dom":"^4.2.2","react-select":"^1.2.1","react-sticky":"^6.0.1","react-syntax-highlighter":"^5.7.0","react-vis":"^1.8.1","redux":"3.7.2","redux-actions":"2.2.1","redux-thunk":"2.2.0","request":"^2.85.0","reselect":"3.0.1","rimraf":"^2.6.2","rison-node":"0.3.1","rxjs":"5.3.0","semver":"5.1.0","stream-to-observable":"0.2.0","styled-components":"2.3.2","tar-fs":"1.13.0","tinycolor2":"1.3.0","ui-select":"0.19.4","unbzip2-stream":"1.0.9","uuid":"3.0.1","venn.js":"0.2.9","webcola":"3.3.6","xregexp":"3.2.0"},"engines":{"yarn":"^1.6.0"},"build":{"git":{"count":"17130","sha":"88e269d","date":"Wed, 2 May 2018 22:40:22 -0500"},"date":"Thu May 03 2018 09:49:27 GMT+0000 (UTC)"}},"message":"Initializing plugin xpack_main@6.3.0"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["status","plugin:xpack_main@6.3.0","info"],"pid":69776,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["plugins","debug"],"pid":69776,"plugin":{"name":"x-pack","version":"6.3.0","private":true,"author":"Elastic","license":"Elastic-License","kibana":{"build":{"intermediateBuildDirectory":"build/plugin/kibana/x-pack"},"version":"6.3.0"},"dependencies":{"@elastic/eui":"0.0.38","@elastic/node-crypto":"0.1.2","@elastic/node-phantom-simple":"2.2.4","@elastic/numeral":"2.3.2","@kbn/datemath":"file:../packages/kbn-datemath","@kbn/ui-framework":"file:../packages/kbn-ui-framework","angular-paging":"2.2.1","angular-resource":"1.4.9","angular-sanitize":"1.4.9","angular-ui-ace":"0.2.3","angular-ui-bootstrap":"1.2.5","babel-core":"^6.26.0","babel-preset-es2015":"^6.24.1","babel-runtime":"^6.26.0","bluebird":"3.1.1","boom":"3.1.1","brace":"0.10.0","chrome-remote-interface":"0.24.2","classnames":"2.2.5","concat-stream":"1.5.1","d3":"3.5.6","d3-scale":"1.0.6","dedent":"^0.7.0","dragselect":"1.7.17","elasticsearch":"13.0.1","extract-zip":"1.5.0","font-awesome":"4.4.0","get-port":"2.1.0","getos":"^3.1.0","glob":"6.0.4","hapi-auth-cookie":"6.1.1","history":"4.7.2","humps":"2.0.1","icalendar":"0.7.1","isomorphic-fetch":"2.2.1","joi":"6.10.1","jquery":"^3.3.1","jstimezonedetect":"1.0.5","lodash":"3.10.1","lodash.mean":"^4.1.0","lodash.orderby":"4.6.0","mkdirp":"0.5.1","moment":"^2.20.1","moment-duration-format":"^1.3.0","moment-timezone":"^0.5.14","ngreact":"^0.5.1","object-hash":"1.2.0","path-match":"1.2.4","pdfmake":"0.1.33","pivotal-ui":"13.0.1","pluralize":"3.1.0","pngjs":"3.3.1","prop-types":"^15.6.0","puid":"1.0.5","react":"^16.2.0","react-clipboard.js":"^1.1.2","react-dom":"^16.2.0","react-markdown-renderer":"^1.4.0","react-portal":"^3.2.0","react-redux":"^5.0.5","react-router-breadcrumbs-hoc":"1.1.2","react-router-dom":"^4.2.2","react-select":"^1.2.1","react-sticky":"^6.0.1","react-syntax-highlighter":"^5.7.0","react-vis":"^1.8.1","redux":"3.7.2","redux-actions":"2.2.1","redux-thunk":"2.2.0","request":"^2.85.0","reselect":"3.0.1","rimraf":"^2.6.2","rison-node":"0.3.1","rxjs":"5.3.0","semver":"5.1.0","stream-to-observable":"0.2.0","styled-components":"2.3.2","tar-fs":"1.13.0","tinycolor2":"1.3.0","ui-select":"0.19.4","unbzip2-stream":"1.0.9","uuid":"3.0.1","venn.js":"0.2.9","webcola":"3.3.6","xregexp":"3.2.0"},"engines":{"yarn":"^1.6.0"},"build":{"git":{"count":"17130","sha":"88e269d","date":"Wed, 2 May 2018 22:40:22 -0500"},"date":"Thu May 03 2018 09:49:27 GMT+0000 (UTC)"}},"message":"Initializing plugin searchprofiler@6.3.0"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["status","plugin:searchprofiler@6.3.0","info"],"pid":69776,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["plugins","debug"],"pid":69776,"plugin":{"name":"x-pack","version":"6.3.0","private":true,"author":"Elastic","license":"Elastic-License","kibana":{"build":{"intermediateBuildDirectory":"build/plugin/kibana/x-pack"},"version":"6.3.0"},"dependencies":{"@elastic/eui":"0.0.38","@elastic/node-crypto":"0.1.2","@elastic/node-phantom-simple":"2.2.4","@elastic/numeral":"2.3.2","@kbn/datemath":"file:../packages/kbn-datemath","@kbn/ui-framework":"file:../packages/kbn-ui-framework","angular-paging":"2.2.1","angular-resource":"1.4.9","angular-sanitize":"1.4.9","angular-ui-ace":"0.2.3","angular-ui-bootstrap":"1.2.5","babel-core":"^6.26.0","babel-preset-es2015":"^6.24.1","babel-runtime":"^6.26.0","bluebird":"3.1.1","boom":"3.1.1","brace":"0.10.0","chrome-remote-interface":"0.24.2","classnames":"2.2.5","concat-stream":"1.5.1","d3":"3.5.6","d3-scale":"1.0.6","dedent":"^0.7.0","dragselect":"1.7.17","elasticsearch":"13.0.1","extract-zip":"1.5.0","font-awesome":"4.4.0","get-port":"2.1.0","getos":"^3.1.0","glob":"6.0.4","hapi-auth-cookie":"6.1.1","history":"4.7.2","humps":"2.0.1","icalendar":"0.7.1","isomorphic-fetch":"2.2.1","joi":"6.10.1","jquery":"^3.3.1","jstimezonedetect":"1.0.5","lodash":"3.10.1","lodash.mean":"^4.1.0","lodash.orderby":"4.6.0","mkdirp":"0.5.1","moment":"^2.20.1","moment-duration-format":"^1.3.0","moment-timezone":"^0.5.14","ngreact":"^0.5.1","object-hash":"1.2.0","path-match":"1.2.4","pdfmake":"0.1.33","pivotal-ui":"13.0.1","pluralize":"3.1.0","pngjs":"3.3.1","prop-types":"^15.6.0","puid":"1.0.5","react":"^16.2.0","react-clipboard.js":"^1.1.2","react-dom":"^16.2.0","react-markdown-renderer":"^1.4.0","react-portal":"^3.2.0","react-redux":"^5.0.5","react-router-breadcrumbs-hoc":"1.1.2","react-router-dom":"^4.2.2","react-select":"^1.2.1","react-sticky":"^6.0.1","react-syntax-highlighter":"^5.7.0","react-vis":"^1.8.1","redux":"3.7.2","redux-actions":"2.2.1","redux-thunk":"2.2.0","request":"^2.85.0","reselect":"3.0.1","rimraf":"^2.6.2","rison-node":"0.3.1","rxjs":"5.3.0","semver":"5.1.0","stream-to-observable":"0.2.0","styled-components":"2.3.2","tar-fs":"1.13.0","tinycolor2":"1.3.0","ui-select":"0.19.4","unbzip2-stream":"1.0.9","uuid":"3.0.1","venn.js":"0.2.9","webcola":"3.3.6","xregexp":"3.2.0"},"engines":{"yarn":"^1.6.0"},"build":{"git":{"count":"17130","sha":"88e269d","date":"Wed, 2 May 2018 22:40:22 -0500"},"date":"Thu May 03 2018 09:49:27 GMT+0000 (UTC)"}},"message":"Initializing plugin ml@6.3.0"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["status","plugin:ml@6.3.0","info"],"pid":69776,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["plugins","debug"],"pid":69776,"plugin":{"name":"kbn_vislib_vis_types","version":"kibana"},"message":"Initializing plugin kbn_vislib_vis_types@kibana"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["plugins","debug"],"pid":69776,"plugin":{"name":"x-pack","version":"6.3.0","private":true,"author":"Elastic","license":"Elastic-License","kibana":{"build":{"intermediateBuildDirectory":"build/plugin/kibana/x-pack"},"version":"6.3.0"},"dependencies":{"@elastic/eui":"0.0.38","@elastic/node-crypto":"0.1.2","@elastic/node-phantom-simple":"2.2.4","@elastic/numeral":"2.3.2","@kbn/datemath":"file:../packages/kbn-datemath","@kbn/ui-framework":"file:../packages/kbn-ui-framework","angular-paging":"2.2.1","angular-resource":"1.4.9","angular-sanitize":"1.4.9","angular-ui-ace":"0.2.3","angular-ui-bootstrap":"1.2.5","babel-core":"^6.26.0","babel-preset-es2015":"^6.24.1","babel-runtime":"^6.26.0","bluebird":"3.1.1","boom":"3.1.1","brace":"0.10.0","chrome-remote-interface":"0.24.2","classnames":"2.2.5","concat-stream":"1.5.1","d3":"3.5.6","d3-scale":"1.0.6","dedent":"^0.7.0","dragselect":"1.7.17","elasticsearch":"13.0.1","extract-zip":"1.5.0","font-awesome":"4.4.0","get-port":"2.1.0","getos":"^3.1.0","glob":"6.0.4","hapi-auth-cookie":"6.1.1","history":"4.7.2","humps":"2.0.1","icalendar":"0.7.1","isomorphic-fetch":"2.2.1","joi":"6.10.1","jquery":"^3.3.1","jstimezonedetect":"1.0.5","lodash":"3.10.1","lodash.mean":"^4.1.0","lodash.orderby":"4.6.0","mkdirp":"0.5.1","moment":"^2.20.1","moment-duration-format":"^1.3.0","moment-timezone":"^0.5.14","ngreact":"^0.5.1","object-hash":"1.2.0","path-match":"1.2.4","pdfmake":"0.1.33","pivotal-ui":"13.0.1","pluralize":"3.1.0","pngjs":"3.3.1","prop-types":"^15.6.0","puid":"1.0.5","react":"^16.2.0","react-clipboard.js":"^1.1.2","react-dom":"^16.2.0","react-markdown-renderer":"^1.4.0","react-portal":"^3.2.0","react-redux":"^5.0.5","react-router-breadcrumbs-hoc":"1.1.2","react-router-dom":"^4.2.2","react-select":"^1.2.1","react-sticky":"^6.0.1","react-syntax-highlighter":"^5.7.0","react-vis":"^1.8.1","redux":"3.7.2","redux-actions":"2.2.1","redux-thunk":"2.2.0","request":"^2.85.0","reselect":"3.0.1","rimraf":"^2.6.2","rison-node":"0.3.1","rxjs":"5.3.0","semver":"5.1.0","stream-to-observable":"0.2.0","styled-components":"2.3.2","tar-fs":"1.13.0","tinycolor2":"1.3.0","ui-select":"0.19.4","unbzip2-stream":"1.0.9","uuid":"3.0.1","venn.js":"0.2.9","webcola":"3.3.6","xregexp":"3.2.0"},"engines":{"yarn":"^1.6.0"},"build":{"git":{"count":"17130","sha":"88e269d","date":"Wed, 2 May 2018 22:40:22 -0500"},"date":"Thu May 03 2018 09:49:27 GMT+0000 (UTC)"}},"message":"Initializing plugin tilemap@6.3.0"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["status","plugin:tilemap@6.3.0","info"],"pid":69776,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["plugins","debug"],"pid":69776,"plugin":{"name":"x-pack","version":"6.3.0","private":true,"author":"Elastic","license":"Elastic-License","kibana":{"build":{"intermediateBuildDirectory":"build/plugin/kibana/x-pack"},"version":"6.3.0"},"dependencies":{"@elastic/eui":"0.0.38","@elastic/node-crypto":"0.1.2","@elastic/node-phantom-simple":"2.2.4","@elastic/numeral":"2.3.2","@kbn/datemath":"file:../packages/kbn-datemath","@kbn/ui-framework":"file:../packages/kbn-ui-framework","angular-paging":"2.2.1","angular-resource":"1.4.9","angular-sanitize":"1.4.9","angular-ui-ace":"0.2.3","angular-ui-bootstrap":"1.2.5","babel-core":"^6.26.0","babel-preset-es2015":"^6.24.1","babel-runtime":"^6.26.0","bluebird":"3.1.1","boom":"3.1.1","brace":"0.10.0","chrome-remote-interface":"0.24.2","classnames":"2.2.5","concat-stream":"1.5.1","d3":"3.5.6","d3-scale":"1.0.6","dedent":"^0.7.0","dragselect":"1.7.17","elasticsearch":"13.0.1","extract-zip":"1.5.0","font-awesome":"4.4.0","get-port":"2.1.0","getos":"^3.1.0","glob":"6.0.4","hapi-auth-cookie":"6.1.1","history":"4.7.2","humps":"2.0.1","icalendar":"0.7.1","isomorphic-fetch":"2.2.1","joi":"6.10.1","jquery":"^3.3.1","jstimezonedetect":"1.0.5","lodash":"3.10.1","lodash.mean":"^4.1.0","lodash.orderby":"4.6.0","mkdirp":"0.5.1","moment":"^2.20.1","moment-duration-format":"^1.3.0","moment-timezone":"^0.5.14","ngreact":"^0.5.1","object-hash":"1.2.0","path-match":"1.2.4","pdfmake":"0.1.33","pivotal-ui":"13.0.1","pluralize":"3.1.0","pngjs":"3.3.1","prop-types":"^15.6.0","puid":"1.0.5","react":"^16.2.0","react-clipboard.js":"^1.1.2","react-dom":"^16.2.0","react-markdown-renderer":"^1.4.0","react-portal":"^3.2.0","react-redux":"^5.0.5","react-router-breadcrumbs-hoc":"1.1.2","react-router-dom":"^4.2.2","react-select":"^1.2.1","react-sticky":"^6.0.1","react-syntax-highlighter":"^5.7.0","react-vis":"^1.8.1","redux":"3.7.2","redux-actions":"2.2.1","redux-thunk":"2.2.0","request":"^2.85.0","reselect":"3.0.1","rimraf":"^2.6.2","rison-node":"0.3.1","rxjs":"5.3.0","semver":"5.1.0","stream-to-observable":"0.2.0","styled-components":"2.3.2","tar-fs":"1.13.0","tinycolor2":"1.3.0","ui-select":"0.19.4","unbzip2-stream":"1.0.9","uuid":"3.0.1","venn.js":"0.2.9","webcola":"3.3.6","xregexp":"3.2.0"},"engines":{"yarn":"^1.6.0"},"build":{"git":{"count":"17130","sha":"88e269d","date":"Wed, 2 May 2018 22:40:22 -0500"},"date":"Thu May 03 2018 09:49:27 GMT+0000 (UTC)"}},"message":"Initializing plugin watcher@6.3.0"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["status","plugin:watcher@6.3.0","info"],"pid":69776,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["plugins","debug"],"pid":69776,"plugin":{"name":"x-pack","version":"6.3.0","private":true,"author":"Elastic","license":"Elastic-License","kibana":{"build":{"intermediateBuildDirectory":"build/plugin/kibana/x-pack"},"version":"6.3.0"},"dependencies":{"@elastic/eui":"0.0.38","@elastic/node-crypto":"0.1.2","@elastic/node-phantom-simple":"2.2.4","@elastic/numeral":"2.3.2","@kbn/datemath":"file:../packages/kbn-datemath","@kbn/ui-framework":"file:../packages/kbn-ui-framework","angular-paging":"2.2.1","angular-resource":"1.4.9","angular-sanitize":"1.4.9","angular-ui-ace":"0.2.3","angular-ui-bootstrap":"1.2.5","babel-core":"^6.26.0","babel-preset-es2015":"^6.24.1","babel-runtime":"^6.26.0","bluebird":"3.1.1","boom":"3.1.1","brace":"0.10.0","chrome-remote-interface":"0.24.2","classnames":"2.2.5","concat-stream":"1.5.1","d3":"3.5.6","d3-scale":"1.0.6","dedent":"^0.7.0","dragselect":"1.7.17","elasticsearch":"13.0.1","extract-zip":"1.5.0","font-awesome":"4.4.0","get-port":"2.1.0","getos":"^3.1.0","glob":"6.0.4","hapi-auth-cookie":"6.1.1","history":"4.7.2","humps":"2.0.1","icalendar":"0.7.1","isomorphic-fetch":"2.2.1","joi":"6.10.1","jquery":"^3.3.1","jstimezonedetect":"1.0.5","lodash":"3.10.1","lodash.mean":"^4.1.0","lodash.orderby":"4.6.0","mkdirp":"0.5.1","moment":"^2.20.1","moment-duration-format":"^1.3.0","moment-timezone":"^0.5.14","ngreact":"^0.5.1","object-hash":"1.2.0","path-match":"1.2.4","pdfmake":"0.1.33","pivotal-ui":"13.0.1","pluralize":"3.1.0","pngjs":"3.3.1","prop-types":"^15.6.0","puid":"1.0.5","react":"^16.2.0","react-clipboard.js":"^1.1.2","react-dom":"^16.2.0","react-markdown-renderer":"^1.4.0","react-portal":"^3.2.0","react-redux":"^5.0.5","react-router-breadcrumbs-hoc":"1.1.2","react-router-dom":"^4.2.2","react-select":"^1.2.1","react-sticky":"^6.0.1","react-syntax-highlighter":"^5.7.0","react-vis":"^1.8.1","redux":"3.7.2","redux-actions":"2.2.1","redux-thunk":"2.2.0","request":"^2.85.0","reselect":"3.0.1","rimraf":"^2.6.2","rison-node":"0.3.1","rxjs":"5.3.0","semver":"5.1.0","stream-to-observable":"0.2.0","styled-components":"2.3.2","tar-fs":"1.13.0","tinycolor2":"1.3.0","ui-select":"0.19.4","unbzip2-stream":"1.0.9","uuid":"3.0.1","venn.js":"0.2.9","webcola":"3.3.6","xregexp":"3.2.0"},"engines":{"yarn":"^1.6.0"},"build":{"git":{"count":"17130","sha":"88e269d","date":"Wed, 2 May 2018 22:40:22 -0500"},"date":"Thu May 03 2018 09:49:27 GMT+0000 (UTC)"}},"message":"Initializing plugin license_management@6.3.0"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["status","plugin:license_management@6.3.0","info"],"pid":69776,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["plugins","debug"],"pid":69776,"plugin":{"name":"x-pack","version":"6.3.0","private":true,"author":"Elastic","license":"Elastic-License","kibana":{"build":{"intermediateBuildDirectory":"build/plugin/kibana/x-pack"},"version":"6.3.0"},"dependencies":{"@elastic/eui":"0.0.38","@elastic/node-crypto":"0.1.2","@elastic/node-phantom-simple":"2.2.4","@elastic/numeral":"2.3.2","@kbn/datemath":"file:../packages/kbn-datemath","@kbn/ui-framework":"file:../packages/kbn-ui-framework","angular-paging":"2.2.1","angular-resource":"1.4.9","angular-sanitize":"1.4.9","angular-ui-ace":"0.2.3","angular-ui-bootstrap":"1.2.5","babel-core":"^6.26.0","babel-preset-es2015":"^6.24.1","babel-runtime":"^6.26.0","bluebird":"3.1.1","boom":"3.1.1","brace":"0.10.0","chrome-remote-interface":"0.24.2","classnames":"2.2.5","concat-stream":"1.5.1","d3":"3.5.6","d3-scale":"1.0.6","dedent":"^0.7.0","dragselect":"1.7.17","elasticsearch":"13.0.1","extract-zip":"1.5.0","font-awesome":"4.4.0","get-port":"2.1.0","getos":"^3.1.0","glob":"6.0.4","hapi-auth-cookie":"6.1.1","history":"4.7.2","humps":"2.0.1","icalendar":"0.7.1","isomorphic-fetch":"2.2.1","joi":"6.10.1","jquery":"^3.3.1","jstimezonedetect":"1.0.5","lodash":"3.10.1","lodash.mean":"^4.1.0","lodash.orderby":"4.6.0","mkdirp":"0.5.1","moment":"^2.20.1","moment-duration-format":"^1.3.0","moment-timezone":"^0.5.14","ngreact":"^0.5.1","object-hash":"1.2.0","path-match":"1.2.4","pdfmake":"0.1.33","pivotal-ui":"13.0.1","pluralize":"3.1.0","pngjs":"3.3.1","prop-types":"^15.6.0","puid":"1.0.5","react":"^16.2.0","react-clipboard.js":"^1.1.2","react-dom":"^16.2.0","react-markdown-renderer":"^1.4.0","react-portal":"^3.2.0","react-redux":"^5.0.5","react-router-breadcrumbs-hoc":"1.1.2","react-router-dom":"^4.2.2","react-select":"^1.2.1","react-sticky":"^6.0.1","react-syntax-highlighter":"^5.7.0","react-vis":"^1.8.1","redux":"3.7.2","redux-actions":"2.2.1","redux-thunk":"2.2.0","request":"^2.85.0","reselect":"3.0.1","rimraf":"^2.6.2","rison-node":"0.3.1","rxjs":"5.3.0","semver":"5.1.0","stream-to-observable":"0.2.0","styled-components":"2.3.2","tar-fs":"1.13.0","tinycolor2":"1.3.0","ui-select":"0.19.4","unbzip2-stream":"1.0.9","uuid":"3.0.1","venn.js":"0.2.9","webcola":"3.3.6","xregexp":"3.2.0"},"engines":{"yarn":"^1.6.0"},"build":{"git":{"count":"17130","sha":"88e269d","date":"Wed, 2 May 2018 22:40:22 -0500"},"date":"Thu May 03 2018 09:49:27 GMT+0000 (UTC)"}},"message":"Initializing plugin index_management@6.3.0"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["status","plugin:index_management@6.3.0","info"],"pid":69776,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["plugins","debug"],"pid":69776,"plugin":{"name":"input_control_vis","version":"kibana"},"message":"Initializing plugin input_control_vis@kibana"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["plugins","debug"],"pid":69776,"plugin":{"name":"kbn_doc_views","version":"kibana"},"message":"Initializing plugin kbn_doc_views@kibana"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["plugins","debug"],"pid":69776,"plugin":{"name":"markdown_vis","version":"kibana"},"message":"Initializing plugin markdown_vis@kibana"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["plugins","debug"],"pid":69776,"plugin":{"name":"metric_vis","version":"kibana"},"message":"Initializing plugin metric_vis@kibana"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["plugins","debug"],"pid":69776,"plugin":{"name":"region_map","version":"kibana"},"message":"Initializing plugin region_map@kibana"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["plugins","debug"],"pid":69776,"plugin":{"name":"spy_modes","version":"kibana"},"message":"Initializing plugin spy_modes@kibana"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["plugins","debug"],"pid":69776,"plugin":{"name":"state_session_storage_redirect","version":"kibana","description":"When using the state:storeInSessionStorage setting with the short-urls, we need some way to get the full URL's hashed states into sessionStorage, this app will grab the URL from the kbn-initial-state and and put the URL hashed states into sessionStorage before redirecting the user."},"message":"Initializing plugin state_session_storage_redirect@kibana"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["plugins","debug"],"pid":69776,"plugin":{"name":"status_page","version":"kibana"},"message":"Initializing plugin status_page@kibana"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["plugins","debug"],"pid":69776,"plugin":{"name":"table_vis","version":"kibana"},"message":"Initializing plugin table_vis@kibana"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["plugins","debug"],"pid":69776,"plugin":{"name":"tagcloud","version":"kibana"},"message":"Initializing plugin tagcloud@kibana"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["plugins","debug"],"pid":69776,"plugin":{"name":"tile_map","version":"kibana"},"message":"Initializing plugin tile_map@kibana"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["plugins","debug"],"pid":69776,"plugin":{"author":"Rashid Khan <rashid@elastic.co>","name":"timelion","version":"kibana"},"message":"Initializing plugin timelion@kibana"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["status","plugin:timelion@6.3.0","info"],"pid":69776,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["plugins","debug"],"pid":69776,"plugin":{"name":"x-pack","version":"6.3.0","private":true,"author":"Elastic","license":"Elastic-License","kibana":{"build":{"intermediateBuildDirectory":"build/plugin/kibana/x-pack"},"version":"6.3.0"},"dependencies":{"@elastic/eui":"0.0.38","@elastic/node-crypto":"0.1.2","@elastic/node-phantom-simple":"2.2.4","@elastic/numeral":"2.3.2","@kbn/datemath":"file:../packages/kbn-datemath","@kbn/ui-framework":"file:../packages/kbn-ui-framework","angular-paging":"2.2.1","angular-resource":"1.4.9","angular-sanitize":"1.4.9","angular-ui-ace":"0.2.3","angular-ui-bootstrap":"1.2.5","babel-core":"^6.26.0","babel-preset-es2015":"^6.24.1","babel-runtime":"^6.26.0","bluebird":"3.1.1","boom":"3.1.1","brace":"0.10.0","chrome-remote-interface":"0.24.2","classnames":"2.2.5","concat-stream":"1.5.1","d3":"3.5.6","d3-scale":"1.0.6","dedent":"^0.7.0","dragselect":"1.7.17","elasticsearch":"13.0.1","extract-zip":"1.5.0","font-awesome":"4.4.0","get-port":"2.1.0","getos":"^3.1.0","glob":"6.0.4","hapi-auth-cookie":"6.1.1","history":"4.7.2","humps":"2.0.1","icalendar":"0.7.1","isomorphic-fetch":"2.2.1","joi":"6.10.1","jquery":"^3.3.1","jstimezonedetect":"1.0.5","lodash":"3.10.1","lodash.mean":"^4.1.0","lodash.orderby":"4.6.0","mkdirp":"0.5.1","moment":"^2.20.1","moment-duration-format":"^1.3.0","moment-timezone":"^0.5.14","ngreact":"^0.5.1","object-hash":"1.2.0","path-match":"1.2.4","pdfmake":"0.1.33","pivotal-ui":"13.0.1","pluralize":"3.1.0","pngjs":"3.3.1","prop-types":"^15.6.0","puid":"1.0.5","react":"^16.2.0","react-clipboard.js":"^1.1.2","react-dom":"^16.2.0","react-markdown-renderer":"^1.4.0","react-portal":"^3.2.0","react-redux":"^5.0.5","react-router-breadcrumbs-hoc":"1.1.2","react-router-dom":"^4.2.2","react-select":"^1.2.1","react-sticky":"^6.0.1","react-syntax-highlighter":"^5.7.0","react-vis":"^1.8.1","redux":"3.7.2","redux-actions":"2.2.1","redux-thunk":"2.2.0","request":"^2.85.0","reselect":"3.0.1","rimraf":"^2.6.2","rison-node":"0.3.1","rxjs":"5.3.0","semver":"5.1.0","stream-to-observable":"0.2.0","styled-components":"2.3.2","tar-fs":"1.13.0","tinycolor2":"1.3.0","ui-select":"0.19.4","unbzip2-stream":"1.0.9","uuid":"3.0.1","venn.js":"0.2.9","webcola":"3.3.6","xregexp":"3.2.0"},"engines":{"yarn":"^1.6.0"},"build":{"git":{"count":"17130","sha":"88e269d","date":"Wed, 2 May 2018 22:40:22 -0500"},"date":"Thu May 03 2018 09:49:27 GMT+0000 (UTC)"}},"message":"Initializing plugin graph@6.3.0"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["status","plugin:graph@6.3.0","info"],"pid":69776,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["plugins","debug"],"pid":69776,"plugin":{"name":"x-pack","version":"6.3.0","private":true,"author":"Elastic","license":"Elastic-License","kibana":{"build":{"intermediateBuildDirectory":"build/plugin/kibana/x-pack"},"version":"6.3.0"},"dependencies":{"@elastic/eui":"0.0.38","@elastic/node-crypto":"0.1.2","@elastic/node-phantom-simple":"2.2.4","@elastic/numeral":"2.3.2","@kbn/datemath":"file:../packages/kbn-datemath","@kbn/ui-framework":"file:../packages/kbn-ui-framework","angular-paging":"2.2.1","angular-resource":"1.4.9","angular-sanitize":"1.4.9","angular-ui-ace":"0.2.3","angular-ui-bootstrap":"1.2.5","babel-core":"^6.26.0","babel-preset-es2015":"^6.24.1","babel-runtime":"^6.26.0","bluebird":"3.1.1","boom":"3.1.1","brace":"0.10.0","chrome-remote-interface":"0.24.2","classnames":"2.2.5","concat-stream":"1.5.1","d3":"3.5.6","d3-scale":"1.0.6","dedent":"^0.7.0","dragselect":"1.7.17","elasticsearch":"13.0.1","extract-zip":"1.5.0","font-awesome":"4.4.0","get-port":"2.1.0","getos":"^3.1.0","glob":"6.0.4","hapi-auth-cookie":"6.1.1","history":"4.7.2","humps":"2.0.1","icalendar":"0.7.1","isomorphic-fetch":"2.2.1","joi":"6.10.1","jquery":"^3.3.1","jstimezonedetect":"1.0.5","lodash":"3.10.1","lodash.mean":"^4.1.0","lodash.orderby":"4.6.0","mkdirp":"0.5.1","moment":"^2.20.1","moment-duration-format":"^1.3.0","moment-timezone":"^0.5.14","ngreact":"^0.5.1","object-hash":"1.2.0","path-match":"1.2.4","pdfmake":"0.1.33","pivotal-ui":"13.0.1","pluralize":"3.1.0","pngjs":"3.3.1","prop-types":"^15.6.0","puid":"1.0.5","react":"^16.2.0","react-clipboard.js":"^1.1.2","react-dom":"^16.2.0","react-markdown-renderer":"^1.4.0","react-portal":"^3.2.0","react-redux":"^5.0.5","react-router-breadcrumbs-hoc":"1.1.2","react-router-dom":"^4.2.2","react-select":"^1.2.1","react-sticky":"^6.0.1","react-syntax-highlighter":"^5.7.0","react-vis":"^1.8.1","redux":"3.7.2","redux-actions":"2.2.1","redux-thunk":"2.2.0","request":"^2.85.0","reselect":"3.0.1","rimraf":"^2.6.2","rison-node":"0.3.1","rxjs":"5.3.0","semver":"5.1.0","stream-to-observable":"0.2.0","styled-components":"2.3.2","tar-fs":"1.13.0","tinycolor2":"1.3.0","ui-select":"0.19.4","unbzip2-stream":"1.0.9","uuid":"3.0.1","venn.js":"0.2.9","webcola":"3.3.6","xregexp":"3.2.0"},"engines":{"yarn":"^1.6.0"},"build":{"git":{"count":"17130","sha":"88e269d","date":"Wed, 2 May 2018 22:40:22 -0500"},"date":"Thu May 03 2018 09:49:27 GMT+0000 (UTC)"}},"message":"Initializing plugin monitoring@6.3.0"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["status","plugin:monitoring@6.3.0","info"],"pid":69776,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["plugins","debug"],"pid":69776,"plugin":{"name":"x-pack","version":"6.3.0","private":true,"author":"Elastic","license":"Elastic-License","kibana":{"build":{"intermediateBuildDirectory":"build/plugin/kibana/x-pack"},"version":"6.3.0"},"dependencies":{"@elastic/eui":"0.0.38","@elastic/node-crypto":"0.1.2","@elastic/node-phantom-simple":"2.2.4","@elastic/numeral":"2.3.2","@kbn/datemath":"file:../packages/kbn-datemath","@kbn/ui-framework":"file:../packages/kbn-ui-framework","angular-paging":"2.2.1","angular-resource":"1.4.9","angular-sanitize":"1.4.9","angular-ui-ace":"0.2.3","angular-ui-bootstrap":"1.2.5","babel-core":"^6.26.0","babel-preset-es2015":"^6.24.1","babel-runtime":"^6.26.0","bluebird":"3.1.1","boom":"3.1.1","brace":"0.10.0","chrome-remote-interface":"0.24.2","classnames":"2.2.5","concat-stream":"1.5.1","d3":"3.5.6","d3-scale":"1.0.6","dedent":"^0.7.0","dragselect":"1.7.17","elasticsearch":"13.0.1","extract-zip":"1.5.0","font-awesome":"4.4.0","get-port":"2.1.0","getos":"^3.1.0","glob":"6.0.4","hapi-auth-cookie":"6.1.1","history":"4.7.2","humps":"2.0.1","icalendar":"0.7.1","isomorphic-fetch":"2.2.1","joi":"6.10.1","jquery":"^3.3.1","jstimezonedetect":"1.0.5","lodash":"3.10.1","lodash.mean":"^4.1.0","lodash.orderby":"4.6.0","mkdirp":"0.5.1","moment":"^2.20.1","moment-duration-format":"^1.3.0","moment-timezone":"^0.5.14","ngreact":"^0.5.1","object-hash":"1.2.0","path-match":"1.2.4","pdfmake":"0.1.33","pivotal-ui":"13.0.1","pluralize":"3.1.0","pngjs":"3.3.1","prop-types":"^15.6.0","puid":"1.0.5","react":"^16.2.0","react-clipboard.js":"^1.1.2","react-dom":"^16.2.0","react-markdown-renderer":"^1.4.0","react-portal":"^3.2.0","react-redux":"^5.0.5","react-router-breadcrumbs-hoc":"1.1.2","react-router-dom":"^4.2.2","react-select":"^1.2.1","react-sticky":"^6.0.1","react-syntax-highlighter":"^5.7.0","react-vis":"^1.8.1","redux":"3.7.2","redux-actions":"2.2.1","redux-thunk":"2.2.0","request":"^2.85.0","reselect":"3.0.1","rimraf":"^2.6.2","rison-node":"0.3.1","rxjs":"5.3.0","semver":"5.1.0","stream-to-observable":"0.2.0","styled-components":"2.3.2","tar-fs":"1.13.0","tinycolor2":"1.3.0","ui-select":"0.19.4","unbzip2-stream":"1.0.9","uuid":"3.0.1","venn.js":"0.2.9","webcola":"3.3.6","xregexp":"3.2.0"},"engines":{"yarn":"^1.6.0"},"build":{"git":{"count":"17130","sha":"88e269d","date":"Wed, 2 May 2018 22:40:22 -0500"},"date":"Thu May 03 2018 09:49:27 GMT+0000 (UTC)"}},"message":"Initializing plugin security@6.3.0"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["status","plugin:security@6.3.0","info"],"pid":69776,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["security","warning"],"pid":69776,"message":"Generating a random key for xpack.security.encryptionKey. To prevent sessions from being invalidated on restart, please set xpack.security.encryptionKey in kibana.yml"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["security","warning"],"pid":69776,"message":"Session cookies will be transmitted over insecure connections. This is not recommended."} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["plugins","debug"],"pid":69776,"plugin":{"name":"x-pack","version":"6.3.0","private":true,"author":"Elastic","license":"Elastic-License","kibana":{"build":{"intermediateBuildDirectory":"build/plugin/kibana/x-pack"},"version":"6.3.0"},"dependencies":{"@elastic/eui":"0.0.38","@elastic/node-crypto":"0.1.2","@elastic/node-phantom-simple":"2.2.4","@elastic/numeral":"2.3.2","@kbn/datemath":"file:../packages/kbn-datemath","@kbn/ui-framework":"file:../packages/kbn-ui-framework","angular-paging":"2.2.1","angular-resource":"1.4.9","angular-sanitize":"1.4.9","angular-ui-ace":"0.2.3","angular-ui-bootstrap":"1.2.5","babel-core":"^6.26.0","babel-preset-es2015":"^6.24.1","babel-runtime":"^6.26.0","bluebird":"3.1.1","boom":"3.1.1","brace":"0.10.0","chrome-remote-interface":"0.24.2","classnames":"2.2.5","concat-stream":"1.5.1","d3":"3.5.6","d3-scale":"1.0.6","dedent":"^0.7.0","dragselect":"1.7.17","elasticsearch":"13.0.1","extract-zip":"1.5.0","font-awesome":"4.4.0","get-port":"2.1.0","getos":"^3.1.0","glob":"6.0.4","hapi-auth-cookie":"6.1.1","history":"4.7.2","humps":"2.0.1","icalendar":"0.7.1","isomorphic-fetch":"2.2.1","joi":"6.10.1","jquery":"^3.3.1","jstimezonedetect":"1.0.5","lodash":"3.10.1","lodash.mean":"^4.1.0","lodash.orderby":"4.6.0","mkdirp":"0.5.1","moment":"^2.20.1","moment-duration-format":"^1.3.0","moment-timezone":"^0.5.14","ngreact":"^0.5.1","object-hash":"1.2.0","path-match":"1.2.4","pdfmake":"0.1.33","pivotal-ui":"13.0.1","pluralize":"3.1.0","pngjs":"3.3.1","prop-types":"^15.6.0","puid":"1.0.5","react":"^16.2.0","react-clipboard.js":"^1.1.2","react-dom":"^16.2.0","react-markdown-renderer":"^1.4.0","react-portal":"^3.2.0","react-redux":"^5.0.5","react-router-breadcrumbs-hoc":"1.1.2","react-router-dom":"^4.2.2","react-select":"^1.2.1","react-sticky":"^6.0.1","react-syntax-highlighter":"^5.7.0","react-vis":"^1.8.1","redux":"3.7.2","redux-actions":"2.2.1","redux-thunk":"2.2.0","request":"^2.85.0","reselect":"3.0.1","rimraf":"^2.6.2","rison-node":"0.3.1","rxjs":"5.3.0","semver":"5.1.0","stream-to-observable":"0.2.0","styled-components":"2.3.2","tar-fs":"1.13.0","tinycolor2":"1.3.0","ui-select":"0.19.4","unbzip2-stream":"1.0.9","uuid":"3.0.1","venn.js":"0.2.9","webcola":"3.3.6","xregexp":"3.2.0"},"engines":{"yarn":"^1.6.0"},"build":{"git":{"count":"17130","sha":"88e269d","date":"Wed, 2 May 2018 22:40:22 -0500"},"date":"Thu May 03 2018 09:49:27 GMT+0000 (UTC)"}},"message":"Initializing plugin grokdebugger@6.3.0"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["status","plugin:grokdebugger@6.3.0","info"],"pid":69776,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["plugins","debug"],"pid":69776,"plugin":{"name":"x-pack","version":"6.3.0","private":true,"author":"Elastic","license":"Elastic-License","kibana":{"build":{"intermediateBuildDirectory":"build/plugin/kibana/x-pack"},"version":"6.3.0"},"dependencies":{"@elastic/eui":"0.0.38","@elastic/node-crypto":"0.1.2","@elastic/node-phantom-simple":"2.2.4","@elastic/numeral":"2.3.2","@kbn/datemath":"file:../packages/kbn-datemath","@kbn/ui-framework":"file:../packages/kbn-ui-framework","angular-paging":"2.2.1","angular-resource":"1.4.9","angular-sanitize":"1.4.9","angular-ui-ace":"0.2.3","angular-ui-bootstrap":"1.2.5","babel-core":"^6.26.0","babel-preset-es2015":"^6.24.1","babel-runtime":"^6.26.0","bluebird":"3.1.1","boom":"3.1.1","brace":"0.10.0","chrome-remote-interface":"0.24.2","classnames":"2.2.5","concat-stream":"1.5.1","d3":"3.5.6","d3-scale":"1.0.6","dedent":"^0.7.0","dragselect":"1.7.17","elasticsearch":"13.0.1","extract-zip":"1.5.0","font-awesome":"4.4.0","get-port":"2.1.0","getos":"^3.1.0","glob":"6.0.4","hapi-auth-cookie":"6.1.1","history":"4.7.2","humps":"2.0.1","icalendar":"0.7.1","isomorphic-fetch":"2.2.1","joi":"6.10.1","jquery":"^3.3.1","jstimezonedetect":"1.0.5","lodash":"3.10.1","lodash.mean":"^4.1.0","lodash.orderby":"4.6.0","mkdirp":"0.5.1","moment":"^2.20.1","moment-duration-format":"^1.3.0","moment-timezone":"^0.5.14","ngreact":"^0.5.1","object-hash":"1.2.0","path-match":"1.2.4","pdfmake":"0.1.33","pivotal-ui":"13.0.1","pluralize":"3.1.0","pngjs":"3.3.1","prop-types":"^15.6.0","puid":"1.0.5","react":"^16.2.0","react-clipboard.js":"^1.1.2","react-dom":"^16.2.0","react-markdown-renderer":"^1.4.0","react-portal":"^3.2.0","react-redux":"^5.0.5","react-router-breadcrumbs-hoc":"1.1.2","react-router-dom":"^4.2.2","react-select":"^1.2.1","react-sticky":"^6.0.1","react-syntax-highlighter":"^5.7.0","react-vis":"^1.8.1","redux":"3.7.2","redux-actions":"2.2.1","redux-thunk":"2.2.0","request":"^2.85.0","reselect":"3.0.1","rimraf":"^2.6.2","rison-node":"0.3.1","rxjs":"5.3.0","semver":"5.1.0","stream-to-observable":"0.2.0","styled-components":"2.3.2","tar-fs":"1.13.0","tinycolor2":"1.3.0","ui-select":"0.19.4","unbzip2-stream":"1.0.9","uuid":"3.0.1","venn.js":"0.2.9","webcola":"3.3.6","xregexp":"3.2.0"},"engines":{"yarn":"^1.6.0"},"build":{"git":{"count":"17130","sha":"88e269d","date":"Wed, 2 May 2018 22:40:22 -0500"},"date":"Thu May 03 2018 09:49:27 GMT+0000 (UTC)"}},"message":"Initializing plugin dashboard_mode@6.3.0"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["status","plugin:dashboard_mode@6.3.0","info"],"pid":69776,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["plugins","debug"],"pid":69776,"plugin":{"name":"x-pack","version":"6.3.0","private":true,"author":"Elastic","license":"Elastic-License","kibana":{"build":{"intermediateBuildDirectory":"build/plugin/kibana/x-pack"},"version":"6.3.0"},"dependencies":{"@elastic/eui":"0.0.38","@elastic/node-crypto":"0.1.2","@elastic/node-phantom-simple":"2.2.4","@elastic/numeral":"2.3.2","@kbn/datemath":"file:../packages/kbn-datemath","@kbn/ui-framework":"file:../packages/kbn-ui-framework","angular-paging":"2.2.1","angular-resource":"1.4.9","angular-sanitize":"1.4.9","angular-ui-ace":"0.2.3","angular-ui-bootstrap":"1.2.5","babel-core":"^6.26.0","babel-preset-es2015":"^6.24.1","babel-runtime":"^6.26.0","bluebird":"3.1.1","boom":"3.1.1","brace":"0.10.0","chrome-remote-interface":"0.24.2","classnames":"2.2.5","concat-stream":"1.5.1","d3":"3.5.6","d3-scale":"1.0.6","dedent":"^0.7.0","dragselect":"1.7.17","elasticsearch":"13.0.1","extract-zip":"1.5.0","font-awesome":"4.4.0","get-port":"2.1.0","getos":"^3.1.0","glob":"6.0.4","hapi-auth-cookie":"6.1.1","history":"4.7.2","humps":"2.0.1","icalendar":"0.7.1","isomorphic-fetch":"2.2.1","joi":"6.10.1","jquery":"^3.3.1","jstimezonedetect":"1.0.5","lodash":"3.10.1","lodash.mean":"^4.1.0","lodash.orderby":"4.6.0","mkdirp":"0.5.1","moment":"^2.20.1","moment-duration-format":"^1.3.0","moment-timezone":"^0.5.14","ngreact":"^0.5.1","object-hash":"1.2.0","path-match":"1.2.4","pdfmake":"0.1.33","pivotal-ui":"13.0.1","pluralize":"3.1.0","pngjs":"3.3.1","prop-types":"^15.6.0","puid":"1.0.5","react":"^16.2.0","react-clipboard.js":"^1.1.2","react-dom":"^16.2.0","react-markdown-renderer":"^1.4.0","react-portal":"^3.2.0","react-redux":"^5.0.5","react-router-breadcrumbs-hoc":"1.1.2","react-router-dom":"^4.2.2","react-select":"^1.2.1","react-sticky":"^6.0.1","react-syntax-highlighter":"^5.7.0","react-vis":"^1.8.1","redux":"3.7.2","redux-actions":"2.2.1","redux-thunk":"2.2.0","request":"^2.85.0","reselect":"3.0.1","rimraf":"^2.6.2","rison-node":"0.3.1","rxjs":"5.3.0","semver":"5.1.0","stream-to-observable":"0.2.0","styled-components":"2.3.2","tar-fs":"1.13.0","tinycolor2":"1.3.0","ui-select":"0.19.4","unbzip2-stream":"1.0.9","uuid":"3.0.1","venn.js":"0.2.9","webcola":"3.3.6","xregexp":"3.2.0"},"engines":{"yarn":"^1.6.0"},"build":{"git":{"count":"17130","sha":"88e269d","date":"Wed, 2 May 2018 22:40:22 -0500"},"date":"Thu May 03 2018 09:49:27 GMT+0000 (UTC)"}},"message":"Initializing plugin logstash@6.3.0"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["status","plugin:logstash@6.3.0","info"],"pid":69776,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:59:00Z","tags":["plugins","debug"],"pid":69776,"plugin":{"name":"x-pack","version":"6.3.0","private":true,"author":"Elastic","license":"Elastic-License","kibana":{"build":{"intermediateBuildDirectory":"build/plugin/kibana/x-pack"},"version":"6.3.0"},"dependencies":{"@elastic/eui":"0.0.38","@elastic/node-crypto":"0.1.2","@elastic/node-phantom-simple":"2.2.4","@elastic/numeral":"2.3.2","@kbn/datemath":"file:../packages/kbn-datemath","@kbn/ui-framework":"file:../packages/kbn-ui-framework","angular-paging":"2.2.1","angular-resource":"1.4.9","angular-sanitize":"1.4.9","angular-ui-ace":"0.2.3","angular-ui-bootstrap":"1.2.5","babel-core":"^6.26.0","babel-preset-es2015":"^6.24.1","babel-runtime":"^6.26.0","bluebird":"3.1.1","boom":"3.1.1","brace":"0.10.0","chrome-remote-interface":"0.24.2","classnames":"2.2.5","concat-stream":"1.5.1","d3":"3.5.6","d3-scale":"1.0.6","dedent":"^0.7.0","dragselect":"1.7.17","elasticsearch":"13.0.1","extract-zip":"1.5.0","font-awesome":"4.4.0","get-port":"2.1.0","getos":"^3.1.0","glob":"6.0.4","hapi-auth-cookie":"6.1.1","history":"4.7.2","humps":"2.0.1","icalendar":"0.7.1","isomorphic-fetch":"2.2.1","joi":"6.10.1","jquery":"^3.3.1","jstimezonedetect":"1.0.5","lodash":"3.10.1","lodash.mean":"^4.1.0","lodash.orderby":"4.6.0","mkdirp":"0.5.1","moment":"^2.20.1","moment-duration-format":"^1.3.0","moment-timezone":"^0.5.14","ngreact":"^0.5.1","object-hash":"1.2.0","path-match":"1.2.4","pdfmake":"0.1.33","pivotal-ui":"13.0.1","pluralize":"3.1.0","pngjs":"3.3.1","prop-types":"^15.6.0","puid":"1.0.5","react":"^16.2.0","react-clipboard.js":"^1.1.2","react-dom":"^16.2.0","react-markdown-renderer":"^1.4.0","react-portal":"^3.2.0","react-redux":"^5.0.5","react-router-breadcrumbs-hoc":"1.1.2","react-router-dom":"^4.2.2","react-select":"^1.2.1","react-sticky":"^6.0.1","react-syntax-highlighter":"^5.7.0","react-vis":"^1.8.1","redux":"3.7.2","redux-actions":"2.2.1","redux-thunk":"2.2.0","request":"^2.85.0","reselect":"3.0.1","rimraf":"^2.6.2","rison-node":"0.3.1","rxjs":"5.3.0","semver":"5.1.0","stream-to-observable":"0.2.0","styled-components":"2.3.2","tar-fs":"1.13.0","tinycolor2":"1.3.0","ui-select":"0.19.4","unbzip2-stream":"1.0.9","uuid":"3.0.1","venn.js":"0.2.9","webcola":"3.3.6","xregexp":"3.2.0"},"engines":{"yarn":"^1.6.0"},"build":{"git":{"count":"17130","sha":"88e269d","date":"Wed, 2 May 2018 22:40:22 -0500"},"date":"Thu May 03 2018 09:49:27 GMT+0000 (UTC)"}},"message":"Initializing plugin apm@6.3.0"} +{"type":"log","@timestamp":"2018-05-09T10:59:01Z","tags":["status","plugin:apm@6.3.0","info"],"pid":69776,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:59:01Z","tags":["plugins","debug"],"pid":69776,"plugin":{"name":"x-pack","version":"6.3.0","private":true,"author":"Elastic","license":"Elastic-License","kibana":{"build":{"intermediateBuildDirectory":"build/plugin/kibana/x-pack"},"version":"6.3.0"},"dependencies":{"@elastic/eui":"0.0.38","@elastic/node-crypto":"0.1.2","@elastic/node-phantom-simple":"2.2.4","@elastic/numeral":"2.3.2","@kbn/datemath":"file:../packages/kbn-datemath","@kbn/ui-framework":"file:../packages/kbn-ui-framework","angular-paging":"2.2.1","angular-resource":"1.4.9","angular-sanitize":"1.4.9","angular-ui-ace":"0.2.3","angular-ui-bootstrap":"1.2.5","babel-core":"^6.26.0","babel-preset-es2015":"^6.24.1","babel-runtime":"^6.26.0","bluebird":"3.1.1","boom":"3.1.1","brace":"0.10.0","chrome-remote-interface":"0.24.2","classnames":"2.2.5","concat-stream":"1.5.1","d3":"3.5.6","d3-scale":"1.0.6","dedent":"^0.7.0","dragselect":"1.7.17","elasticsearch":"13.0.1","extract-zip":"1.5.0","font-awesome":"4.4.0","get-port":"2.1.0","getos":"^3.1.0","glob":"6.0.4","hapi-auth-cookie":"6.1.1","history":"4.7.2","humps":"2.0.1","icalendar":"0.7.1","isomorphic-fetch":"2.2.1","joi":"6.10.1","jquery":"^3.3.1","jstimezonedetect":"1.0.5","lodash":"3.10.1","lodash.mean":"^4.1.0","lodash.orderby":"4.6.0","mkdirp":"0.5.1","moment":"^2.20.1","moment-duration-format":"^1.3.0","moment-timezone":"^0.5.14","ngreact":"^0.5.1","object-hash":"1.2.0","path-match":"1.2.4","pdfmake":"0.1.33","pivotal-ui":"13.0.1","pluralize":"3.1.0","pngjs":"3.3.1","prop-types":"^15.6.0","puid":"1.0.5","react":"^16.2.0","react-clipboard.js":"^1.1.2","react-dom":"^16.2.0","react-markdown-renderer":"^1.4.0","react-portal":"^3.2.0","react-redux":"^5.0.5","react-router-breadcrumbs-hoc":"1.1.2","react-router-dom":"^4.2.2","react-select":"^1.2.1","react-sticky":"^6.0.1","react-syntax-highlighter":"^5.7.0","react-vis":"^1.8.1","redux":"3.7.2","redux-actions":"2.2.1","redux-thunk":"2.2.0","request":"^2.85.0","reselect":"3.0.1","rimraf":"^2.6.2","rison-node":"0.3.1","rxjs":"5.3.0","semver":"5.1.0","stream-to-observable":"0.2.0","styled-components":"2.3.2","tar-fs":"1.13.0","tinycolor2":"1.3.0","ui-select":"0.19.4","unbzip2-stream":"1.0.9","uuid":"3.0.1","venn.js":"0.2.9","webcola":"3.3.6","xregexp":"3.2.0"},"engines":{"yarn":"^1.6.0"},"build":{"git":{"count":"17130","sha":"88e269d","date":"Wed, 2 May 2018 22:40:22 -0500"},"date":"Thu May 03 2018 09:49:27 GMT+0000 (UTC)"}},"message":"Initializing plugin cloud@6.3.0"} +{"type":"log","@timestamp":"2018-05-09T10:59:01Z","tags":["plugins","debug"],"pid":69776,"plugin":{"author":"Boaz Leskes <boaz@elastic.co>","contributors":["Spencer Alger <spencer.alger@elastic.co>"],"name":"console","version":"kibana"},"message":"Initializing plugin console@6.3.0"} +{"type":"log","@timestamp":"2018-05-09T10:59:01Z","tags":["status","plugin:console@6.3.0","info"],"pid":69776,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:59:01Z","tags":["plugins","debug"],"pid":69776,"plugin":{"name":"x-pack","version":"6.3.0","private":true,"author":"Elastic","license":"Elastic-License","kibana":{"build":{"intermediateBuildDirectory":"build/plugin/kibana/x-pack"},"version":"6.3.0"},"dependencies":{"@elastic/eui":"0.0.38","@elastic/node-crypto":"0.1.2","@elastic/node-phantom-simple":"2.2.4","@elastic/numeral":"2.3.2","@kbn/datemath":"file:../packages/kbn-datemath","@kbn/ui-framework":"file:../packages/kbn-ui-framework","angular-paging":"2.2.1","angular-resource":"1.4.9","angular-sanitize":"1.4.9","angular-ui-ace":"0.2.3","angular-ui-bootstrap":"1.2.5","babel-core":"^6.26.0","babel-preset-es2015":"^6.24.1","babel-runtime":"^6.26.0","bluebird":"3.1.1","boom":"3.1.1","brace":"0.10.0","chrome-remote-interface":"0.24.2","classnames":"2.2.5","concat-stream":"1.5.1","d3":"3.5.6","d3-scale":"1.0.6","dedent":"^0.7.0","dragselect":"1.7.17","elasticsearch":"13.0.1","extract-zip":"1.5.0","font-awesome":"4.4.0","get-port":"2.1.0","getos":"^3.1.0","glob":"6.0.4","hapi-auth-cookie":"6.1.1","history":"4.7.2","humps":"2.0.1","icalendar":"0.7.1","isomorphic-fetch":"2.2.1","joi":"6.10.1","jquery":"^3.3.1","jstimezonedetect":"1.0.5","lodash":"3.10.1","lodash.mean":"^4.1.0","lodash.orderby":"4.6.0","mkdirp":"0.5.1","moment":"^2.20.1","moment-duration-format":"^1.3.0","moment-timezone":"^0.5.14","ngreact":"^0.5.1","object-hash":"1.2.0","path-match":"1.2.4","pdfmake":"0.1.33","pivotal-ui":"13.0.1","pluralize":"3.1.0","pngjs":"3.3.1","prop-types":"^15.6.0","puid":"1.0.5","react":"^16.2.0","react-clipboard.js":"^1.1.2","react-dom":"^16.2.0","react-markdown-renderer":"^1.4.0","react-portal":"^3.2.0","react-redux":"^5.0.5","react-router-breadcrumbs-hoc":"1.1.2","react-router-dom":"^4.2.2","react-select":"^1.2.1","react-sticky":"^6.0.1","react-syntax-highlighter":"^5.7.0","react-vis":"^1.8.1","redux":"3.7.2","redux-actions":"2.2.1","redux-thunk":"2.2.0","request":"^2.85.0","reselect":"3.0.1","rimraf":"^2.6.2","rison-node":"0.3.1","rxjs":"5.3.0","semver":"5.1.0","stream-to-observable":"0.2.0","styled-components":"2.3.2","tar-fs":"1.13.0","tinycolor2":"1.3.0","ui-select":"0.19.4","unbzip2-stream":"1.0.9","uuid":"3.0.1","venn.js":"0.2.9","webcola":"3.3.6","xregexp":"3.2.0"},"engines":{"yarn":"^1.6.0"},"build":{"git":{"count":"17130","sha":"88e269d","date":"Wed, 2 May 2018 22:40:22 -0500"},"date":"Thu May 03 2018 09:49:27 GMT+0000 (UTC)"}},"message":"Initializing plugin console_extensions@6.3.0"} +{"type":"log","@timestamp":"2018-05-09T10:59:01Z","tags":["status","plugin:console_extensions@6.3.0","info"],"pid":69776,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:59:01Z","tags":["plugins","debug"],"pid":69776,"plugin":{"author":"Chris Cowan<chris@elastic.co>","name":"metrics","version":"kibana"},"message":"Initializing plugin metrics@6.3.0"} +{"type":"log","@timestamp":"2018-05-09T10:59:01Z","tags":["status","plugin:metrics@6.3.0","info"],"pid":69776,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:59:01Z","tags":["plugins","debug"],"pid":69776,"plugin":{"author":"Yuri Astrakhan<yuri@elastic.co>","name":"vega","version":"kibana"},"message":"Initializing plugin vega@kibana"} +{"type":"log","@timestamp":"2018-05-09T10:59:01Z","tags":["plugins","debug"],"pid":69776,"plugin":{"name":"x-pack","version":"6.3.0","private":true,"author":"Elastic","license":"Elastic-License","kibana":{"build":{"intermediateBuildDirectory":"build/plugin/kibana/x-pack"},"version":"6.3.0"},"dependencies":{"@elastic/eui":"0.0.38","@elastic/node-crypto":"0.1.2","@elastic/node-phantom-simple":"2.2.4","@elastic/numeral":"2.3.2","@kbn/datemath":"file:../packages/kbn-datemath","@kbn/ui-framework":"file:../packages/kbn-ui-framework","angular-paging":"2.2.1","angular-resource":"1.4.9","angular-sanitize":"1.4.9","angular-ui-ace":"0.2.3","angular-ui-bootstrap":"1.2.5","babel-core":"^6.26.0","babel-preset-es2015":"^6.24.1","babel-runtime":"^6.26.0","bluebird":"3.1.1","boom":"3.1.1","brace":"0.10.0","chrome-remote-interface":"0.24.2","classnames":"2.2.5","concat-stream":"1.5.1","d3":"3.5.6","d3-scale":"1.0.6","dedent":"^0.7.0","dragselect":"1.7.17","elasticsearch":"13.0.1","extract-zip":"1.5.0","font-awesome":"4.4.0","get-port":"2.1.0","getos":"^3.1.0","glob":"6.0.4","hapi-auth-cookie":"6.1.1","history":"4.7.2","humps":"2.0.1","icalendar":"0.7.1","isomorphic-fetch":"2.2.1","joi":"6.10.1","jquery":"^3.3.1","jstimezonedetect":"1.0.5","lodash":"3.10.1","lodash.mean":"^4.1.0","lodash.orderby":"4.6.0","mkdirp":"0.5.1","moment":"^2.20.1","moment-duration-format":"^1.3.0","moment-timezone":"^0.5.14","ngreact":"^0.5.1","object-hash":"1.2.0","path-match":"1.2.4","pdfmake":"0.1.33","pivotal-ui":"13.0.1","pluralize":"3.1.0","pngjs":"3.3.1","prop-types":"^15.6.0","puid":"1.0.5","react":"^16.2.0","react-clipboard.js":"^1.1.2","react-dom":"^16.2.0","react-markdown-renderer":"^1.4.0","react-portal":"^3.2.0","react-redux":"^5.0.5","react-router-breadcrumbs-hoc":"1.1.2","react-router-dom":"^4.2.2","react-select":"^1.2.1","react-sticky":"^6.0.1","react-syntax-highlighter":"^5.7.0","react-vis":"^1.8.1","redux":"3.7.2","redux-actions":"2.2.1","redux-thunk":"2.2.0","request":"^2.85.0","reselect":"3.0.1","rimraf":"^2.6.2","rison-node":"0.3.1","rxjs":"5.3.0","semver":"5.1.0","stream-to-observable":"0.2.0","styled-components":"2.3.2","tar-fs":"1.13.0","tinycolor2":"1.3.0","ui-select":"0.19.4","unbzip2-stream":"1.0.9","uuid":"3.0.1","venn.js":"0.2.9","webcola":"3.3.6","xregexp":"3.2.0"},"engines":{"yarn":"^1.6.0"},"build":{"git":{"count":"17130","sha":"88e269d","date":"Wed, 2 May 2018 22:40:22 -0500"},"date":"Thu May 03 2018 09:49:27 GMT+0000 (UTC)"}},"message":"Initializing plugin reporting@6.3.0"} +{"type":"log","@timestamp":"2018-05-09T10:59:01Z","tags":["reporting","debug","exportTypes"],"pid":69776,"message":"Found exportType at /Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/node_modules/x-pack/plugins/reporting/export_types/csv/server/index.js"} +{"type":"log","@timestamp":"2018-05-09T10:59:01Z","tags":["reporting","debug","exportTypes"],"pid":69776,"message":"Found exportType at /Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/node_modules/x-pack/plugins/reporting/export_types/printable_pdf/server/index.js"} +{"type":"log","@timestamp":"2018-05-09T10:59:02Z","tags":["reporting","warning"],"pid":69776,"message":"Generating a random key for xpack.reporting.encryptionKey. To prevent pending reports from failing on restart, please set xpack.reporting.encryptionKey in kibana.yml"} +{"type":"log","@timestamp":"2018-05-09T10:59:02Z","tags":["reporting","debug"],"pid":69776,"message":"Browser type: phantom"} +{"type":"log","@timestamp":"2018-05-09T10:59:02Z","tags":["status","plugin:reporting@6.3.0","info"],"pid":69776,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"} +{"type":"log","@timestamp":"2018-05-09T10:59:02Z","tags":["reporting","debug"],"pid":69776,"message":"Running on os \"darwin\", distribution \"undefined\", release \"undefined\""} +{"type":"log","@timestamp":"2018-05-09T10:59:02Z","tags":["reporting","debug"],"pid":69776,"message":"Browser installed at /Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/data/phantomjs-2.1.1-macosx/bin/phantomjs"} +{"type":"log","@timestamp":"2018-05-09T10:59:02Z","tags":["reporting","worker","debug"],"pid":69776,"message":"CSV: Registering CSV worker"} +{"type":"log","@timestamp":"2018-05-09T10:59:02Z","tags":["reporting","esqueue","worker","debug"],"pid":69776,"message":"jgyzr8b31hu86bfe3bf3pw9w - Created worker for job type csv"} +{"type":"log","@timestamp":"2018-05-09T10:59:02Z","tags":["reporting","worker","debug"],"pid":69776,"message":"PDF: Registering PDF worker"} +{"type":"log","@timestamp":"2018-05-09T10:59:02Z","tags":["reporting","esqueue","worker","debug"],"pid":69776,"message":"jgyzr8b81hu86bfe3bf6jd27 - Created worker for job type printable_pdf"} +{"type":"log","@timestamp":"2018-05-09T10:59:02Z","tags":["server","uuid","uuid"],"pid":69776,"message":"Resuming persistent Kibana instance UUID: a41ec841-89ba-4872-a15a-865858f9680e"} +{"type":"log","@timestamp":"2018-05-09T10:59:02Z","tags":["listening","info"],"pid":69776,"message":"Server running at http://localhost:5601"} +{"type":"log","@timestamp":"2018-05-09T10:59:02Z","tags":["plugin","debug"],"pid":69776,"message":"Checking Elasticsearch version"} +{"type":"log","@timestamp":"2018-05-09T10:59:02Z","tags":["status","plugin:elasticsearch@6.3.0","info"],"pid":69776,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} +{"type":"log","@timestamp":"2018-05-09T10:59:02Z","tags":["license","debug","xpack"],"pid":69776,"message":"Calling [data] Elasticsearch _xpack API. Polling frequency: 30001"} +{"type":"log","@timestamp":"2018-05-09T10:59:02Z","tags":["license","info","xpack"],"pid":69776,"message":"Imported license information from Elasticsearch for the [data] cluster: mode: basic | status: active | expiry date: Invalid date"} +{"type":"log","@timestamp":"2018-05-09T10:59:02Z","tags":["monitoring-ui","es-client"],"pid":69776,"message":"config sourced from: production cluster (http://localhost:9200)"} +{"type":"log","@timestamp":"2018-05-09T10:59:02Z","tags":["status","plugin:xpack_main@6.3.0","info"],"pid":69776,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} +{"type":"log","@timestamp":"2018-05-09T10:59:02Z","tags":["status","plugin:searchprofiler@6.3.0","info"],"pid":69776,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} +{"type":"log","@timestamp":"2018-05-09T10:59:02Z","tags":["status","plugin:ml@6.3.0","info"],"pid":69776,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} +{"type":"log","@timestamp":"2018-05-09T10:59:02Z","tags":["status","plugin:tilemap@6.3.0","info"],"pid":69776,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} +{"type":"log","@timestamp":"2018-05-09T10:59:02Z","tags":["status","plugin:watcher@6.3.0","info"],"pid":69776,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} +{"type":"log","@timestamp":"2018-05-09T10:59:02Z","tags":["status","plugin:graph@6.3.0","info"],"pid":69776,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} +{"type":"log","@timestamp":"2018-05-09T10:59:02Z","tags":["status","plugin:security@6.3.0","info"],"pid":69776,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} +{"type":"log","@timestamp":"2018-05-09T10:59:02Z","tags":["status","plugin:grokdebugger@6.3.0","info"],"pid":69776,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} +{"type":"log","@timestamp":"2018-05-09T10:59:02Z","tags":["status","plugin:logstash@6.3.0","info"],"pid":69776,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} +{"type":"log","@timestamp":"2018-05-09T10:59:02Z","tags":["status","plugin:reporting@6.3.0","info"],"pid":69776,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"} +{"type":"log","@timestamp":"2018-05-09T10:59:02Z","tags":["license","debug","xpack"],"pid":69776,"message":"Calling [monitoring] Elasticsearch _xpack API. Polling frequency: 30001"} +{"type":"log","@timestamp":"2018-05-09T10:59:02Z","tags":["info","monitoring-ui","kibana-monitoring"],"pid":69776,"message":"Starting all Kibana monitoring collectors"} +{"type":"log","@timestamp":"2018-05-09T10:59:02Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":69776,"message":"Initializing kibana_stats collector"} +{"type":"log","@timestamp":"2018-05-09T10:59:02Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":69776,"message":"Setting logger for kibana_stats collector"} +{"type":"log","@timestamp":"2018-05-09T10:59:02Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":69776,"message":"Setting logger for kibana_settings collector"} +{"type":"log","@timestamp":"2018-05-09T10:59:02Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":69776,"message":"Fetching data from kibana_stats collector"} +{"type":"log","@timestamp":"2018-05-09T10:59:02Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":69776,"message":"Uploading bulk Kibana monitoring payload"} +{"type":"log","@timestamp":"2018-05-09T10:59:02Z","tags":["license","info","xpack"],"pid":69776,"message":"Imported license information from Elasticsearch for the [monitoring] cluster: mode: basic | status: active | expiry date: Invalid date"} +{"type":"ops","@timestamp":"2018-05-09T10:59:04Z","tags":[],"pid":69776,"os":{"load":[4.85498046875,5.1650390625,4.42041015625],"mem":{"total":17179869184,"free":60276736},"uptime":622897},"proc":{"uptime":27.791,"mem":{"rss":249733120,"heapTotal":218456064,"heapUsed":141104080,"external":1608020},"delay":0.5321840047836304},"load":{"requests":{},"concurrents":{"5601":0},"responseTimes":{},"sockets":{"http":{"total":1,"169.254.169.254:80:":1},"https":{"total":0}}},"message":"memory: 134.6MB uptime: 0:00:28 load: [4.85 5.17 4.42] delay: 0.532"} +{"type":"log","@timestamp":"2018-05-09T10:59:04Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":69776,"message":"Received Kibana Ops event data"} +{"type":"log","@timestamp":"2018-05-09T10:59:04Z","tags":["plugin","debug"],"pid":69776,"message":"Checking Elasticsearch version"} +{"type":"log","@timestamp":"2018-05-09T10:59:07Z","tags":["plugin","debug"],"pid":69776,"message":"Checking Elasticsearch version"} +{"type":"response","@timestamp":"2018-05-09T10:59:07Z","tags":[],"pid":69776,"method":"get","statusCode":200,"req":{"url":"/app/kibana","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","cache-control":"max-age=0","upgrade-insecure-requests":"1","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":200,"responseTime":237,"contentLength":9},"message":"GET /app/kibana 200 237ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:07Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/bundles/app/kibana/bootstrap.js","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"*/*","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"d1d40f3af2904b0fe2832615909d39cc87d63bec-gzip\""},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":46,"contentLength":9},"message":"GET /bundles/app/kibana/bootstrap.js 304 46ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:07Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/bundles/kibana.style.css","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"text/css,*/*;q=0.1","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"63a7e0fe485c0cf6bd57434a91c2f2e485bf2d32-/bundles/-gzip\""},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":19,"contentLength":9},"message":"GET /bundles/kibana.style.css 304 19ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:07Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/bundles/vendors.style.css","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"text/css,*/*;q=0.1","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"d9ef83163859bff075ba5d6e1c4ce799d32ba8bc-/bundles/-gzip\""},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":36,"contentLength":9},"message":"GET /bundles/vendors.style.css 304 36ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:07Z","tags":[],"pid":69776,"method":"get","statusCode":200,"req":{"url":"/ui/favicons/favicon-32x32.png","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","pragma":"no-cache","cache-control":"no-cache","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":200,"responseTime":25,"contentLength":9},"message":"GET /ui/favicons/favicon-32x32.png 200 25ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:07Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/bundles/commons.style.css","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"text/css,*/*;q=0.1","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"abe65868d7050c7459af42ab0a0f4c19889532b1-/bundles/-gzip\""},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":34,"contentLength":9},"message":"GET /bundles/commons.style.css 304 34ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:07Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/ui/favicons/favicon-16x16.png","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"13b869be5df4bdc56920edc16a28e67a7c08203b\"","if-modified-since":"Thu, 03 May 2018 09:45:28 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":11,"contentLength":9},"message":"GET /ui/favicons/favicon-16x16.png 304 11ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:07Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/ui/favicons/favicon.ico","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"afa01d194a949e83d4b586638849f65ce9832979-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:28 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":4,"contentLength":9},"message":"GET /ui/favicons/favicon.ico 304 4ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:07Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/bundles/vendors.bundle.js","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"*/*","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"333ee3fdd2264402ad73b95fab3fc725beb24674-/bundles/-gzip\""},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":123,"contentLength":9},"message":"GET /bundles/vendors.bundle.js 304 123ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:08Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/bundles/commons.bundle.js","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"*/*","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"c052cafa0b661261d8ee3d16eff7bb0548fd8b6e-/bundles/-gzip\""},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":19,"contentLength":9},"message":"GET /bundles/commons.bundle.js 304 19ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:08Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/bundles/kibana.bundle.js","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"*/*","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"43e987f5a0e6423dd63e190cfacf091932021817-/bundles/-gzip\""},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":14,"contentLength":9},"message":"GET /bundles/kibana.bundle.js 304 14ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:09Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/ui/fonts/open_sans/open_sans_v15_latin_regular.woff2","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","origin":"http://localhost:5601","if-none-match":"\"2c07a9656f1e38da408f20f1cf11581a15cbd7a2\"","if-modified-since":"Thu, 03 May 2018 09:45:28 GMT","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"*/*","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":4,"contentLength":9},"message":"GET /ui/fonts/open_sans/open_sans_v15_latin_regular.woff2 304 4ms - 9.0B"} +{"type":"ops","@timestamp":"2018-05-09T10:59:09Z","tags":[],"pid":69776,"os":{"load":[4.7060546875,5.12890625,4.41162109375],"mem":{"total":17179869184,"free":21868544},"uptime":622902},"proc":{"uptime":32.84,"mem":{"rss":264056832,"heapTotal":220553216,"heapUsed":151142896,"external":17755645},"delay":0.481300950050354},"load":{"requests":{"5601":{"total":13,"disconnects":0,"statusCodes":{"200":2,"304":10}}},"concurrents":{"5601":5},"responseTimes":{"5601":{"avg":47.583333333333336,"max":236}},"sockets":{"http":{"total":1,"169.254.169.254:80:":1},"https":{"total":0}}},"message":"memory: 144.1MB uptime: 0:00:33 load: [4.71 5.13 4.41] delay: 0.481"} +{"type":"log","@timestamp":"2018-05-09T10:59:09Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":69776,"message":"Received Kibana Ops event data"} +{"type":"response","@timestamp":"2018-05-09T10:59:09Z","tags":[],"pid":69776,"method":"get","statusCode":200,"req":{"url":"/api/console/api_server?sense_version=%40%40SENSE_VERSION&apis=es_5_0","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","accept":"application/json, text/javascript, */*; q=0.01","x-requested-with":"XMLHttpRequest","kbn-version":"6.3.0","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":200,"responseTime":148,"contentLength":9},"message":"GET /api/console/api_server?sense_version=%40%40SENSE_VERSION&apis=es_5_0 200 148ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:09Z","tags":[],"pid":69776,"method":"get","statusCode":200,"req":{"url":"/api/saved_objects/_find?type=index-pattern&per_page=10000&page=1","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","accept":"application/json, text/plain, */*","kbn-version":"6.3.0","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":200,"responseTime":35,"contentLength":9},"message":"GET /api/saved_objects/_find?type=index-pattern&per_page=10000&page=1 200 35ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:09Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/plugins/kibana/assets/discover.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"c4035451a8e776d0f0cd354a825ec432ad06884e-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:26 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":29,"contentLength":9},"message":"GET /plugins/kibana/assets/discover.svg 304 29ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:09Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/plugins/kibana/assets/visualize.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"4cc79a4d91bd0380d0c82a6b092f339d185670ef-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:26 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":33,"contentLength":9},"message":"GET /plugins/kibana/assets/visualize.svg 304 33ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:09Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/plugins/kibana/assets/dashboard.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"42c2161fa64691414784868afdd722444460763a-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:26 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":43,"contentLength":9},"message":"GET /plugins/kibana/assets/dashboard.svg 304 43ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:09Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/plugins/timelion/icon.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"cb793d5314d680b7d5ce130f0393a70b51989541-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:27 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":45,"contentLength":9},"message":"GET /plugins/timelion/icon.svg 304 45ms - 9.0B"} +{"type":"log","@timestamp":"2018-05-09T10:59:09Z","tags":["plugin","debug"],"pid":69776,"message":"Checking Elasticsearch version"} +{"type":"response","@timestamp":"2018-05-09T10:59:09Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/plugins/apm/icon.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"cdb6515bc1340e806d4f17cbeea6a51eb5f40732-gzip\"","if-modified-since":"Thu, 03 May 2018 09:56:42 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":51,"contentLength":9},"message":"GET /plugins/apm/icon.svg 304 51ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:09Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/plugins/kibana/assets/wrench.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"088a9a98c99e406dca2354af14f688ad84826b97-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:26 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":50,"contentLength":9},"message":"GET /plugins/kibana/assets/wrench.svg 304 50ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:09Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/plugins/kibana/assets/settings.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"4f859e27d4917026ff1590805887902b14ce79d5-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:26 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":41,"contentLength":9},"message":"GET /plugins/kibana/assets/settings.svg 304 41ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:09Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/plugins/monitoring/icons/monitoring.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"a41ecd3d2ac0a1e77a72845479fc416658c609f8-gzip\"","if-modified-since":"Thu, 03 May 2018 09:56:42 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":45,"contentLength":9},"message":"GET /plugins/monitoring/icons/monitoring.svg 304 45ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:09Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/plugins/security/images/person.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"becef0294f6fdb73b9bf3ce52750e7e1b246e88f-gzip\"","if-modified-since":"Thu, 03 May 2018 09:56:42 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":46,"contentLength":9},"message":"GET /plugins/security/images/person.svg 304 46ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:09Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/plugins/security/images/logout.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"668bb08fe12a79ded121708cef3beebc475a2bea-gzip\"","if-modified-since":"Thu, 03 May 2018 09:56:42 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":50,"contentLength":9},"message":"GET /plugins/security/images/logout.svg 304 50ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:09Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/plugins/kibana/assets/play-circle.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"2433ecf38258f7121c835670b6993600e7657717-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:26 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":36,"contentLength":9},"message":"GET /plugins/kibana/assets/play-circle.svg 304 36ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:09Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/bundles/ebdca7741674eca4e1fadeca157f3ae6.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/bundles/commons.style.css","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"eacd5acd1258d9b09e78dbc1958744f30e38bcbd-gzip\"","if-modified-since":"Thu, 03 May 2018 09:54:49 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/bundles/commons.style.css"},"res":{"statusCode":304,"responseTime":24,"contentLength":9},"message":"GET /bundles/ebdca7741674eca4e1fadeca157f3ae6.svg 304 24ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:10Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/plugins/kibana/assets/app_apm.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"6561a902856504eaf56de28322529e13881654af-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:26 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":13,"contentLength":9},"message":"GET /plugins/kibana/assets/app_apm.svg 304 13ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:10Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/plugins/kibana/assets/app_logging.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"1c8bf6856f43e3624697a537b3cec2fe995134b9-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:26 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":17,"contentLength":9},"message":"GET /plugins/kibana/assets/app_logging.svg 304 17ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:10Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/plugins/kibana/assets/app_monitoring.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"457dc00b37f24a612e3e51bf323121ffdb4386dd-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:26 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":18,"contentLength":9},"message":"GET /plugins/kibana/assets/app_monitoring.svg 304 18ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:10Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/plugins/kibana/assets/app_security.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"154317cbb2d2fb1a29cc4ea1fce567e006b73451-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:26 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":19,"contentLength":9},"message":"GET /plugins/kibana/assets/app_security.svg 304 19ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:10Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/plugins/kibana/assets/app_dashboard.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"b4261017978445223123954c34d7f62499a61e72-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:26 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":22,"contentLength":9},"message":"GET /plugins/kibana/assets/app_dashboard.svg 304 22ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:10Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/plugins/kibana/assets/app_discover.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"63fbb8a8097faaab028c60c5bfe4fb3564b54617-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:26 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":27,"contentLength":9},"message":"GET /plugins/kibana/assets/app_discover.svg 304 27ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:10Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/plugins/graph/assets/app_graph.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"51bf11135e7f37b7a9043190b668e9937c3bfeea-gzip\"","if-modified-since":"Thu, 03 May 2018 09:56:42 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":254,"contentLength":9},"message":"GET /plugins/graph/assets/app_graph.svg 304 254ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:10Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/plugins/ml/assets/app_ml.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"83ce11e8c3f1541a87bd6a4f79db4fb7bb87b93b-gzip\"","if-modified-since":"Thu, 03 May 2018 09:56:42 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":257,"contentLength":9},"message":"GET /plugins/ml/assets/app_ml.svg 304 257ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:10Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/plugins/kibana/assets/app_timelion.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"f9495c0fc17cac4af10c948301bf08c1a45911db-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:26 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":267,"contentLength":9},"message":"GET /plugins/kibana/assets/app_timelion.svg 304 267ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:10Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/plugins/kibana/assets/app_visualize.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"11273d325dd73b3f8b3eee569b56068b690d6d9e-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:26 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":271,"contentLength":9},"message":"GET /plugins/kibana/assets/app_visualize.svg 304 271ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:10Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/plugins/kibana/assets/app_console.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"25044a6e1d5e83bb615c5971068f0c5152c77ef1-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:26 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":282,"contentLength":9},"message":"GET /plugins/kibana/assets/app_console.svg 304 282ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:10Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/plugins/kibana/assets/app_index_pattern.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"4f29178ca608fa80e8dd4574ba430d2e1c35c696-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:26 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":51,"contentLength":9},"message":"GET /plugins/kibana/assets/app_index_pattern.svg 304 51ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:10Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/ui/fonts/open_sans/open_sans_v15_latin_600.woff2","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","origin":"http://localhost:5601","if-none-match":"\"24234c1c81b3948758c1a0be8e5a65386ca94c52\"","if-modified-since":"Thu, 03 May 2018 09:45:28 GMT","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"*/*","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":24,"contentLength":9},"message":"GET /ui/fonts/open_sans/open_sans_v15_latin_600.woff2 304 24ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:10Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/ui/fonts/open_sans/open_sans_v15_latin_700.woff2","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","origin":"http://localhost:5601","if-none-match":"\"5a6a45d6f98752b11ccb7c4f0f6fd7faf18ad1a7\"","if-modified-since":"Thu, 03 May 2018 09:45:28 GMT","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"*/*","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":23,"contentLength":9},"message":"GET /ui/fonts/open_sans/open_sans_v15_latin_700.woff2 304 23ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:10Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/plugins/watcher/assets/app_watches.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"ae65d07bcf6e13b041a12384c8a3219c2a1e3f1c-gzip\"","if-modified-since":"Thu, 03 May 2018 09:56:42 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":22,"contentLength":9},"message":"GET /plugins/watcher/assets/app_watches.svg 304 22ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:10Z","tags":[],"pid":69776,"method":"get","statusCode":304,"req":{"url":"/plugins/kibana/assets/app_saved_objects.svg","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"image/webp,image/apng,image/*,*/*;q=0.8","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"55ba19c1c215bd5631cd99fca8f5792acc0a7296-gzip\"","if-modified-since":"Thu, 03 May 2018 09:45:26 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":19,"contentLength":9},"message":"GET /plugins/kibana/assets/app_saved_objects.svg 304 19ms - 9.0B"} +{"type":"log","@timestamp":"2018-05-09T10:59:12Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":69776,"message":"Fetching data from kibana collector"} +{"type":"log","@timestamp":"2018-05-09T10:59:12Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":69776,"message":"Fetching data from kibana_stats collector"} +{"type":"log","@timestamp":"2018-05-09T10:59:12Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":69776,"message":"Fetching data from kibana_settings collector"} +{"type":"log","@timestamp":"2018-05-09T10:59:12Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":69776,"message":"Fetching data from reporting_stats collector"} +{"type":"log","@timestamp":"2018-05-09T10:59:12Z","tags":["reporting","debug","exportTypes"],"pid":69776,"message":"Found exportType at /Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/node_modules/x-pack/plugins/reporting/export_types/csv/server/index.js"} +{"type":"log","@timestamp":"2018-05-09T10:59:12Z","tags":["reporting","debug","exportTypes"],"pid":69776,"message":"Found exportType at /Users/ruflin/Downloads/6.3/kibana-6.3.0-darwin-x86_64/node_modules/x-pack/plugins/reporting/export_types/printable_pdf/server/index.js"} +{"type":"log","@timestamp":"2018-05-09T10:59:12Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":69776,"message":"[null] default admin email setting found, sending [kibana_settings] monitoring document."} +{"type":"log","@timestamp":"2018-05-09T10:59:12Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":69776,"message":"Uploading bulk Kibana monitoring payload"} +{"type":"log","@timestamp":"2018-05-09T10:59:12Z","tags":["plugin","debug"],"pid":69776,"message":"Checking Elasticsearch version"} +{"type":"ops","@timestamp":"2018-05-09T10:59:14Z","tags":[],"pid":69776,"os":{"load":[4.4091796875,5.06005859375,4.3916015625],"mem":{"total":17179869184,"free":42782720},"uptime":622907},"proc":{"uptime":37.842,"mem":{"rss":257261568,"heapTotal":214073344,"heapUsed":120783360,"external":21486878},"delay":0.2857849597930908},"load":{"requests":{"5601":{"total":29,"disconnects":0,"statusCodes":{"200":2,"304":28}}},"concurrents":{"5601":6},"responseTimes":{"5601":{"avg":75.36666666666666,"max":282}},"sockets":{"http":{"total":1,"169.254.169.254:80:":1},"https":{"total":0}}},"message":"memory: 115.2MB uptime: 0:00:38 load: [4.41 5.06 4.39] delay: 0.286"} +{"type":"log","@timestamp":"2018-05-09T10:59:14Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":69776,"message":"Received Kibana Ops event data"} +{"type":"log","@timestamp":"2018-05-09T10:59:14Z","tags":["plugin","debug"],"pid":69776,"message":"Checking Elasticsearch version"} +{"type":"log","@timestamp":"2018-05-09T10:59:16Z","tags":["license","debug","xpack"],"pid":69776,"message":"Calling [data] Elasticsearch _xpack API. Polling frequency: 30001"} +{"type":"log","@timestamp":"2018-05-09T10:59:16Z","tags":["license","debug","xpack"],"pid":69776,"message":"Calling [data] Elasticsearch _xpack API. Polling frequency: 30001"} +{"type":"response","@timestamp":"2018-05-09T10:59:16Z","tags":[],"pid":69776,"method":"post","statusCode":400,"req":{"url":"/api/console/proxy?path=_mapping&method=GET","method":"post","headers":{"host":"localhost:5601","connection":"keep-alive","content-length":"0","accept":"text/plain, */*; q=0.01","origin":"http://localhost:5601","kbn-version":"6.2.4","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":400,"responseTime":14,"contentLength":9},"message":"POST /api/console/proxy?path=_mapping&method=GET 400 14ms - 9.0B"} +{"type":"response","@timestamp":"2018-05-09T10:59:16Z","tags":[],"pid":69776,"method":"post","statusCode":400,"req":{"url":"/api/console/proxy?path=_aliases&method=GET","method":"post","headers":{"host":"localhost:5601","connection":"keep-alive","content-length":"0","accept":"text/plain, */*; q=0.01","origin":"http://localhost:5601","kbn-version":"6.2.4","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":400,"responseTime":18,"contentLength":9},"message":"POST /api/console/proxy?path=_aliases&method=GET 400 18ms - 9.0B"} +{"type":"log","@timestamp":"2018-05-09T10:59:17Z","tags":["plugin","debug"],"pid":69776,"message":"Checking Elasticsearch version"} diff --git a/filebeat/module/kibana/log/test/test.expected.json b/filebeat/module/kibana/log/test/test.expected.json new file mode 100644 index 00000000000..e653801723c --- /dev/null +++ b/filebeat/module/kibana/log/test/test.expected.json @@ -0,0 +1,66 @@ +{ + "_index": "filebeat-7.0.0-alpha1-2018.05.09", + "_type": "doc", + "_id": "ZWiiRGMBDInET1s1jXXw", + "_score": 1, + "_source": { + "offset": 920, + "prospector": { + "type": "log" + }, + "read_timestamp": "2018-05-09T10:57:55Z", + "source": "/Users/ruflin/Dev/gopath/src/github.com/elastic/beats/filebeat/module/kibana/log/test/test.log", + "fileset": { + "module": "kibana", + "name": "log" + }, + "input": { + "type": "log" + }, + "@timestamp": "2018-05-09T10:57:55.000Z", + "service": { + "name": [ + "kibana" + ] + }, + "beat": { + "hostname": "ruflin", + "name": "ruflin", + "version": "7.0.0-alpha1" + }, + "kibana": { + "log": { + "res": { + "responseTime": 26, + "contentLength": 9, + "statusCode": 304 + }, + "method": "get", + "pid": 69410, + "message": "GET /ui/fonts/open_sans/open_sans_v15_latin_600.woff2 304 26ms - 9.0B", + "type": "response", + "req": { + "referer": "http://localhost:5601/app/kibana", + "headers": { + "if-modified-since": "Thu, 03 May 2018 09:45:28 GMT", + "referer": "http://localhost:5601/app/kibana", + "if-none-match": """"24234c1c81b3948758c1a0be8e5a65386ca94c52"""", + "accept-language": "en-US,en;q=0.9,de;q=0.8", + "origin": "http://localhost:5601", + "host": "localhost:5601", + "connection": "keep-alive", + "accept-encoding": "gzip, deflate, br", + "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36", + "accept": "*/*" + }, + "method": "get", + "userAgent": "127.0.0.1", + "url": "/ui/fonts/open_sans/open_sans_v15_latin_600.woff2", + "remoteAddress": "127.0.0.1" + }, + "tags": [], + "statusCode": 304 + } + } + } +} diff --git a/filebeat/module/kibana/log/test/test.log b/filebeat/module/kibana/log/test/test.log new file mode 100644 index 00000000000..8a01c483302 --- /dev/null +++ b/filebeat/module/kibana/log/test/test.log @@ -0,0 +1 @@ +{"type":"response","@timestamp":"2018-05-09T10:57:55Z","tags":[],"pid":69410,"method":"get","statusCode":304,"req":{"url":"/ui/fonts/open_sans/open_sans_v15_latin_600.woff2","method":"get","headers":{"host":"localhost:5601","connection":"keep-alive","origin":"http://localhost:5601","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36","accept":"*/*","referer":"http://localhost:5601/app/kibana","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9,de;q=0.8","if-none-match":"\"24234c1c81b3948758c1a0be8e5a65386ca94c52\"","if-modified-since":"Thu, 03 May 2018 09:45:28 GMT"},"remoteAddress":"127.0.0.1","userAgent":"127.0.0.1","referer":"http://localhost:5601/app/kibana"},"res":{"statusCode":304,"responseTime":26,"contentLength":9},"message":"GET /ui/fonts/open_sans/open_sans_v15_latin_600.woff2 304 26ms - 9.0B"} diff --git a/filebeat/module/kibana/module.yml b/filebeat/module/kibana/module.yml new file mode 100755 index 00000000000..ad3cb984c70 --- /dev/null +++ b/filebeat/module/kibana/module.yml @@ -0,0 +1 @@ +dashboards: diff --git a/filebeat/modules.d/kibana.yml.disabled b/filebeat/modules.d/kibana.yml.disabled new file mode 100755 index 00000000000..176a9b263bc --- /dev/null +++ b/filebeat/modules.d/kibana.yml.disabled @@ -0,0 +1,8 @@ +- module: kibana + # All logs + log: + enabled: true + + # Set custom paths for the log files. If left empty, + # Filebeat will choose the paths depending on your OS. + #var.paths: diff --git a/filebeat/tests/system/config/filebeat_modules.yml.j2 b/filebeat/tests/system/config/filebeat_modules.yml.j2 index 6f003525289..62b66e8a5ff 100644 --- a/filebeat/tests/system/config/filebeat_modules.yml.j2 +++ b/filebeat/tests/system/config/filebeat_modules.yml.j2 @@ -1,4 +1,5 @@ filebeat.registry_file: {{ beat.working_dir + '/' }}{{ registryFile|default("registry")}} +filebeat.overwrite_pipelines: true filebeat.config.modules: path: {{ beat.working_dir + '/modules.d/*.yml' }}