svn commit: r500964 - in head/sysutils/beats: . files

Ryan Steinmetz zi at FreeBSD.org
Tue May 7 14:35:59 UTC 2019


Author: zi
Date: Tue May  7 14:35:56 2019
New Revision: 500964
URL: https://svnweb.freebsd.org/changeset/ports/500964

Log:
  - Update to 6.7.1
  
  Submitted by:	jp at suppintr.io
  Approved by:	elastic@ (feld)

Deleted:
  head/sysutils/beats/files/patch-vendor_github.com_elastic_gosigar_sigar__freebsd.go
Modified:
  head/sysutils/beats/Makefile
  head/sysutils/beats/distinfo
  head/sysutils/beats/files/patch-filebeat_filebeat.yml
  head/sysutils/beats/files/patch-heartbeat_heartbeat.yml
  head/sysutils/beats/files/patch-libbeat_scripts_Makefile
  head/sysutils/beats/files/patch-metricbeat_metricbeat.yml
  head/sysutils/beats/files/patch-packetbeat_packetbeat.yml
  head/sysutils/beats/files/patch-vendor_github.com_docker_docker_pkg_system_mknod.go
  head/sysutils/beats/pkg-plist

Modified: head/sysutils/beats/Makefile
==============================================================================
--- head/sysutils/beats/Makefile	Tue May  7 14:32:01 2019	(r500963)
+++ head/sysutils/beats/Makefile	Tue May  7 14:35:56 2019	(r500964)
@@ -2,8 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	beats
-PORTVERSION=	6.6.0
-PORTREVISION=	0
+PORTVERSION=	6.7.1
 DISTVERSIONPREFIX=v
 CATEGORIES=	sysutils
 
@@ -12,53 +11,51 @@ COMMENT=	Collect logs locally and send to remote logst
 
 LICENSE=	APACHE20
 
+USES=		gmake go
 USE_GITHUB=	yes
 GH_ACCOUNT=	elastic
+USE_RC_SUBR=	${GO_TARGETS}
 
-USES=		gmake go
 GO_PKGNAME=	github.com/${GH_ACCOUNT}/${GH_PROJECT}
+FIND_ARGS=	"! ( -regex .*/*\.(go|in|log) ) ! -path *test* ! -path *vendor*"
+MAKE_ENV+=	GOBUILD_FLAGS=""
 
-USE_RC_SUBR=	${GO_TARGETS}
-
 OPTIONS_DEFAULT=FILEBEAT HEARTBEAT METRICBEAT
 OPTIONS_DEFINE=	FILEBEAT HEARTBEAT METRICBEAT PACKETBEAT
 OPTIONS_SUB=	yes
 
-OPTIONS_MULTI=	BEATS
-OPTIONS_MULTI_BEATS=${OPTIONS_DEFAULT}
-
 FILEBEAT_DESC=	Filebeat
 FILEBEAT_VARS=	GO_TARGETS+=filebeat
 
 PACKETBEAT_DESC=Packetbeat
 PACKETBEAT_VARS=GO_TARGETS+=packetbeat
+PACKETBEAT_BROKEN=	An underlying library is currently broken under FreeBSD
 
 METRICBEAT_DESC=Metricbeat
 METRICBEAT_VARS=GO_TARGETS+=metricbeat
 
 HEARTBEAT_DESC=	Heartbeat
-HEARTBEAT_VARS=GO_TARGETS+=heartbeat
+HEARTBEAT_VARS=	GO_TARGETS+=heartbeat
 
-MAKE_ENV+=	GOBUILD_FLAGS=""
-
 .include <bsd.port.options.mk>
 
-.if ${PORT_OPTIONS:MPACKETBEAT}
-BROKEN=		An underlying library is currently broken under FreeBSD
-.endif
-
 do-build:
-	@for GO_TARGET in ${GO_TARGETS}; do \
-		cd ${GO_WRKSRC}; ${SETENV} ${MAKE_ENV} ${GO_ENV} ${GMAKE} -C $${GO_TARGET} ;\
-	done
+.for GO_TARGET in ${GO_TARGETS}
+	@(cd ${GO_WRKSRC}; ${SETENV} ${MAKE_ENV} ${GO_ENV} ${GMAKE} -C ${GO_TARGET})
+.endfor
 
 do-install:
-	for GO_TARGET in ${GO_TARGETS}; do \
-		${INSTALL_PROGRAM} ${GO_WRKSRC}/$${GO_TARGET}/$${GO_TARGET} \
-			${STAGEDIR}${PREFIX}/sbin ;\
-		${INSTALL_DATA} ${WRKSRC}/$${GO_TARGET}/$${GO_TARGET}.yml \
-			${STAGEDIR}${PREFIX}/etc/$${GO_TARGET}.yml.sample ;\
-		${MKDIR} ${STAGEDIR}/var/db/beats/$${GO_TARGET} ;\
-	done
+.for GO_TARGET in ${GO_TARGETS}
+	${INSTALL_PROGRAM} ${GO_WRKSRC}/${GO_TARGET}/${GO_TARGET} \
+		${STAGEDIR}${PREFIX}/sbin
+	${INSTALL_DATA} ${WRKSRC}/${GO_TARGET}/${GO_TARGET}.yml \
+		${STAGEDIR}${PREFIX}/etc/${GO_TARGET}.yml.sample
+	${MKDIR} ${STAGEDIR}/var/db/beats/${GO_TARGET}
+.endfor
+.for BEATMOD in filebeat metricbeat
+	${MKDIR} ${STAGEDIR}${ETCDIR}/${BEATMOD}.modules.d ${STAGEDIR}${DATADIR}/${BEATMOD}/module
+	(cd ${WRKSRC}/${BEATMOD}/module && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/${BEATMOD}/module ${FIND_ARGS})
+	(cd ${WRKSRC}/${BEATMOD}/modules.d && ${COPYTREE_SHARE} . ${STAGEDIR}${ETCDIR}/${BEATMOD}.modules.d)
+.endfor
 
 .include <bsd.port.mk>

Modified: head/sysutils/beats/distinfo
==============================================================================
--- head/sysutils/beats/distinfo	Tue May  7 14:32:01 2019	(r500963)
+++ head/sysutils/beats/distinfo	Tue May  7 14:35:56 2019	(r500964)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1550092172
-SHA256 (elastic-beats-v6.6.0_GH0.tar.gz) = 0e55beab8945ba4c8035afcd22ae263d2c955dfc47e420d5231780ab53391342
-SIZE (elastic-beats-v6.6.0_GH0.tar.gz) = 29109311
+TIMESTAMP = 1555453757
+SHA256 (elastic-beats-v6.7.1_GH0.tar.gz) = a7834293870d73d734110975daed5660022df868bf01815e873d7c1e1bc761cc
+SIZE (elastic-beats-v6.7.1_GH0.tar.gz) = 33042733

Modified: head/sysutils/beats/files/patch-filebeat_filebeat.yml
==============================================================================
--- head/sysutils/beats/files/patch-filebeat_filebeat.yml	Tue May  7 14:32:01 2019	(r500963)
+++ head/sysutils/beats/files/patch-filebeat_filebeat.yml	Tue May  7 14:35:56 2019	(r500964)
@@ -1,4 +1,4 @@
---- filebeat/filebeat.yml.orig	2017-02-09 15:20:52 UTC
+--- filebeat/filebeat.yml.orig    2017-02-09 15:20:52 UTC
 +++ filebeat/filebeat.yml
 @@ -112,3 +112,5 @@ output.elasticsearch:
  # To enable all selectors use ["*"]. Examples of other selectors are "beat",

Modified: head/sysutils/beats/files/patch-heartbeat_heartbeat.yml
==============================================================================
--- head/sysutils/beats/files/patch-heartbeat_heartbeat.yml	Tue May  7 14:32:01 2019	(r500963)
+++ head/sysutils/beats/files/patch-heartbeat_heartbeat.yml	Tue May  7 14:35:56 2019	(r500964)
@@ -1,4 +1,4 @@
---- heartbeat/heartbeat.yml.orig	2017-02-20 22:45:44 UTC
+--- heartbeat/heartbeat.yml.orig    2017-02-20 22:45:44 UTC
 +++ heartbeat/heartbeat.yml
 @@ -77,3 +77,5 @@ output.elasticsearch:
  # To enable all selectors use ["*"]. Examples of other selectors are "beat",

Modified: head/sysutils/beats/files/patch-libbeat_scripts_Makefile
==============================================================================
--- head/sysutils/beats/files/patch-libbeat_scripts_Makefile	Tue May  7 14:32:01 2019	(r500963)
+++ head/sysutils/beats/files/patch-libbeat_scripts_Makefile	Tue May  7 14:35:56 2019	(r500964)
@@ -1,5 +1,5 @@
---- libbeat/scripts/Makefile.orig	2018-02-01 16:56:52.000000000 +0100
-+++ libbeat/scripts/Makefile	2018-02-07 12:53:00.911420000 +0100
+--- libbeat/scripts/Makefile.orig    2018-02-01 16:56:52.000000000 +0100
++++ libbeat/scripts/Makefile    2018-02-07 12:53:00.911420000 +0100
 @@ -27,7 +27,7 @@
  GOFILES_NOVENDOR = $(shell find . -type f -name '*.go' -not -path "*/vendor/*")
  GOFILES_ALL = $(GOFILES) $(shell find $(ES_BEATS) -type f -name '*.go')

Modified: head/sysutils/beats/files/patch-metricbeat_metricbeat.yml
==============================================================================
--- head/sysutils/beats/files/patch-metricbeat_metricbeat.yml	Tue May  7 14:32:01 2019	(r500963)
+++ head/sysutils/beats/files/patch-metricbeat_metricbeat.yml	Tue May  7 14:35:56 2019	(r500964)
@@ -1,4 +1,4 @@
---- metricbeat/metricbeat.yml.orig	2017-02-20 22:45:44 UTC
+--- metricbeat/metricbeat.yml.orig    2017-02-20 22:45:44 UTC
 +++ metricbeat/metricbeat.yml
 @@ -103,3 +103,5 @@ output.elasticsearch:
  # To enable all selectors use ["*"]. Examples of other selectors are "beat",

Modified: head/sysutils/beats/files/patch-packetbeat_packetbeat.yml
==============================================================================
--- head/sysutils/beats/files/patch-packetbeat_packetbeat.yml	Tue May  7 14:32:01 2019	(r500963)
+++ head/sysutils/beats/files/patch-packetbeat_packetbeat.yml	Tue May  7 14:35:56 2019	(r500964)
@@ -1,8 +1,8 @@
---- packetbeat/packetbeat.yml.orig	2017-02-09 16:20:52.000000000 +0100
-+++ packetbeat/packetbeat.yml	2017-02-21 02:04:13.919394000 +0100
+--- packetbeat/packetbeat.yml.orig    2017-02-09 16:20:52.000000000 +0100
++++ packetbeat/packetbeat.yml    2017-02-21 02:04:13.919394000 +0100
 @@ -10,8 +10,10 @@
  #============================== Network device ================================
- 
+
  # Select the network interface to sniff the data. On Linux, you can use the
 -# "any" keyword to sniff on all connected interfaces.
 -packetbeat.interfaces.device: any
@@ -10,9 +10,9 @@
 +# and the beats programmers did not bother to implement it, so you must set this
 +# to your preferred device
 +packetbeat.interfaces.device: em0
- 
+
  #================================== Flows =====================================
- 
+
 @@ -147,3 +149,5 @@
  # To enable all selectors use ["*"]. Examples of other selectors are "beat",
  # "publish", "service".

Modified: head/sysutils/beats/files/patch-vendor_github.com_docker_docker_pkg_system_mknod.go
==============================================================================
--- head/sysutils/beats/files/patch-vendor_github.com_docker_docker_pkg_system_mknod.go	Tue May  7 14:32:01 2019	(r500963)
+++ head/sysutils/beats/files/patch-vendor_github.com_docker_docker_pkg_system_mknod.go	Tue May  7 14:35:56 2019	(r500964)
@@ -7,5 +7,5 @@
 -	return syscall.Mknod(path, mode, dev)
 +	return syscall.Mknod(path, mode, uint64(dev))
  }
- 
+
  // Mkdev is used to build the value of linux devices (in /dev/) which specifies major

Modified: head/sysutils/beats/pkg-plist
==============================================================================
--- head/sysutils/beats/pkg-plist	Tue May  7 14:32:01 2019	(r500963)
+++ head/sysutils/beats/pkg-plist	Tue May  7 14:35:56 2019	(r500964)
@@ -11,3 +11,1154 @@
 %%HEARTBEAT%%@dir /var/db/beats/heartbeat
 %%METRICBEAT%%@dir /var/db/beats/metricbeat
 %%PACKETBEAT%%@dir /var/db/beats/packetbeat
+ at dir %%DATADIR%%/metricbeat/module/kubernetes/util
+%%DATADIR%%/metricbeat/module/kubernetes/event/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/kubernetes/event/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/kubernetes/event/_meta/data.json
+%%DATADIR%%/metricbeat/module/kubernetes/state_container/_meta/data.json
+%%DATADIR%%/metricbeat/module/kubernetes/state_container/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/kubernetes/state_container/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/kubernetes/node/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/kubernetes/node/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/kubernetes/node/_meta/data.json
+%%DATADIR%%/metricbeat/module/kubernetes/_meta/kubeconfig
+%%DATADIR%%/metricbeat/module/kubernetes/_meta/Dockerfile
+%%DATADIR%%/metricbeat/module/kubernetes/_meta/config.yml
+%%DATADIR%%/metricbeat/module/kubernetes/_meta/Dockerfile.kube-state
+%%DATADIR%%/metricbeat/module/kubernetes/_meta/config.reference.yml
+%%DATADIR%%/metricbeat/module/kubernetes/_meta/env
+%%DATADIR%%/metricbeat/module/kubernetes/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/kubernetes/_meta/kibana/6/dashboard/Metricbeat-kubernetes-apiserver.json
+%%DATADIR%%/metricbeat/module/kubernetes/_meta/kibana/6/dashboard/Metricbeat-kubernetes-overview.json
+%%DATADIR%%/metricbeat/module/kubernetes/_meta/kibana/5/dashboard/022a54c0-2bf5-11e7-859b-f78b612cde28.json
+%%DATADIR%%/metricbeat/module/kubernetes/_meta/kibana/5/visualization/294546b0-30d6-11e7-8df8-6d3604a72912.json
+%%DATADIR%%/metricbeat/module/kubernetes/_meta/kibana/5/visualization/7aac4fd0-30e0-11e7-8df8-6d3604a72912.json
+%%DATADIR%%/metricbeat/module/kubernetes/_meta/kibana/5/visualization/408fccf0-30d6-11e7-8df8-6d3604a72912.json
+%%DATADIR%%/metricbeat/module/kubernetes/_meta/kibana/5/visualization/16fa4470-2bfd-11e7-859b-f78b612cde28.json
+%%DATADIR%%/metricbeat/module/kubernetes/_meta/kibana/5/visualization/44f12b40-2bf4-11e7-859b-f78b612cde28.json
+%%DATADIR%%/metricbeat/module/kubernetes/_meta/kibana/5/visualization/cd059410-2bfb-11e7-859b-f78b612cde28.json
+%%DATADIR%%/metricbeat/module/kubernetes/_meta/kibana/5/visualization/174a6ad0-30e0-11e7-8df8-6d3604a72912.json
+%%DATADIR%%/metricbeat/module/kubernetes/_meta/kibana/5/visualization/a4c9d360-30df-11e7-8df8-6d3604a72912.json
+%%DATADIR%%/metricbeat/module/kubernetes/_meta/kibana/5/visualization/d6564360-2bfc-11e7-859b-f78b612cde28.json
+%%DATADIR%%/metricbeat/module/kubernetes/_meta/kibana/5/visualization/e1018b90-2bfb-11e7-859b-f78b612cde28.json
+%%DATADIR%%/metricbeat/module/kubernetes/_meta/kibana/5/visualization/022a54c0-2bf5-11e7-859b-f78b612cde28.json
+%%DATADIR%%/metricbeat/module/kubernetes/_meta/kibana/5/visualization/58e644f0-30d6-11e7-8df8-6d3604a72912.json
+%%DATADIR%%/metricbeat/module/kubernetes/_meta/kibana/5/visualization/da1ff7c0-30ed-11e7-b9e5-2b5b07213ab3.json
+%%DATADIR%%/metricbeat/module/kubernetes/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/kubernetes/apiserver/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/kubernetes/apiserver/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/kubernetes/state_pod/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/kubernetes/state_pod/_meta/data.json
+%%DATADIR%%/metricbeat/module/kubernetes/state_pod/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/kubernetes/volume/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/kubernetes/volume/_meta/data.json
+%%DATADIR%%/metricbeat/module/kubernetes/volume/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/kubernetes/state_deployment/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/kubernetes/state_deployment/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/kubernetes/state_deployment/_meta/data.json
+%%DATADIR%%/metricbeat/module/kubernetes/pod/_meta/data.json
+%%DATADIR%%/metricbeat/module/kubernetes/pod/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/kubernetes/pod/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/kubernetes/module.yml
+%%DATADIR%%/metricbeat/module/kubernetes/system/_meta/data.json
+%%DATADIR%%/metricbeat/module/kubernetes/system/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/kubernetes/system/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/kubernetes/state_replicaset/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/kubernetes/state_replicaset/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/kubernetes/state_replicaset/_meta/data.json
+%%DATADIR%%/metricbeat/module/kubernetes/state_statefulset/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/kubernetes/state_statefulset/_meta/data.json
+%%DATADIR%%/metricbeat/module/kubernetes/state_statefulset/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/kubernetes/state_node/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/kubernetes/state_node/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/kubernetes/state_node/_meta/data.json
+%%DATADIR%%/metricbeat/module/kubernetes/container/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/kubernetes/container/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/kubernetes/container/_meta/data.json
+%%DATADIR%%/metricbeat/module/aerospike/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/aerospike/_meta/env
+%%DATADIR%%/metricbeat/module/aerospike/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/aerospike/_meta/config.yml
+%%DATADIR%%/metricbeat/module/aerospike/_meta/Dockerfile
+%%DATADIR%%/metricbeat/module/aerospike/_meta/config.reference.yml
+%%DATADIR%%/metricbeat/module/aerospike/namespace/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/aerospike/namespace/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/aerospike/namespace/_meta/data.json
+%%DATADIR%%/metricbeat/module/haproxy/stat/_meta/data.json
+%%DATADIR%%/metricbeat/module/haproxy/stat/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/haproxy/stat/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/haproxy/module.yml
+%%DATADIR%%/metricbeat/module/haproxy/info/_meta/data.json
+%%DATADIR%%/metricbeat/module/haproxy/info/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/haproxy/info/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/haproxy/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/haproxy/_meta/config.reference.yml
+%%DATADIR%%/metricbeat/module/haproxy/_meta/config.yml
+%%DATADIR%%/metricbeat/module/haproxy/_meta/Dockerfile
+%%DATADIR%%/metricbeat/module/haproxy/_meta/env
+%%DATADIR%%/metricbeat/module/haproxy/_meta/Dockerfile.1.6
+%%DATADIR%%/metricbeat/module/haproxy/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/haproxy/_meta/Dockerfile.1.7
+%%DATADIR%%/metricbeat/module/haproxy/_meta/kibana/6/dashboard/Metricbeat-haproxy-http-frontend.json
+%%DATADIR%%/metricbeat/module/haproxy/_meta/kibana/6/dashboard/Metricbeat-haproxy-http-server.json
+%%DATADIR%%/metricbeat/module/haproxy/_meta/kibana/6/dashboard/Metricbeat-haproxy-http-backend.json
+%%DATADIR%%/metricbeat/module/haproxy/_meta/kibana/6/dashboard/Metricbeat-haproxy-frontend.json
+%%DATADIR%%/metricbeat/module/haproxy/_meta/kibana/6/dashboard/Metricbeat-haproxy-backend.json
+%%DATADIR%%/metricbeat/module/haproxy/_meta/kibana/6/dashboard/Metricbeat-haproxy-overview.json
+%%DATADIR%%/metricbeat/module/haproxy/_meta/kibana/6/dashboard/Metricbeat-haproxy-visualizations.json
+%%DATADIR%%/metricbeat/module/haproxy/_meta/haproxy.conf
+%%DATADIR%%/metricbeat/module/rabbitmq/exchange/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/rabbitmq/exchange/_meta/data.json
+%%DATADIR%%/metricbeat/module/rabbitmq/exchange/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/rabbitmq/node/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/rabbitmq/node/_meta/data.json
+%%DATADIR%%/metricbeat/module/rabbitmq/node/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/rabbitmq/connection/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/rabbitmq/connection/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/rabbitmq/connection/_meta/data.json
+%%DATADIR%%/metricbeat/module/rabbitmq/queue/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/rabbitmq/queue/_meta/data.json
+%%DATADIR%%/metricbeat/module/rabbitmq/queue/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/rabbitmq/module.yml
+%%DATADIR%%/metricbeat/module/rabbitmq/_meta/config.yml
+%%DATADIR%%/metricbeat/module/rabbitmq/_meta/Dockerfile
+%%DATADIR%%/metricbeat/module/rabbitmq/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/rabbitmq/_meta/env
+%%DATADIR%%/metricbeat/module/rabbitmq/_meta/kibana/5/dashboard/Metricbeat-Rabbitmq.json
+%%DATADIR%%/metricbeat/module/rabbitmq/_meta/kibana/5/visualization/RabbitMQ-Erlang-Process-Usage.json
+%%DATADIR%%/metricbeat/module/rabbitmq/_meta/kibana/5/visualization/RabbitMQ-Memory-Usage.json
+%%DATADIR%%/metricbeat/module/rabbitmq/_meta/kibana/5/visualization/Rabbitmq-Number-of-Nodes.json
+%%DATADIR%%/metricbeat/module/rabbitmq/_meta/kibana/5/visualization/RabbitMQ-Queue-Index-Operations.json
+%%DATADIR%%/metricbeat/module/rabbitmq/_meta/kibana/5/search/Metricbeat-Rabbitmq.json
+%%DATADIR%%/metricbeat/module/rabbitmq/_meta/kibana/6/dashboard/Metricbeat-rabbitmq-overview.json
+%%DATADIR%%/metricbeat/module/rabbitmq/_meta/config.reference.yml
+%%DATADIR%%/metricbeat/module/rabbitmq/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/php_fpm/pool/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/php_fpm/pool/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/php_fpm/pool/_meta/data.json
+%%DATADIR%%/metricbeat/module/php_fpm/_meta/Dockerfile
+%%DATADIR%%/metricbeat/module/php_fpm/_meta/config.yml
+%%DATADIR%%/metricbeat/module/php_fpm/_meta/config.reference.yml
+%%DATADIR%%/metricbeat/module/php_fpm/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/php_fpm/_meta/env
+%%DATADIR%%/metricbeat/module/php_fpm/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/php_fpm/_meta/php-fpm.conf
+%%DATADIR%%/metricbeat/module/php_fpm/process/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/php_fpm/process/_meta/data.json
+%%DATADIR%%/metricbeat/module/php_fpm/process/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/php_fpm/Dockerfile
+%%DATADIR%%/metricbeat/module/traefik/health/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/traefik/health/_meta/data.json
+%%DATADIR%%/metricbeat/module/traefik/health/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/traefik/_meta/Dockerfile
+%%DATADIR%%/metricbeat/module/traefik/_meta/config.yml
+%%DATADIR%%/metricbeat/module/traefik/_meta/env
+%%DATADIR%%/metricbeat/module/traefik/_meta/traefik.toml
+%%DATADIR%%/metricbeat/module/traefik/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/traefik/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/logstash/node_stats/_meta/data.json
+%%DATADIR%%/metricbeat/module/logstash/node_stats/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/logstash/node_stats/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/logstash/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/logstash/_meta/env
+%%DATADIR%%/metricbeat/module/logstash/_meta/config.yml
+%%DATADIR%%/metricbeat/module/logstash/_meta/Dockerfile
+%%DATADIR%%/metricbeat/module/logstash/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/logstash/_meta/config.reference.yml
+%%DATADIR%%/metricbeat/module/logstash/_meta/healthcheck.sh
+%%DATADIR%%/metricbeat/module/logstash/node/_meta/data.json
+%%DATADIR%%/metricbeat/module/logstash/node/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/logstash/node/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/windows/perfmon/_meta/data.json
+%%DATADIR%%/metricbeat/module/windows/perfmon/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/windows/perfmon/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/windows/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/windows/_meta/kibana/6/dashboard/metricbeat-windows-service.json
+%%DATADIR%%/metricbeat/module/windows/_meta/config.reference.yml
+%%DATADIR%%/metricbeat/module/windows/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/windows/_meta/config.yml
+%%DATADIR%%/metricbeat/module/windows/module.yml
+%%DATADIR%%/metricbeat/module/windows/service/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/windows/service/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/windows/service/_meta/data.json
+%%DATADIR%%/metricbeat/module/nginx/_meta/nginx.conf
+%%DATADIR%%/metricbeat/module/nginx/_meta/config.reference.yml
+%%DATADIR%%/metricbeat/module/nginx/_meta/Dockerfile
+%%DATADIR%%/metricbeat/module/nginx/_meta/config.yml
+%%DATADIR%%/metricbeat/module/nginx/_meta/kibana/6/dashboard/metricbeat-nginx-overview.json
+%%DATADIR%%/metricbeat/module/nginx/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/nginx/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/nginx/_meta/env
+%%DATADIR%%/metricbeat/module/nginx/stubstatus/_meta/data.json
+%%DATADIR%%/metricbeat/module/nginx/stubstatus/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/nginx/stubstatus/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/nginx/module.yml
+%%DATADIR%%/metricbeat/module/redis/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/redis/_meta/config.yml
+%%DATADIR%%/metricbeat/module/redis/_meta/config.reference.yml
+%%DATADIR%%/metricbeat/module/redis/_meta/Dockerfile
+%%DATADIR%%/metricbeat/module/redis/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/redis/_meta/env
+%%DATADIR%%/metricbeat/module/redis/_meta/kibana/6/dashboard/Metricbeat-redis-keys.json
+%%DATADIR%%/metricbeat/module/redis/_meta/kibana/6/dashboard/Metricbeat-redis-overview.json
+%%DATADIR%%/metricbeat/module/redis/_meta/kibana/5/dashboard/Metricbeat-Redis.json
+%%DATADIR%%/metricbeat/module/redis/_meta/kibana/5/search/Metricbeat-Redis.json
+%%DATADIR%%/metricbeat/module/redis/_meta/kibana/5/visualization/Redis-multiplexing-API.json
+%%DATADIR%%/metricbeat/module/redis/_meta/kibana/5/visualization/Redis-Keyspaces.json
+%%DATADIR%%/metricbeat/module/redis/_meta/kibana/5/visualization/Redis-server-mode.json
+%%DATADIR%%/metricbeat/module/redis/_meta/kibana/5/visualization/Redis-hosts.json
+%%DATADIR%%/metricbeat/module/redis/_meta/kibana/5/visualization/Redis-Connected-clients.json
+%%DATADIR%%/metricbeat/module/redis/_meta/kibana/5/visualization/Redis-Clients-Metrics.json
+%%DATADIR%%/metricbeat/module/redis/_meta/kibana/5/visualization/Redis-Server-Versions.json
+%%DATADIR%%/metricbeat/module/redis/module.yml
+%%DATADIR%%/metricbeat/module/redis/info/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/redis/info/_meta/data.json
+%%DATADIR%%/metricbeat/module/redis/info/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/redis/key/_meta/data.json
+%%DATADIR%%/metricbeat/module/redis/key/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/redis/key/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/redis/keyspace/_meta/data.json
+%%DATADIR%%/metricbeat/module/redis/keyspace/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/redis/keyspace/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/postgresql/database/_meta/data.json
+%%DATADIR%%/metricbeat/module/postgresql/database/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/postgresql/database/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/postgresql/activity/_meta/data.json
+%%DATADIR%%/metricbeat/module/postgresql/activity/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/postgresql/activity/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/postgresql/_meta/config.yml
+%%DATADIR%%/metricbeat/module/postgresql/_meta/env
+%%DATADIR%%/metricbeat/module/postgresql/_meta/docker-entrypoint-initdb.d/0-enable-pg_stat_statements.sh
+%%DATADIR%%/metricbeat/module/postgresql/_meta/docker-entrypoint-initdb.d/1-create-extension-pg_stat_statements.sql
+%%DATADIR%%/metricbeat/module/postgresql/_meta/Dockerfile
+%%DATADIR%%/metricbeat/module/postgresql/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/postgresql/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/postgresql/_meta/config.reference.yml
+%%DATADIR%%/metricbeat/module/postgresql/bgwriter/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/postgresql/bgwriter/_meta/data.json
+%%DATADIR%%/metricbeat/module/postgresql/bgwriter/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/postgresql/statement/_meta/data.json
+%%DATADIR%%/metricbeat/module/postgresql/statement/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/postgresql/statement/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/dropwizard/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/dropwizard/_meta/env
+%%DATADIR%%/metricbeat/module/dropwizard/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/dropwizard/_meta/Dockerfile
+%%DATADIR%%/metricbeat/module/dropwizard/_meta/config.yml
+%%DATADIR%%/metricbeat/module/dropwizard/_meta/.dockerignore
+%%DATADIR%%/metricbeat/module/dropwizard/_meta/config.reference.yml
+%%DATADIR%%/metricbeat/module/dropwizard/collector/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/dropwizard/collector/_meta/data.json
+%%DATADIR%%/metricbeat/module/dropwizard/collector/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/memcached/stats/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/memcached/stats/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/memcached/stats/_meta/data.json
+%%DATADIR%%/metricbeat/module/memcached/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/memcached/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/memcached/_meta/env
+%%DATADIR%%/metricbeat/module/memcached/_meta/config.reference.yml
+%%DATADIR%%/metricbeat/module/memcached/_meta/Dockerfile
+%%DATADIR%%/metricbeat/module/memcached/_meta/config.yml
+%%DATADIR%%/metricbeat/module/prometheus/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/prometheus/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/prometheus/_meta/env
+%%DATADIR%%/metricbeat/module/prometheus/_meta/config.reference.yml
+%%DATADIR%%/metricbeat/module/prometheus/_meta/config.yml
+%%DATADIR%%/metricbeat/module/prometheus/_meta/Dockerfile
+%%DATADIR%%/metricbeat/module/prometheus/collector/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/prometheus/collector/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/prometheus/collector/_meta/data.json
+%%DATADIR%%/metricbeat/module/prometheus/stats/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/prometheus/stats/_meta/data.json
+%%DATADIR%%/metricbeat/module/prometheus/stats/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/uwsgi/status/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/uwsgi/status/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/uwsgi/status/_meta/data.json
+%%DATADIR%%/metricbeat/module/uwsgi/module.yml
+%%DATADIR%%/metricbeat/module/uwsgi/_meta/env
+%%DATADIR%%/metricbeat/module/uwsgi/_meta/Dockerfile
+%%DATADIR%%/metricbeat/module/uwsgi/_meta/config.yml
+%%DATADIR%%/metricbeat/module/uwsgi/_meta/kibana/5/dashboard/Metricbeat-uWSGI.json
+%%DATADIR%%/metricbeat/module/uwsgi/_meta/kibana/5/visualization/ac7194b0-f0ae-11e7-b9ff-9f96241065de.json
+%%DATADIR%%/metricbeat/module/uwsgi/_meta/kibana/5/visualization/a5058e70-f0ae-11e7-b9ff-9f96241065de.json
+%%DATADIR%%/metricbeat/module/uwsgi/_meta/kibana/5/visualization/ba4a80b0-f0ae-11e7-b9ff-9f96241065de.json
+%%DATADIR%%/metricbeat/module/uwsgi/_meta/kibana/5/visualization/8c5f96e0-f0ae-11e7-b9ff-9f96241065de.json
+%%DATADIR%%/metricbeat/module/uwsgi/_meta/kibana/5/search/Metricbeat-uWSGI-status.json
+%%DATADIR%%/metricbeat/module/uwsgi/_meta/kibana/6/dashboard/Metricbeat-uwsgi-overview.json
+%%DATADIR%%/metricbeat/module/uwsgi/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/uwsgi/_meta/.dockerignore
+%%DATADIR%%/metricbeat/module/uwsgi/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/uwsgi/_meta/config.reference.yml
+%%DATADIR%%/metricbeat/module/graphite/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/graphite/_meta/config.reference.yml
+%%DATADIR%%/metricbeat/module/graphite/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/graphite/_meta/config.yml
+%%DATADIR%%/metricbeat/module/graphite/server/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/graphite/server/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/graphite/server/_meta/data.json
+%%DATADIR%%/metricbeat/module/etcd/self/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/etcd/self/_meta/data.json
+%%DATADIR%%/metricbeat/module/etcd/self/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/etcd/store/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/etcd/store/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/etcd/store/_meta/data.json
+%%DATADIR%%/metricbeat/module/etcd/_meta/Dockerfile
+%%DATADIR%%/metricbeat/module/etcd/_meta/config.yml
+%%DATADIR%%/metricbeat/module/etcd/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/etcd/_meta/config.reference.yml
+%%DATADIR%%/metricbeat/module/etcd/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/etcd/_meta/env
+%%DATADIR%%/metricbeat/module/etcd/leader/_meta/data.json
+%%DATADIR%%/metricbeat/module/etcd/leader/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/etcd/leader/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/system/cpu/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/system/cpu/_meta/data.json
+%%DATADIR%%/metricbeat/module/system/cpu/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/system/uptime/_meta/data.json
+%%DATADIR%%/metricbeat/module/system/uptime/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/system/uptime/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/system/filesystem/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/system/filesystem/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/system/filesystem/_meta/data.json
+%%DATADIR%%/metricbeat/module/system/fsstat/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/system/fsstat/_meta/data.json
+%%DATADIR%%/metricbeat/module/system/fsstat/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/system/process/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/system/process/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/system/process/_meta/data.json
+%%DATADIR%%/metricbeat/module/system/core/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/system/core/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/system/core/_meta/data.json
+%%DATADIR%%/metricbeat/module/system/diskio/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/system/diskio/_meta/data.json
+%%DATADIR%%/metricbeat/module/system/diskio/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/system/socket_summary/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/system/socket_summary/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/system/socket/_meta/data.json
+%%DATADIR%%/metricbeat/module/system/socket/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/system/socket/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/system/module.yml
+%%DATADIR%%/metricbeat/module/system/raid/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/system/raid/_meta/data.json
+%%DATADIR%%/metricbeat/module/system/raid/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/system/load/_meta/data.json
+%%DATADIR%%/metricbeat/module/system/load/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/system/load/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/system/memory/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/system/memory/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/system/memory/_meta/data.json
+%%DATADIR%%/metricbeat/module/system/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/dashboard/Metricbeat-network.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/dashboard/Metricbeat-cpu.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/dashboard/Metricbeat-overview.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/dashboard/CPU-slash-Memory-per-container.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/dashboard/Metricbeat-processes.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/dashboard/79ffd6e0-faa0-11e6-947f-177f697178b8.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/dashboard/Metricbeat-system-overview.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/dashboard/Metricbeat-memory.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/dashboard/Metricbeat-filesystem-per-Host.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/dashboard/d1f1f9e0-1b1c-11e7-b09e-037021c4f8df.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/dashboard/Metricbeat-filesystem.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/CPU-usage-over-time.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/Disk-space-overview.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/Disk-space-distribution.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/CPU-Usage.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/d3166e80-1b91-11e7-bec4-a5e9ec5cab8b.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/ab2d1e90-1b1a-11e7-b09e-037021c4f8df.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/Top-disks-by-memory-usage.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/2e224660-1b19-11e7-b09e-037021c4f8df.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/Swap-usage.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/Packet-loss-on-interfaces.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/26732e20-1b91-11e7-bec4-a5e9ec5cab8b.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/1aae9140-1b93-11e7-8ada-3df93aab833e.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/Total-Memory.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/Network-Packetloss.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/Top-processes-by-CPU-usage.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/Disk-utilization-over-time.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/217025e0-2a69-11e7-99f0-399f2a11b723.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/Disk-space.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/Network-Bytes.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/Memory-usage-per-process.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/aa984970-1e0b-11e7-852e-cdcfcfdffddd.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/System-Load-over-time.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/Container-CPU-usage.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/Free-disk-space-over-days.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/Top-processes-by-memory-usage.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/Servers-overview.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/Number-of-processes.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/6b7b9a40-faa1-11e6-86b1-cd7735ff7e23.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/fe064790-1b1f-11e7-bec4-a5e9ec5cab8b.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/System-overview-by-host.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/522ee670-1b92-11e7-bec4-a5e9ec5cab8b.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/4e4bb1e0-1b1b-11e7-b09e-037021c4f8df.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/Top-10-interfaces.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/Swap-usage-over-time.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/Top-hosts-by-CPU-usage.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/Container-Block-IO.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/Number-of-Pids.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/System-load.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/Memory-usage-over-time.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/95490a10-1e23-11e7-958f-490b8dcb96d8.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/34f97ee0-1b96-11e7-8ada-3df93aab833e.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/CPU-usage-per-process.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/Top-hosts-by-disk-size.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/System-Navigation.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/e0f001c0-1b18-11e7-b09e-037021c4f8df.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/Number-of-processes-over-time.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/Memory-usage.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/83e12df0-1b91-11e7-bec4-a5e9ec5cab8b.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/bfa5e400-1b16-11e7-b09e-037021c4f8df.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/In-vs-Out-Network-Bytes.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/855899e0-1b1c-11e7-b09e-037021c4f8df.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/Top-hosts-by-memory-usage.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/089b85d0-1b16-11e7-b09e-037021c4f8df.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/Container-Memory-stats.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/4d546850-1b15-11e7-b09e-037021c4f8df.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/Total-files-over-days.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/visualization/Available-Memory.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/search/Fsstats.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/search/Load-stats.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/search/Cpu-stats.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/search/Memory-stats.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/search/Filesystem-stats.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/search/Cpu-Load-stats.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/search/System-stats.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/search/Network-data.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/5/search/Process-stats.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/6/dashboard/Metricbeat-host-overview.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/6/dashboard/Metricbeat-system-overview.json
+%%DATADIR%%/metricbeat/module/system/_meta/kibana/6/dashboard/Metricbeat-containers-overview.json
+%%DATADIR%%/metricbeat/module/system/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/system/_meta/config.reference.yml
+%%DATADIR%%/metricbeat/module/system/_meta/config.yml
+%%DATADIR%%/metricbeat/module/system/network/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/system/network/_meta/data.json
+%%DATADIR%%/metricbeat/module/system/network/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/system/process_summary/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/system/process_summary/_meta/data.json
+%%DATADIR%%/metricbeat/module/system/process_summary/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/jolokia/_meta/env
+%%DATADIR%%/metricbeat/module/jolokia/_meta/Dockerfile
+%%DATADIR%%/metricbeat/module/jolokia/_meta/config.yml
+%%DATADIR%%/metricbeat/module/jolokia/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/jolokia/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/jolokia/_meta/jolokia.xml
+%%DATADIR%%/metricbeat/module/jolokia/jmx/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/jolokia/jmx/_meta/data.json
+%%DATADIR%%/metricbeat/module/jolokia/jmx/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/couchbase/bucket/_meta/data.json
+%%DATADIR%%/metricbeat/module/couchbase/bucket/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/couchbase/bucket/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/couchbase/_meta/env
+%%DATADIR%%/metricbeat/module/couchbase/_meta/Dockerfile
+%%DATADIR%%/metricbeat/module/couchbase/_meta/config.yml
+%%DATADIR%%/metricbeat/module/couchbase/_meta/config.reference.yml
+%%DATADIR%%/metricbeat/module/couchbase/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/couchbase/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/couchbase/_meta/configure-node.sh
+%%DATADIR%%/metricbeat/module/couchbase/cluster/_meta/data.json
+%%DATADIR%%/metricbeat/module/couchbase/cluster/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/couchbase/cluster/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/couchbase/node/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/couchbase/node/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/couchbase/node/_meta/data.json
+%%DATADIR%%/metricbeat/module/mysql/_meta/Dockerfile
+%%DATADIR%%/metricbeat/module/mysql/_meta/config.yml
+%%DATADIR%%/metricbeat/module/mysql/_meta/env
+%%DATADIR%%/metricbeat/module/mysql/_meta/config.reference.yml
+%%DATADIR%%/metricbeat/module/mysql/_meta/kibana/5/search/67e88e60-0005-11e7-aaf1-b342e4b94bb0.json
+%%DATADIR%%/metricbeat/module/mysql/_meta/kibana/5/dashboard/66881e90-0006-11e7-bf7f-c9acc3d3e306.json
+%%DATADIR%%/metricbeat/module/mysql/_meta/kibana/5/visualization/e784dc50-0005-11e7-bf7f-c9acc3d3e306.json
+%%DATADIR%%/metricbeat/module/mysql/_meta/kibana/5/visualization/45a00c10-0006-11e7-bf7f-c9acc3d3e306.json
+%%DATADIR%%/metricbeat/module/mysql/_meta/kibana/5/visualization/4c36c420-000a-11e7-8cd4-73b67e9e3f3c.json
+%%DATADIR%%/metricbeat/module/mysql/_meta/kibana/5/visualization/1a99f2b0-0006-11e7-bf7f-c9acc3d3e306.json
+%%DATADIR%%/metricbeat/module/mysql/_meta/kibana/5/visualization/0f506420-0006-11e7-bf7f-c9acc3d3e306.json
+%%DATADIR%%/metricbeat/module/mysql/_meta/kibana/5/visualization/a2175300-000a-11e7-b001-85aac4878445.json
+%%DATADIR%%/metricbeat/module/mysql/_meta/kibana/5/visualization/1ede99e0-0009-11e7-8cd4-73b67e9e3f3c.json
+%%DATADIR%%/metricbeat/module/mysql/_meta/kibana/5/visualization/1eda2280-0008-11e7-82f3-2f380154876c.json
+%%DATADIR%%/metricbeat/module/mysql/_meta/kibana/6/dashboard/Metricbeat-mysql-overview.json
+%%DATADIR%%/metricbeat/module/mysql/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/mysql/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/mysql/status/_meta/data.json
+%%DATADIR%%/metricbeat/module/mysql/status/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/mysql/status/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/mysql/module.yml
+%%DATADIR%%/metricbeat/module/mysql/galera_status/_meta/data.json
+%%DATADIR%%/metricbeat/module/mysql/galera_status/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/mysql/galera_status/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/ceph/cluster_status/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/ceph/cluster_status/_meta/data.json
+%%DATADIR%%/metricbeat/module/ceph/cluster_status/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/ceph/cluster_health/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/ceph/cluster_health/_meta/data.json
+%%DATADIR%%/metricbeat/module/ceph/cluster_health/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/ceph/monitor_health/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/ceph/monitor_health/_meta/data.json
+%%DATADIR%%/metricbeat/module/ceph/monitor_health/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/ceph/cluster_disk/_meta/data.json
+%%DATADIR%%/metricbeat/module/ceph/cluster_disk/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/ceph/cluster_disk/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/ceph/osd_df/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/ceph/osd_df/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/ceph/osd_df/_meta/data.json
+%%DATADIR%%/metricbeat/module/ceph/osd_tree/_meta/data.json
+%%DATADIR%%/metricbeat/module/ceph/osd_tree/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/ceph/osd_tree/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/ceph/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/ceph/_meta/env
+%%DATADIR%%/metricbeat/module/ceph/_meta/config.reference.yml
+%%DATADIR%%/metricbeat/module/ceph/_meta/Dockerfile
+%%DATADIR%%/metricbeat/module/ceph/_meta/config.yml
+%%DATADIR%%/metricbeat/module/ceph/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/ceph/pool_disk/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/ceph/pool_disk/_meta/data.json
+%%DATADIR%%/metricbeat/module/ceph/pool_disk/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/kibana/status/_meta/data.json
+%%DATADIR%%/metricbeat/module/kibana/status/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/kibana/status/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/kibana/_meta/env
+%%DATADIR%%/metricbeat/module/kibana/_meta/Dockerfile
+%%DATADIR%%/metricbeat/module/kibana/_meta/config.yml
+%%DATADIR%%/metricbeat/module/kibana/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/kibana/_meta/config.reference.yml
+%%DATADIR%%/metricbeat/module/kibana/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/kibana/stats/_meta/data.json
+%%DATADIR%%/metricbeat/module/kibana/stats/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/kibana/stats/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/apache/module.yml
+%%DATADIR%%/metricbeat/module/apache/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/apache/_meta/env
+%%DATADIR%%/metricbeat/module/apache/_meta/Dockerfile.2.4.12
+%%DATADIR%%/metricbeat/module/apache/_meta/Dockerfile
+%%DATADIR%%/metricbeat/module/apache/_meta/kibana/5/visualization/Apache-HTTPD-CPU.json
+%%DATADIR%%/metricbeat/module/apache/_meta/kibana/5/visualization/Apache-HTTPD-Uptime.json
+%%DATADIR%%/metricbeat/module/apache/_meta/kibana/5/visualization/Apache-HTTPD-Hostname-list.json
+%%DATADIR%%/metricbeat/module/apache/_meta/kibana/5/visualization/Apache-HTTPD-Total-accesses-and-kbytes.json
+%%DATADIR%%/metricbeat/module/apache/_meta/kibana/5/visualization/Apache-HTTPD-Workers.json
+%%DATADIR%%/metricbeat/module/apache/_meta/kibana/5/visualization/Apache-HTTPD-Load1-slash-5-slash-15.json
+%%DATADIR%%/metricbeat/module/apache/_meta/kibana/5/visualization/Apache-HTTPD-Scoreboard.json
+%%DATADIR%%/metricbeat/module/apache/_meta/kibana/5/search/Apache-HTTPD.json
+%%DATADIR%%/metricbeat/module/apache/_meta/kibana/5/dashboard/Metricbeat-Apache-HTTPD-server-status.json
+%%DATADIR%%/metricbeat/module/apache/_meta/kibana/6/dashboard/Metricbeat-apache-overview.json
+%%DATADIR%%/metricbeat/module/apache/_meta/config.yml
+%%DATADIR%%/metricbeat/module/apache/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/apache/_meta/httpd.conf
+%%DATADIR%%/metricbeat/module/apache/_meta/config.reference.yml
+%%DATADIR%%/metricbeat/module/apache/status/_meta/data.json
+%%DATADIR%%/metricbeat/module/apache/status/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/apache/status/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/vsphere/virtualmachine/_meta/data.json
+%%DATADIR%%/metricbeat/module/vsphere/virtualmachine/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/vsphere/virtualmachine/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/vsphere/_meta/config.yml
+%%DATADIR%%/metricbeat/module/vsphere/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/vsphere/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/vsphere/_meta/config.reference.yml
+%%DATADIR%%/metricbeat/module/vsphere/_meta/README.md
+%%DATADIR%%/metricbeat/module/vsphere/datastore/_meta/data.json
+%%DATADIR%%/metricbeat/module/vsphere/datastore/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/vsphere/datastore/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/vsphere/host/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/vsphere/host/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/vsphere/host/_meta/data.json
+%%DATADIR%%/metricbeat/module/docker/image/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/docker/image/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/docker/image/_meta/data.json
+%%DATADIR%%/metricbeat/module/docker/memory/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/docker/memory/_meta/data.json
+%%DATADIR%%/metricbeat/module/docker/memory/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/docker/event/_meta/data.json
+%%DATADIR%%/metricbeat/module/docker/event/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/docker/event/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/docker/network/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/docker/network/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/docker/network/_meta/data.json
+%%DATADIR%%/metricbeat/module/docker/healthcheck/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/docker/healthcheck/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/docker/healthcheck/_meta/data.json
+%%DATADIR%%/metricbeat/module/docker/_meta/kibana/5/visualization/Docker-Network-IO.json
+%%DATADIR%%/metricbeat/module/docker/_meta/kibana/5/visualization/Docker-CPU-usage.json
+%%DATADIR%%/metricbeat/module/docker/_meta/kibana/5/visualization/Docker-memory-usage.json
+%%DATADIR%%/metricbeat/module/docker/_meta/kibana/5/visualization/Docker-containers.json
+%%DATADIR%%/metricbeat/module/docker/_meta/kibana/5/visualization/Docker-images-and-names.json
+%%DATADIR%%/metricbeat/module/docker/_meta/kibana/5/visualization/Docker-containers-per-host.json
+%%DATADIR%%/metricbeat/module/docker/_meta/kibana/5/visualization/Docker-Number-of-Containers.json
+%%DATADIR%%/metricbeat/module/docker/_meta/kibana/5/dashboard/Metricbeat-Docker.json
+%%DATADIR%%/metricbeat/module/docker/_meta/kibana/5/search/Metricbeat-Docker.json
+%%DATADIR%%/metricbeat/module/docker/_meta/kibana/6/dashboard/Metricbeat-docker-overview.json
+%%DATADIR%%/metricbeat/module/docker/_meta/config.yml
+%%DATADIR%%/metricbeat/module/docker/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/docker/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/docker/_meta/config.reference.yml
+%%DATADIR%%/metricbeat/module/docker/module.yml
+%%DATADIR%%/metricbeat/module/docker/container/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/docker/container/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/docker/container/_meta/data.json
+%%DATADIR%%/metricbeat/module/docker/cpu/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/docker/cpu/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/docker/cpu/_meta/data.json
+%%DATADIR%%/metricbeat/module/docker/info/_meta/data.json
+%%DATADIR%%/metricbeat/module/docker/info/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/docker/info/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/docker/diskio/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/docker/diskio/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/docker/diskio/_meta/data.json
+%%DATADIR%%/metricbeat/module/kvm/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/kvm/_meta/config.reference.yml
+%%DATADIR%%/metricbeat/module/kvm/_meta/config.yml
+%%DATADIR%%/metricbeat/module/kvm/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/kvm/dommemstat/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/kvm/dommemstat/_meta/data.json
+%%DATADIR%%/metricbeat/module/kvm/dommemstat/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/munin/node/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/munin/node/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/munin/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/munin/_meta/munin-node.conf
+%%DATADIR%%/metricbeat/module/munin/_meta/config.reference.yml
+%%DATADIR%%/metricbeat/module/munin/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/munin/_meta/env
+%%DATADIR%%/metricbeat/module/munin/_meta/config.yml
+%%DATADIR%%/metricbeat/module/munin/_meta/Dockerfile
+%%DATADIR%%/metricbeat/module/envoyproxy/server/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/envoyproxy/server/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/envoyproxy/server/_meta/data.json
+%%DATADIR%%/metricbeat/module/envoyproxy/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/envoyproxy/_meta/envoy.json
+%%DATADIR%%/metricbeat/module/envoyproxy/_meta/config.reference.yml
+%%DATADIR%%/metricbeat/module/envoyproxy/_meta/config.yml
+%%DATADIR%%/metricbeat/module/envoyproxy/_meta/Dockerfile
+%%DATADIR%%/metricbeat/module/envoyproxy/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/envoyproxy/_meta/env
+%%DATADIR%%/metricbeat/module/golang/module.yml
+%%DATADIR%%/metricbeat/module/golang/expvar/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/golang/expvar/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/golang/heap/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/golang/heap/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/golang/heap/_meta/data.json
+%%DATADIR%%/metricbeat/module/golang/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/golang/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/golang/_meta/kibana/6/dashboard/Metricbeat-golang-overview.json
+%%DATADIR%%/metricbeat/module/golang/_meta/kibana/5/dashboard/f2dc7320-f519-11e6-a3c9-9d1f7c42b045.json
+%%DATADIR%%/metricbeat/module/golang/_meta/kibana/5/visualization/b046cb80-f52a-11e6-969c-518c48c913e4.json
+%%DATADIR%%/metricbeat/module/golang/_meta/kibana/5/visualization/ab226b50-f52a-11e6-969c-518c48c913e4.json
+%%DATADIR%%/metricbeat/module/golang/_meta/kibana/5/visualization/b59a5200-f52a-11e6-969c-518c48c913e4.json
+%%DATADIR%%/metricbeat/module/golang/_meta/kibana/5/visualization/95388680-f52a-11e6-969c-518c48c913e4.json
+%%DATADIR%%/metricbeat/module/golang/_meta/kibana/5/visualization/9a9a8bf0-f52a-11e6-969c-518c48c913e4.json
+%%DATADIR%%/metricbeat/module/golang/_meta/kibana/5/visualization/58000780-f529-11e6-844d-b170e2f0a07e.json
+%%DATADIR%%/metricbeat/module/golang/_meta/config.yml
+%%DATADIR%%/metricbeat/module/elasticsearch/ml_job/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/elasticsearch/ml_job/_meta/data.json
+%%DATADIR%%/metricbeat/module/elasticsearch/ml_job/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/elasticsearch/shard/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/elasticsearch/shard/_meta/data-xpack.json
+%%DATADIR%%/metricbeat/module/elasticsearch/shard/_meta/data.json
+%%DATADIR%%/metricbeat/module/elasticsearch/shard/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/elasticsearch/index/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/elasticsearch/index/_meta/data.json
+%%DATADIR%%/metricbeat/module/elasticsearch/index/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/elasticsearch/index_recovery/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/elasticsearch/index_recovery/_meta/data.json
+%%DATADIR%%/metricbeat/module/elasticsearch/index_recovery/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/elasticsearch/ccr/_meta/data.json
+%%DATADIR%%/metricbeat/module/elasticsearch/ccr/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/elasticsearch/ccr/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/elasticsearch/node_stats/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/elasticsearch/node_stats/_meta/data-xpack.json
+%%DATADIR%%/metricbeat/module/elasticsearch/node_stats/_meta/data.json
+%%DATADIR%%/metricbeat/module/elasticsearch/node_stats/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/elasticsearch/_meta/Dockerfile
+%%DATADIR%%/metricbeat/module/elasticsearch/_meta/config.yml
+%%DATADIR%%/metricbeat/module/elasticsearch/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/elasticsearch/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/elasticsearch/_meta/config.reference.yml
+%%DATADIR%%/metricbeat/module/elasticsearch/_meta/env
+%%DATADIR%%/metricbeat/module/elasticsearch/index_summary/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/elasticsearch/index_summary/_meta/data.json
+%%DATADIR%%/metricbeat/module/elasticsearch/index_summary/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/elasticsearch/index_summary/_meta/data-xpack.json
+%%DATADIR%%/metricbeat/module/elasticsearch/node/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/elasticsearch/node/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/elasticsearch/node/_meta/data.json
+%%DATADIR%%/metricbeat/module/elasticsearch/pending_tasks/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/elasticsearch/pending_tasks/_meta/data.json
+%%DATADIR%%/metricbeat/module/elasticsearch/pending_tasks/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/elasticsearch/cluster_stats/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/elasticsearch/cluster_stats/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/elasticsearch/cluster_stats/_meta/data.json
+%%DATADIR%%/metricbeat/module/zookeeper/mntr/_meta/data.json
+%%DATADIR%%/metricbeat/module/zookeeper/mntr/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/zookeeper/mntr/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/zookeeper/server/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/zookeeper/server/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/zookeeper/server/_meta/data.json
+%%DATADIR%%/metricbeat/module/zookeeper/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/zookeeper/_meta/env
+%%DATADIR%%/metricbeat/module/zookeeper/_meta/config.yml
+%%DATADIR%%/metricbeat/module/zookeeper/_meta/Dockerfile
+%%DATADIR%%/metricbeat/module/zookeeper/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/zookeeper/_meta/config.reference.yml
+%%DATADIR%%/metricbeat/module/zookeeper/_meta/kibana/6/dashboard/Metricbeat-zookeeper-overview.json
+%%DATADIR%%/metricbeat/module/kafka/_meta/run.sh
+%%DATADIR%%/metricbeat/module/kafka/_meta/config.reference.yml
+%%DATADIR%%/metricbeat/module/kafka/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/kafka/_meta/config.yml
+%%DATADIR%%/metricbeat/module/kafka/_meta/Dockerfile
+%%DATADIR%%/metricbeat/module/kafka/_meta/healthcheck.sh
+%%DATADIR%%/metricbeat/module/kafka/_meta/env
+%%DATADIR%%/metricbeat/module/kafka/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/kafka/_meta/kibana/6/dashboard/Metricbeat-kafka-overview.json
+%%DATADIR%%/metricbeat/module/kafka/partition/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/kafka/partition/_meta/data.json
+%%DATADIR%%/metricbeat/module/kafka/partition/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/kafka/consumergroup/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/kafka/consumergroup/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/kafka/consumergroup/_meta/data.json
+%%DATADIR%%/metricbeat/module/http/_meta/env
+%%DATADIR%%/metricbeat/module/http/_meta/Dockerfile
+%%DATADIR%%/metricbeat/module/http/_meta/config.yml
+%%DATADIR%%/metricbeat/module/http/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/http/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/http/json/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/http/json/_meta/data.json
+%%DATADIR%%/metricbeat/module/http/json/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/http/server/_meta/data.json
+%%DATADIR%%/metricbeat/module/http/server/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/http/server/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/mongodb/module.yml
+%%DATADIR%%/metricbeat/module/mongodb/dbstats/_meta/data.json
+%%DATADIR%%/metricbeat/module/mongodb/dbstats/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/mongodb/dbstats/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/mongodb/_meta/config.reference.yml
+%%DATADIR%%/metricbeat/module/mongodb/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/mongodb/_meta/Dockerfile
+%%DATADIR%%/metricbeat/module/mongodb/_meta/config.yml
+%%DATADIR%%/metricbeat/module/mongodb/_meta/env
+%%DATADIR%%/metricbeat/module/mongodb/_meta/kibana/5/dashboard/Metricbeat-MongoDB.json
+%%DATADIR%%/metricbeat/module/mongodb/_meta/kibana/5/visualization/MongoDB-Concurrent-transactions-Write.json
+%%DATADIR%%/metricbeat/module/mongodb/_meta/kibana/5/visualization/MongoDB-Engine-ampersand-Version.json
+%%DATADIR%%/metricbeat/module/mongodb/_meta/kibana/5/visualization/MongoDB-asserts.json
+%%DATADIR%%/metricbeat/module/mongodb/_meta/kibana/5/visualization/MongoDB-operation-counters.json
+%%DATADIR%%/metricbeat/module/mongodb/_meta/kibana/5/visualization/MongoDB-Concurrent-transactions-Read.json
+%%DATADIR%%/metricbeat/module/mongodb/_meta/kibana/5/visualization/MongoDB-WiredTiger-Cache.json
+%%DATADIR%%/metricbeat/module/mongodb/_meta/kibana/5/visualization/MongoDB-memory-stats.json
+%%DATADIR%%/metricbeat/module/mongodb/_meta/kibana/5/visualization/MongoDB-hosts.json
+%%DATADIR%%/metricbeat/module/mongodb/_meta/kibana/5/search/MongoDB-search.json
+%%DATADIR%%/metricbeat/module/mongodb/_meta/kibana/6/dashboard/Metricbeat-mongodb-overview.json
+%%DATADIR%%/metricbeat/module/mongodb/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/mongodb/metrics/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/mongodb/metrics/_meta/data.json
+%%DATADIR%%/metricbeat/module/mongodb/metrics/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/mongodb/replstatus/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/mongodb/replstatus/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/mongodb/replstatus/_meta/data.json
+%%DATADIR%%/metricbeat/module/mongodb/status/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/mongodb/status/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/mongodb/status/_meta/data.json
+%%DATADIR%%/metricbeat/module/mongodb/collstats/_meta/docs.asciidoc
+%%DATADIR%%/metricbeat/module/mongodb/collstats/_meta/fields.yml
+%%DATADIR%%/metricbeat/module/mongodb/collstats/_meta/data.json
+%%DATADIR%%/filebeat/module/iis/_meta/config.yml
+%%DATADIR%%/filebeat/module/iis/_meta/config.reference.yml
+%%DATADIR%%/filebeat/module/iis/_meta/docs.asciidoc
+%%DATADIR%%/filebeat/module/iis/_meta/kibana/6/dashboard/Filebeat-iis.json
+%%DATADIR%%/filebeat/module/iis/_meta/fields.yml
+%%DATADIR%%/filebeat/module/iis/error/manifest.yml
+%%DATADIR%%/filebeat/module/iis/error/config/iis-error.yml
+%%DATADIR%%/filebeat/module/iis/error/_meta/fields.yml
+%%DATADIR%%/filebeat/module/iis/error/ingest/default.json
+%%DATADIR%%/filebeat/module/iis/access/manifest.yml
+%%DATADIR%%/filebeat/module/iis/access/config/iis-access.yml
+%%DATADIR%%/filebeat/module/iis/access/_meta/fields.yml
+%%DATADIR%%/filebeat/module/iis/access/ingest/default.json
+%%DATADIR%%/filebeat/module/auditd/_meta/kibana/5/visualization/6295bdd0-0a0e-11e7-825f-6748cda7d858.json
+%%DATADIR%%/filebeat/module/auditd/_meta/kibana/5/visualization/d1726930-0a7f-11e7-8b04-eb22a5669f27.json
+%%DATADIR%%/filebeat/module/auditd/_meta/kibana/5/visualization/2bb0fa70-0a11-11e7-9e84-43da493ad0c7.json
+%%DATADIR%%/filebeat/module/auditd/_meta/kibana/5/visualization/c5411910-0a87-11e7-8b04-eb22a5669f27.json
+%%DATADIR%%/filebeat/module/auditd/_meta/kibana/5/visualization/5ebdbe50-0a0f-11e7-825f-6748cda7d858.json
+%%DATADIR%%/filebeat/module/auditd/_meta/kibana/5/dashboard/dfbb49f0-0a0f-11e7-8a62-2d05eaaac5cb.json
+%%DATADIR%%/filebeat/module/auditd/_meta/kibana/5/search/4ac0a370-0a11-11e7-8b04-eb22a5669f27.json
+%%DATADIR%%/filebeat/module/auditd/_meta/kibana/6/dashboard/Filebeat-auditd.json
+%%DATADIR%%/filebeat/module/auditd/_meta/config.reference.yml
+%%DATADIR%%/filebeat/module/auditd/_meta/fields.yml
+%%DATADIR%%/filebeat/module/auditd/_meta/docs.asciidoc
+%%DATADIR%%/filebeat/module/auditd/_meta/config.yml
+%%DATADIR%%/filebeat/module/auditd/module.yml
+%%DATADIR%%/filebeat/module/auditd/log/ingest/pipeline.json
+%%DATADIR%%/filebeat/module/auditd/log/_meta/fields.yml
+%%DATADIR%%/filebeat/module/auditd/log/manifest.yml
+%%DATADIR%%/filebeat/module/auditd/log/config/log.yml
+%%DATADIR%%/filebeat/module/nginx/module.yml
+%%DATADIR%%/filebeat/module/nginx/access/ingest/default.json
+%%DATADIR%%/filebeat/module/nginx/access/manifest.yml
+%%DATADIR%%/filebeat/module/nginx/access/config/nginx-access.yml
+%%DATADIR%%/filebeat/module/nginx/access/_meta/fields.yml
+%%DATADIR%%/filebeat/module/nginx/access/machine_learning/remote_ip_request_rate.json
+%%DATADIR%%/filebeat/module/nginx/access/machine_learning/remote_ip_url_count.json
+%%DATADIR%%/filebeat/module/nginx/access/machine_learning/datafeed_low_request_rate.json
+%%DATADIR%%/filebeat/module/nginx/access/machine_learning/low_request_rate.json
+%%DATADIR%%/filebeat/module/nginx/access/machine_learning/datafeed_remote_ip_request_rate.json
+%%DATADIR%%/filebeat/module/nginx/access/machine_learning/datafeed_remote_ip_url_count.json
+%%DATADIR%%/filebeat/module/nginx/access/machine_learning/visitor_rate.json
+%%DATADIR%%/filebeat/module/nginx/access/machine_learning/response_code.json
+%%DATADIR%%/filebeat/module/nginx/access/machine_learning/datafeed_visitor_rate.json
+%%DATADIR%%/filebeat/module/nginx/access/machine_learning/datafeed_response_code.json
+%%DATADIR%%/filebeat/module/nginx/_meta/config.yml
+%%DATADIR%%/filebeat/module/nginx/_meta/config.reference.yml
+%%DATADIR%%/filebeat/module/nginx/_meta/fields.yml
+%%DATADIR%%/filebeat/module/nginx/_meta/kibana/5/search/Filebeat-Nginx-module.json
+%%DATADIR%%/filebeat/module/nginx/_meta/kibana/5/search/ML-Filebeat-Nginx-Access.json
+%%DATADIR%%/filebeat/module/nginx/_meta/kibana/5/visualization/ML-Nginx-Access-Top-Remote-IPs-Table.json
+%%DATADIR%%/filebeat/module/nginx/_meta/kibana/5/visualization/Errors-over-time.json
+%%DATADIR%%/filebeat/module/nginx/_meta/kibana/5/visualization/Nginx-Access-Response-codes-by-top-URLs.json
+%%DATADIR%%/filebeat/module/nginx/_meta/kibana/5/visualization/Nginx-Access-Map.json
+%%DATADIR%%/filebeat/module/nginx/_meta/kibana/5/visualization/ML-Nginx-Access-Top-URLs-Table.json
+%%DATADIR%%/filebeat/module/nginx/_meta/kibana/5/visualization/New-Visualization.json
+%%DATADIR%%/filebeat/module/nginx/_meta/kibana/5/visualization/Sent-sizes.json
+%%DATADIR%%/filebeat/module/nginx/_meta/kibana/5/visualization/ML-Nginx-Access-Unique-Count-URL-Timechart.json
+%%DATADIR%%/filebeat/module/nginx/_meta/kibana/5/visualization/ML-Nginx-Access-Map.json
+%%DATADIR%%/filebeat/module/nginx/_meta/kibana/5/visualization/Nginx-Access-Browsers.json
+%%DATADIR%%/filebeat/module/nginx/_meta/kibana/5/visualization/ML-Nginx-Access-Response-Code-Timechart.json
+%%DATADIR%%/filebeat/module/nginx/_meta/kibana/5/visualization/ML-Nginx-Access-Remote-IP-Timechart.json
+%%DATADIR%%/filebeat/module/nginx/_meta/kibana/5/visualization/Nginx-Access-OSes.json
+%%DATADIR%%/filebeat/module/nginx/_meta/kibana/5/dashboard/ML-Nginx-Access-Remote-IP-Count-Explorer.json
+%%DATADIR%%/filebeat/module/nginx/_meta/kibana/5/dashboard/Filebeat-Nginx-Dashboard.json
+%%DATADIR%%/filebeat/module/nginx/_meta/kibana/5/dashboard/ML-Nginx-Remote-IP-URL-Explorer.json
+%%DATADIR%%/filebeat/module/nginx/_meta/kibana/6/dashboard/Filebeat-nginx-overview.json
+%%DATADIR%%/filebeat/module/nginx/_meta/kibana/6/dashboard/ml-nginx-remote-ip-url-explorer.json
+%%DATADIR%%/filebeat/module/nginx/_meta/kibana/6/dashboard/Filebeat-nginx-logs.json
+%%DATADIR%%/filebeat/module/nginx/_meta/kibana/6/dashboard/ml-nginx-access-remote-ip-count-explorer.json
+%%DATADIR%%/filebeat/module/nginx/_meta/docs.asciidoc
+%%DATADIR%%/filebeat/module/nginx/error/ingest/pipeline.json
+%%DATADIR%%/filebeat/module/nginx/error/manifest.yml
+%%DATADIR%%/filebeat/module/nginx/error/_meta/fields.yml
+%%DATADIR%%/filebeat/module/nginx/error/config/nginx-error.yml
+%%DATADIR%%/filebeat/module/redis/slowlog/ingest/pipeline.json
+%%DATADIR%%/filebeat/module/redis/slowlog/manifest.yml
+%%DATADIR%%/filebeat/module/redis/slowlog/_meta/fields.yml
+%%DATADIR%%/filebeat/module/redis/slowlog/config/slowlog.yml
+%%DATADIR%%/filebeat/module/redis/log/manifest.yml
+%%DATADIR%%/filebeat/module/redis/log/ingest/pipeline.json
+%%DATADIR%%/filebeat/module/redis/log/config/log.yml
+%%DATADIR%%/filebeat/module/redis/log/_meta/fields.yml

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***


More information about the svn-ports-head mailing list