Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 099B67A289 for ; Thu, 30 Mar 2017 15:37:14 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 73C30855A2; Thu, 30 Mar 2017 15:37:13 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 039B085598 for ; Thu, 30 Mar 2017 15:37:13 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id iGihBQrFsjDs for ; Thu, 30 Mar 2017 15:37:12 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 5C59685569 for ; Thu, 30 Mar 2017 15:37:12 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 52EB9FBE4; Thu, 30 Mar 2017 15:37:12 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_149088823282720" MIME-Version: 1.0 Date: Thu, 30 Mar 2017 15:37:12 +0000 From: "Filip Hajny" Subject: CVS commit: pkgsrc/sysutils/beats To: pkgsrc-changes@NetBSD.org Reply-To: fhajny@netbsd.org X-Mailer: log_accum Message-Id: <20170330153712.52EB9FBE4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_149088823282720 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: fhajny Date: Thu Mar 30 15:37:12 UTC 2017 Modified Files: pkgsrc/sysutils/beats: Makefile distinfo Log Message: Update sysutils/beats to 5.3.0. ==== Breaking changes Affecting all Beats - Configuration files must be owned by the user running the Beat or by root, and they must not be writable by others. - Change Beat generator. Use `$GOPATH/src/github.com/elastic/beats/script/generate.py` to generate a beat. Filebeat - Always use absolute path for event and registry. This can lead to issues when relative paths were used before. Metricbeat - Linux cgroup metrics are now enabled by default for the system process metricset. The configuration option for the feature was renamed from `cgroups` to `process.cgroups.enabled`. - Change field names `couchbase.node.couch.*.actual_disk_size.*` to `couchbase.node.couch.*.disk_size.*` ==== Bugfixes Affecting all Beats - Add `_id`, `_type`, `_index` and `_score` fields in the generated index pattern. Filebeat - Fix empty registry file on machine crash. Metricbeat - Add error handling to system process metricset for when Linux cgroups are missing from the kernel. - Add labels to the Docker healthcheck metricset output. Winlogbeat - Fix handling of empty strings in event_data. ==== Added Affecting all Beats - Files created by Beats (logs, registry, file output) will have 0600 permissions. - RPM/deb packages will now install the config file with 0600 permissions. - Add the option to pass custom HTTP headers to the Elasticsearch output. - Unify `regexp` and `contains` conditionals, for both to support array of strings and convert numbers to strings if required. - Add the option to load the sample dashboards during the Beat startup phase. - Disabled date detection in Elasticsearch index templates. Date fields must be explicitly defined in index templates. - Using environment variables in the configuration file is now GA, instead of experimental. Filebeat - Add Filebeat modules for system, apache2, mysql, and nginx. - Add the `pipeline` config option at the prospector level, for configuring the Ingest Node pipeline ID. - Update regular expressions used for matching file names or lines (multiline, include/exclude functionality) to new matchers improving performance of simple string matches. - The `symlinks` and `harverster_limit` settings are now GA, instead of experimental. - close_timeout is also applied when the output is blocking. - Improve handling of different path variants on Windows. Metricbeat - Add experimental dbstats metricset to MongoDB module. - Use persistent, direct connections to the configured nodes for MongoDB module. - Add dynamic configuration reloading for modules. - Add docker health metricset - Add docker image metricset - System module uses new matchers for white-listing processes. - Add Beta CEPH module with health metricset. - Add Beta php_fpm module with pool metricset. - The Docker, Kafka, and Prometheus modules are now Beta, instead of experimental. - The HAProxy module is now GA, instead of experimental. - Add the ability to collect the environment variables from system processes. ==== Deprecated Affecting all Beats - Usage of field `_type` is deprecated. It should not be used in queries or dashboards. Filebeat - The experimental `publish_async` option is now deprecated and is planned to be removed in 6.0. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/sysutils/beats/Makefile \ pkgsrc/sysutils/beats/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_149088823282720 Content-Disposition: inline Content-Length: 1709 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/beats/Makefile diff -u pkgsrc/sysutils/beats/Makefile:1.5 pkgsrc/sysutils/beats/Makefile:1.6 --- pkgsrc/sysutils/beats/Makefile:1.5 Wed Mar 1 14:21:27 2017 +++ pkgsrc/sysutils/beats/Makefile Thu Mar 30 15:37:12 2017 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.5 2017/03/01 14:21:27 fhajny Exp $ +# $NetBSD: Makefile,v 1.6 2017/03/30 15:37:12 fhajny Exp $ # -DISTNAME= beats-5.2.2 +DISTNAME= beats-5.3.0 CATEGORIES= sysutils MASTER_SITES= ${MASTER_SITE_GITHUB:=elastic/} GITHUB_PROJECT= beats Index: pkgsrc/sysutils/beats/distinfo diff -u pkgsrc/sysutils/beats/distinfo:1.5 pkgsrc/sysutils/beats/distinfo:1.6 --- pkgsrc/sysutils/beats/distinfo:1.5 Wed Mar 1 14:21:27 2017 +++ pkgsrc/sysutils/beats/distinfo Thu Mar 30 15:37:12 2017 @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.5 2017/03/01 14:21:27 fhajny Exp $ +$NetBSD: distinfo,v 1.6 2017/03/30 15:37:12 fhajny Exp $ -SHA1 (beats-5.2.2.tar.gz) = 579eec6f2e8b99c70073e9719757c617fbc7130a -RMD160 (beats-5.2.2.tar.gz) = f749832da0e55be4167471aa6cff5fee9e9df3fc -SHA512 (beats-5.2.2.tar.gz) = 7cf54eb0b27d830e51bf97964f078874eae62e1d9642fb598cdd2f0a405db4a74e1f299c5e57e29a67cfea209b9b3c7f38bdcbe6b2e2885285b77615236971c1 -Size (beats-5.2.2.tar.gz) = 16489808 bytes +SHA1 (beats-5.3.0.tar.gz) = ddb0078752db59d59096e269c90371eacafc403e +RMD160 (beats-5.3.0.tar.gz) = 040079cd2cc12bac96d7fcfea5b53fdd090ef1b7 +SHA512 (beats-5.3.0.tar.gz) = 898e7f885360377190daf916ff023abff61e28eaa536a155dd65a7cde076218e3252697bac476a31ff89ef9c38afa77549637731c10b7f3243e591258a88686d +Size (beats-5.3.0.tar.gz) = 17586311 bytes SHA1 (patch-vendor_github.com_tsg_gopacket_pcap_pcap.go) = 2ef13f84cbf2e1da428e7b08625ffa6111ebcdf5 --_----------=_149088823282720--