Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 9 Mar 2016 17:03:10 +0000 (UTC)
From:      Dan Langille <dvl@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r410709 - in head/textproc: . elasticsearch-plugin-marvel2
Message-ID:  <201603091703.u29H3AKM088242@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dvl
Date: Wed Mar  9 17:03:10 2016
New Revision: 410709
URL: https://svnweb.freebsd.org/changeset/ports/410709

Log:
  Add Marvel 2, an Elasticsearch monitoring plugin

Added:
  head/textproc/elasticsearch-plugin-marvel2/
     - copied from r410706, head/textproc/elasticsearch-plugin-marvel/
Modified:
  head/textproc/Makefile
  head/textproc/elasticsearch-plugin-marvel2/Makefile
  head/textproc/elasticsearch-plugin-marvel2/distinfo
  head/textproc/elasticsearch-plugin-marvel2/pkg-plist

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Wed Mar  9 16:59:18 2016	(r410708)
+++ head/textproc/Makefile	Wed Mar  9 17:03:10 2016	(r410709)
@@ -156,6 +156,7 @@
     SUBDIR += elasticsearch-plugin-head
     SUBDIR += elasticsearch-plugin-hq
     SUBDIR += elasticsearch-plugin-marvel
+    SUBDIR += elasticsearch-plugin-marvel2
     SUBDIR += elasticsearch-plugin-sql
     SUBDIR += elasticsearch-river-rabbitmq
     SUBDIR += elasticsearch2
@@ -1216,10 +1217,10 @@
     SUBDIR += py-chardet
     SUBDIR += py-cloud_sptheme
     SUBDIR += py-creole
-    SUBDIR += py-curator
     SUBDIR += py-diff-match-patch
     SUBDIR += py-docutils
     SUBDIR += py-dsv
+    SUBDIR += py-elasticsearch-curator
     SUBDIR += py-elasticsearch-dsl-py
     SUBDIR += py-elasticsearch-py
     SUBDIR += py-elib.intl

Modified: head/textproc/elasticsearch-plugin-marvel2/Makefile
==============================================================================
--- head/textproc/elasticsearch-plugin-marvel/Makefile	Wed Mar  9 16:44:37 2016	(r410706)
+++ head/textproc/elasticsearch-plugin-marvel2/Makefile	Wed Mar  9 17:03:10 2016	(r410709)
@@ -2,12 +2,15 @@
 # $FreeBSD$
 
 PORTNAME=	marvel
-PORTVERSION=	1.3.1
+PORTVERSION=	2.1.0
 CATEGORIES=	textproc perl5
-MASTER_SITES=	http://download.elasticsearch.org/elasticsearch/marvel/
-PKGNAMEPREFIX=	elasticsearch-plugin-
+MASTER_SITES=	http://download.elastic.co/elasticsearch/release/org/elasticsearch/plugin/license/${PORTVERSION}/:source1 \
+		http://download.elastic.co/elasticsearch/release/org/elasticsearch/plugin/marvel-agent/${PORTVERSION}/:source2
+PKGNAMEPREFIX=	elasticsearch-plugin
+DISTFILES=	license-${DISTVERSIONPREFIX}${DISTVERSION}${DISTVERSIONSUFFIX}${EXTRACT_SUFX}:source1 \
+		marvel-agent-${DISTVERSIONPREFIX}${DISTVERSION}${DISTVERSIONSUFFIX}${EXTRACT_SUFX}:source2
 
-MAINTAINER=	ports@FreeBSD.org
+MAINTAINER=	dvl@FreeBSD.org
 COMMENT=	ElasticSearch Marvel Monitoring Plugin
 
 LICENSE=	COMMERCIAL
@@ -16,19 +19,28 @@ LICENSE_TEXT=	License available from Ela
 LICENSE_TEXT+=	See http://www.elasticsearch.com/marvel/ for more details.
 LICENSE_PERMS=	dist-mirror dist-sell pkg-mirror pkg-sell no-auto-accept
 
-RUN_DEPENDS:=	elasticsearch>=0.90.9:${PORTSDIR}/textproc/elasticsearch
+RUN_DEPENDS:=	elasticsearch2>2.0.0:${PORTSDIR}/textproc/elasticsearch2
 
 NO_BUILD=	yes
 LEGAL_TEXT=	${LICENSE_NAME_COMMERCIAL}
 PLIST_SUB=	VERSION=${PORTVERSION}
 
+USES+=		zip
+
+ZIP_FILES=	license \
+	marvel-agent
+
 do-extract:
 	@${MKDIR} ${WRKSRC}
-	( cd ${WRKSRC} && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} ${EXTRACT_AFTER_ARGS} )
+.for file in ${ZIP_FILES}
+	( cd ${WRKDIR} && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} -d ${file}-${PORTVERSION} \
+	      ${_DISTDIR}/${file}-${DISTVERSIONPREFIX}${DISTVERSION}${DISTVERSIONSUFFIX}${EXTRACT_SUFX} )
+.endfor
 
 do-install:
-	@${MKDIR} ${STAGEDIR}${PREFIX}/lib/elasticsearch/plugins/marvel
-	@cd ${WRKSRC} && ${COPYTREE_SHARE} _site ${STAGEDIR}${PREFIX}/lib/elasticsearch/plugins/marvel
-	@cd ${WRKSRC} && ${INSTALL_DATA} marvel-${PORTVERSION}.jar ${STAGEDIR}${PREFIX}/lib/elasticsearch/plugins/marvel
+.for file in ${ZIP_FILES}
+	@${MKDIR} ${STAGEDIR}${PREFIX}/lib/elasticsearch/plugins/${file}
+	@cd ${WRKDIR}/${file}-${PORTVERSION} && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/lib/elasticsearch/plugins/${file}
+.endfor
 
 .include <bsd.port.mk>

Modified: head/textproc/elasticsearch-plugin-marvel2/distinfo
==============================================================================
--- head/textproc/elasticsearch-plugin-marvel/distinfo	Wed Mar  9 16:44:37 2016	(r410706)
+++ head/textproc/elasticsearch-plugin-marvel2/distinfo	Wed Mar  9 17:03:10 2016	(r410709)
@@ -1,2 +1,4 @@
-SHA256 (marvel-1.3.1.tar.gz) = c4b58e91fd66a5ba0c24611e71770684c3810208d3bf9e6d85a88a27436adbed
-SIZE (marvel-1.3.1.tar.gz) = 3904425
+SHA256 (license-2.1.0.zip) = 7705f011c1027be520143f834031f79f15e3c378924f7a05a934e413c31937af
+SIZE (license-2.1.0.zip) = 102034
+SHA256 (marvel-agent-2.1.0.zip) = f9d118c67255d762b5692813dad3fa098bb16cc465dbf857898a794a43732caa
+SIZE (marvel-agent-2.1.0.zip) = 153231

Modified: head/textproc/elasticsearch-plugin-marvel2/pkg-plist
==============================================================================
--- head/textproc/elasticsearch-plugin-marvel/pkg-plist	Wed Mar  9 16:44:37 2016	(r410706)
+++ head/textproc/elasticsearch-plugin-marvel2/pkg-plist	Wed Mar  9 17:03:10 2016	(r410709)
@@ -1,256 +1,10 @@
-lib/elasticsearch/plugins/marvel/_site/common/marvelLinks.json
-lib/elasticsearch/plugins/marvel/_site/index.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/app.js
-lib/elasticsearch/plugins/marvel/_site/kibana/app/components/require.config.js
-lib/elasticsearch/plugins/marvel/_site/kibana/app/dashboards/blank.json
-lib/elasticsearch/plugins/marvel/_site/kibana/app/dashboards/default.json
-lib/elasticsearch/plugins/marvel/_site/kibana/app/dashboards/guided.json
-lib/elasticsearch/plugins/marvel/_site/kibana/app/dashboards/logstash.js
-lib/elasticsearch/plugins/marvel/_site/kibana/app/dashboards/logstash.json
-lib/elasticsearch/plugins/marvel/_site/kibana/app/dashboards/marvel/cluster_pulse.json
-lib/elasticsearch/plugins/marvel/_site/kibana/app/dashboards/marvel/indices_stats.js
-lib/elasticsearch/plugins/marvel/_site/kibana/app/dashboards/marvel/nodes_stats.js
-lib/elasticsearch/plugins/marvel/_site/kibana/app/dashboards/marvel/overview.json
-lib/elasticsearch/plugins/marvel/_site/kibana/app/dashboards/marvel/shard_allocation.json
-lib/elasticsearch/plugins/marvel/_site/kibana/app/dashboards/marvel/shards.json
-lib/elasticsearch/plugins/marvel/_site/kibana/app/dashboards/noted.json
-lib/elasticsearch/plugins/marvel/_site/kibana/app/lib/fakeState.js
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/bettermap/editor.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/bettermap/leaflet/images/layers-2x.png
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/bettermap/leaflet/images/layers.png
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/bettermap/leaflet/images/marker-icon-2x.png
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/bettermap/leaflet/images/marker-icon.png
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/bettermap/leaflet/images/marker-shadow.png
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/bettermap/leaflet/leaflet.css
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/bettermap/leaflet/leaflet.ie.css
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/bettermap/leaflet/leaflet.js
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/bettermap/leaflet/plugins.css
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/bettermap/leaflet/plugins.js
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/bettermap/module.css
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/bettermap/module.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/bettermap/module.js
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/column/editor.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/column/module.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/column/module.js
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/column/panelgeneral.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/dashcontrol/editor.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/dashcontrol/module.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/dashcontrol/module.js
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/derivequeries/editor.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/derivequeries/module.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/derivequeries/module.js
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/fields/editor.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/fields/micropanel.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/fields/module.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/fields/module.js
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/filtering/editor.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/filtering/meta.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/filtering/module.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/filtering/module.js
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/goal/editor.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/goal/module.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/goal/module.js
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/histogram/editor.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/histogram/module.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/histogram/module.js
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/histogram/queriesEditor.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/histogram/styleEditor.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/hits/editor.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/hits/module.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/hits/module.js
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/map/editor.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/map/lib/map.europe.js
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/map/lib/map.usa.js
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/map/lib/map.world.js
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/map/module.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/map/module.js
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/marvel/cluster/editor.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/marvel/cluster/module.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/marvel/cluster/module.js
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/marvel/navigation/module.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/marvel/navigation/module.js
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/marvel/registration/directives/purchase_confirmation.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/marvel/registration/directives/registration.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/marvel/registration/editor.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/marvel/registration/module.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/marvel/registration/module.js
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/marvel/registration/optin.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/marvel/registration/register.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/marvel/registration/sysadmin.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/marvel/save/editor.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/marvel/save/module.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/marvel/save/module.js
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/marvel/shard_allocation/css/lesshat.css
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/marvel/shard_allocation/css/style.css
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/marvel/shard_allocation/directives/shardGroups.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/marvel/shard_allocation/editor.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/marvel/shard_allocation/module.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/marvel/shard_allocation/module.js
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/marvel/stats_table/editor.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/marvel/stats_table/module.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/marvel/stats_table/module.js
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/query/editor.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/query/editors/lucene.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/query/editors/regex.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/query/editors/topN.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/query/help/lucene.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/query/help/regex.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/query/help/topN.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/query/helpModal.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/query/meta.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/query/module.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/query/module.js
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/query/query.css
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/sparklines/editor.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/sparklines/module.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/sparklines/module.js
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/stats/editor.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/stats/module.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/stats/module.js
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/table/editor.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/table/micropanel.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/table/modal.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/table/module.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/table/module.js
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/table/pagination.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/terms/editor.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/terms/module.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/terms/module.js
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/text/editor.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/text/module.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/text/module.js
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/timepicker/custom.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/timepicker/editor.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/timepicker/module.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/timepicker/module.js
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/timepicker/refreshctrl.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/trends/editor.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/trends/module.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/panels/trends/module.js
-lib/elasticsearch/plugins/marvel/_site/kibana/app/partials/connectionFailed.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/partials/dashLoader.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/partials/dashLoaderShare.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/partials/dashboard.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/partials/dasheditor.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/partials/inspector.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/partials/load.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/partials/modal.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/partials/paneladd.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/partials/paneleditor.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/partials/panelgeneral.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/partials/querySelect.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/partials/roweditor.html
-lib/elasticsearch/plugins/marvel/_site/kibana/app/services/marvel/clusterState.js
-lib/elasticsearch/plugins/marvel/_site/kibana/build.txt
-lib/elasticsearch/plugins/marvel/_site/kibana/config.js
-lib/elasticsearch/plugins/marvel/_site/kibana/css/animate.min.css
-lib/elasticsearch/plugins/marvel/_site/kibana/css/bootstrap-responsive.min.css
-lib/elasticsearch/plugins/marvel/_site/kibana/css/bootstrap.dark.less
-lib/elasticsearch/plugins/marvel/_site/kibana/css/bootstrap.dark.min.css
-lib/elasticsearch/plugins/marvel/_site/kibana/css/bootstrap.light.less
-lib/elasticsearch/plugins/marvel/_site/kibana/css/bootstrap.light.min.css
-lib/elasticsearch/plugins/marvel/_site/kibana/css/font-awesome.min.css
-lib/elasticsearch/plugins/marvel/_site/kibana/css/normalize.min.css
-lib/elasticsearch/plugins/marvel/_site/kibana/css/timepicker.css
-lib/elasticsearch/plugins/marvel/_site/kibana/favicon.ico
-lib/elasticsearch/plugins/marvel/_site/kibana/font/FontAwesome.otf
-lib/elasticsearch/plugins/marvel/_site/kibana/font/fontawesome-webfont.eot
-lib/elasticsearch/plugins/marvel/_site/kibana/font/fontawesome-webfont.svg
-lib/elasticsearch/plugins/marvel/_site/kibana/font/fontawesome-webfont.ttf
-lib/elasticsearch/plugins/marvel/_site/kibana/font/fontawesome-webfont.woff
-lib/elasticsearch/plugins/marvel/_site/kibana/img/annotation-icon.png
-lib/elasticsearch/plugins/marvel/_site/kibana/img/cubes.png
-lib/elasticsearch/plugins/marvel/_site/kibana/img/glyphicons-halflings-white.png
-lib/elasticsearch/plugins/marvel/_site/kibana/img/glyphicons-halflings.png
-lib/elasticsearch/plugins/marvel/_site/kibana/img/kibana.png
-lib/elasticsearch/plugins/marvel/_site/kibana/img/light.png
-lib/elasticsearch/plugins/marvel/_site/kibana/img/load.gif
-lib/elasticsearch/plugins/marvel/_site/kibana/img/load_big.gif
-lib/elasticsearch/plugins/marvel/_site/kibana/img/small.png
-lib/elasticsearch/plugins/marvel/_site/kibana/index.html
-lib/elasticsearch/plugins/marvel/_site/kibana/vendor/LICENSE.json
-lib/elasticsearch/plugins/marvel/_site/kibana/vendor/bootstrap/less/tests/buttons.html
-lib/elasticsearch/plugins/marvel/_site/kibana/vendor/bootstrap/less/tests/css-tests.css
-lib/elasticsearch/plugins/marvel/_site/kibana/vendor/bootstrap/less/tests/css-tests.html
-lib/elasticsearch/plugins/marvel/_site/kibana/vendor/bootstrap/less/tests/forms-responsive.html
-lib/elasticsearch/plugins/marvel/_site/kibana/vendor/bootstrap/less/tests/forms.html
-lib/elasticsearch/plugins/marvel/_site/kibana/vendor/bootstrap/less/tests/navbar-fixed-top.html
-lib/elasticsearch/plugins/marvel/_site/kibana/vendor/bootstrap/less/tests/navbar-static-top.html
-lib/elasticsearch/plugins/marvel/_site/kibana/vendor/bootstrap/less/tests/navbar.html
-lib/elasticsearch/plugins/marvel/_site/kibana/vendor/require/css-build.js
-lib/elasticsearch/plugins/marvel/_site/kibana/vendor/require/require.js
-lib/elasticsearch/plugins/marvel/_site/kibana/vendor/require/tmpl.js
-lib/elasticsearch/plugins/marvel/_site/kibana/vendor/timezone.js
-lib/elasticsearch/plugins/marvel/_site/sense/README.md
-lib/elasticsearch/plugins/marvel/_site/sense/app/app.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/autocomplete/json_rule_walker.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_0_90.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_0_90/aliases.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_0_90/cluster.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_0_90/count.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_0_90/document.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_0_90/facets.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_0_90/filter.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_0_90/globals.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_0_90/indices.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_0_90/mappings.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_0_90/misc.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_0_90/nodes.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_0_90/query.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_0_90/search.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_0_90/settings.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_0_90/templates.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_0_90/warmers.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_1_0.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_1_0/aggregations.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_1_0/aliases.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_1_0/cat.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_1_0/cluster.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_1_0/count.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_1_0/document.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_1_0/facets.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_1_0/filter.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_1_0/globals.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_1_0/indices.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_1_0/mappings.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_1_0/misc.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_1_0/nodes.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_1_0/percolator.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_1_0/query.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_1_0/search.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_1_0/settings.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_1_0/snapshot_restore.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_1_0/templates.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/kb/api_1_0/warmers.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/require.config.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/sense_editor/mode/worker.js
-lib/elasticsearch/plugins/marvel/_site/sense/app/welcome_popup.js
-lib/elasticsearch/plugins/marvel/_site/sense/build.txt
-lib/elasticsearch/plugins/marvel/_site/sense/css/sense.css
-lib/elasticsearch/plugins/marvel/_site/sense/css/sense.dark.css
-lib/elasticsearch/plugins/marvel/_site/sense/css/sense.light.css
-lib/elasticsearch/plugins/marvel/_site/sense/favicon.ico
-lib/elasticsearch/plugins/marvel/_site/sense/index.html
-lib/elasticsearch/plugins/marvel/_site/sense/vendor/ace/ace.js
-lib/elasticsearch/plugins/marvel/_site/sense/vendor/ace/mode-yaml.js
-lib/elasticsearch/plugins/marvel/_site/sense/vendor/ace/worker-json.js
-lib/elasticsearch/plugins/marvel/_site/sense/vendor/bootstrap/css/bootstrap.dark.min.css
-lib/elasticsearch/plugins/marvel/_site/sense/vendor/bootstrap/css/bootstrap.light.min.css
-lib/elasticsearch/plugins/marvel/_site/sense/vendor/bootstrap/css/bootstrap.min.css
-lib/elasticsearch/plugins/marvel/_site/sense/vendor/bootstrap/img/glyphicons-halflings-white.png
-lib/elasticsearch/plugins/marvel/_site/sense/vendor/bootstrap/img/glyphicons-halflings.png
-lib/elasticsearch/plugins/marvel/_site/sense/vendor/font-awesome/css/font-awesome.min.css
-lib/elasticsearch/plugins/marvel/_site/sense/vendor/font-awesome/fonts/FontAwesome.otf
-lib/elasticsearch/plugins/marvel/_site/sense/vendor/font-awesome/fonts/fontawesome-webfont.eot
-lib/elasticsearch/plugins/marvel/_site/sense/vendor/font-awesome/fonts/fontawesome-webfont.svg
-lib/elasticsearch/plugins/marvel/_site/sense/vendor/font-awesome/fonts/fontawesome-webfont.ttf
-lib/elasticsearch/plugins/marvel/_site/sense/vendor/font-awesome/fonts/fontawesome-webfont.woff
-lib/elasticsearch/plugins/marvel/_site/sense/vendor/jquery/jquery-ui-1.9.2.custom.min.css
-lib/elasticsearch/plugins/marvel/_site/sense/vendor/require/almond.js
-lib/elasticsearch/plugins/marvel/_site/sense/vendor/require/css/LICENSE
-lib/elasticsearch/plugins/marvel/_site/sense/vendor/require/css/README.md
-lib/elasticsearch/plugins/marvel/_site/sense/vendor/require/css/css-builder.js
-lib/elasticsearch/plugins/marvel/_site/sense/vendor/require/css/css.min.js
-lib/elasticsearch/plugins/marvel/_site/sense/vendor/require/require.js
-lib/elasticsearch/plugins/marvel/_site/sense/vendor/zero_clipboard/zero_clipboard.swf
-lib/elasticsearch/plugins/marvel/marvel-%%VERSION%%.jar
+lib/elasticsearch/plugins/license/LICENSE.txt
+lib/elasticsearch/plugins/license/NOTICE.txt
+lib/elasticsearch/plugins/license/license-%%VERSION%%.jar
+lib/elasticsearch/plugins/license/license-core-%%VERSION%%.jar
+lib/elasticsearch/plugins/license/license-plugin-api-%%VERSION%%.jar
+lib/elasticsearch/plugins/license/plugin-descriptor.properties
+lib/elasticsearch/plugins/marvel-agent/LICENSE.txt
+lib/elasticsearch/plugins/marvel-agent/NOTICE.txt
+lib/elasticsearch/plugins/marvel-agent/marvel-agent-%%VERSION%%.jar
+lib/elasticsearch/plugins/marvel-agent/plugin-descriptor.properties



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201603091703.u29H3AKM088242>