pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Update beats to 1.1.0.



Module Name:	pkgsrc-wip
Committed By:	Filip Hajny <filip%joyent.com@localhost>
Pushed By:	fhajny
Date:		Thu Feb 4 10:07:45 2016 +0000
Changeset:	40abb9e745702f187c9857e316aefd32902383a5

Modified Files:
	beats/Makefile
	beats/distinfo
Removed Files:
	beats/patches/patch-libbeat_cfgfile_cfgfile.go
	beats/patches/patch-vendor_github.com_tsg_gopacket_pcap_pcap.go

Log Message:
Update beats to 1.1.0.

Bugfixes
========

Affecting all Beats

- Fix logging issue with file-based output where newlines could be
  misplaced during concurrent logging 650
- Reduce memory usage by having separate queue sizes for single
  events and bulk events. 649 516
- Set default bulk_max_size value to 2048 628
- Fix logstash window size of 1 not increasing. 598

Packetbeat
- Fix the condition that determines whether the direction of the
  transaction is set to "outgoing". Packetbeat uses the direction
  field to determine which transactions to drop when dropping
  outgoing transactions. 557
- Allow PF_RING sniffer type to be configured using pf_ring or
  pfring 671

Filebeat
- Set spool_size default value to 2048 628

Added
=====

Affecting all Beats
- Make logstash output compression level configurable. 630
- Some publisher options refactoring in libbeat 684
- Move event preprocessor applying GeoIP to packetbeat 772

Packetbeat
- Add support for capturing DNS over TCP network traffic. 486 554

Topbeat
- Group all CPU usage per core statistics and export them optionally
  if cpu_per_core is configured 496

Filebeat
- Add multiline support for combining multiple related lines into
  one event. 461
- Add exclude_lines and include_lines options for regexp based line
  filtering. 430

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=40abb9e745702f187c9857e316aefd32902383a5

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 beats/Makefile                                     |  2 +-
 beats/distinfo                                     | 10 ++++-----
 beats/patches/patch-libbeat_cfgfile_cfgfile.go     | 24 ----------------------
 ...tch-vendor_github.com_tsg_gopacket_pcap_pcap.go | 14 -------------
 4 files changed, 5 insertions(+), 45 deletions(-)

diffs:
diff --git a/beats/Makefile b/beats/Makefile
index 275b2ff..bba6f1c 100644
--- a/beats/Makefile
+++ b/beats/Makefile
@@ -1,7 +1,7 @@
 # $NetBSD$
 #
 
-DISTNAME=		beats-1.0.1
+DISTNAME=		beats-1.1.0
 CATEGORIES=		sysutils
 MASTER_SITES=		${MASTER_SITE_GITHUB:=elastic/}
 GITHUB_PROJECT=		beats
diff --git a/beats/distinfo b/beats/distinfo
index 7692b1b..6096ac2 100644
--- a/beats/distinfo
+++ b/beats/distinfo
@@ -1,8 +1,6 @@
 $NetBSD$
 
-SHA1 (beats-1.0.1.tar.gz) = fb9857a33b096f4731e7060dbe4f473ae06ee654
-RMD160 (beats-1.0.1.tar.gz) = 12dfc140a1a96ca3a03830f41add1f8099ff2439
-SHA512 (beats-1.0.1.tar.gz) = 0a1dc825f24f48b70e462518c5663a141d3c3592e8565bbd9d8b0e183314095ab3b6db5b593d1a39e49bdb88b58001833848fc40836dcc20de627860ccdb2cad
-Size (beats-1.0.1.tar.gz) = 9737036 bytes
-SHA1 (patch-libbeat_cfgfile_cfgfile.go) = 94aa2ee0130f97dd437858668c83b18547ebfd72
-SHA1 (patch-vendor_github.com_tsg_gopacket_pcap_pcap.go) = 557dbe82cb83d94df96946a5e03108e6cae4cd15
+SHA1 (beats-1.1.0.tar.gz) = e6b977db967aeca923532d18ea6e2103cee0e368
+RMD160 (beats-1.1.0.tar.gz) = 91e7d0e58c2bf83b483b2441ccab50dc276b7b71
+SHA512 (beats-1.1.0.tar.gz) = ed135df752d26f5fb9ed7f99cc966e1a989fe85fcb2a526e4667e1507006829865fa81dfd416a7b06517d9d483dc0d102212fc11c7681d676812ca081139f808
+Size (beats-1.1.0.tar.gz) = 9843707 bytes
diff --git a/beats/patches/patch-libbeat_cfgfile_cfgfile.go b/beats/patches/patch-libbeat_cfgfile_cfgfile.go
deleted file mode 100644
index 6805ff2..0000000
--- a/beats/patches/patch-libbeat_cfgfile_cfgfile.go
+++ /dev/null
@@ -1,24 +0,0 @@
-$NetBSD$
-
-Use PKG_SYSCONFDIR.
-
---- libbeat/cfgfile/cfgfile.go.orig	2015-12-17 14:53:41.000000000 +0000
-+++ libbeat/cfgfile/cfgfile.go
-@@ -15,7 +15,7 @@ var testConfig *bool
- func init() {
- 	// The default config cannot include the beat name as it is not initialised when this
- 	// function is called, but see ChangeDefaultCfgfileFlag
--	configfile = flag.String("c", "/etc/beat/beat.yml", "Configuration file")
-+	configfile = flag.String("c", "@PKG_SYSCONFDIR@/beat.yml", "Configuration file")
- 	testConfig = flag.Bool("configtest", false, "Test configuration and exit.")
- }
- 
-@@ -26,7 +26,7 @@ func ChangeDefaultCfgfileFlag(beatName s
- 	if cliflag == nil {
- 		return fmt.Errorf("Flag -c not found")
- 	}
--	cliflag.DefValue = fmt.Sprintf("/etc/%s/%s.yml", beatName, beatName)
-+	cliflag.DefValue = fmt.Sprintf("@PKG_SYSCONFDIR@/%s.yml", beatName)
- 	return cliflag.Value.Set(cliflag.DefValue)
- }
- 
diff --git a/beats/patches/patch-vendor_github.com_tsg_gopacket_pcap_pcap.go b/beats/patches/patch-vendor_github.com_tsg_gopacket_pcap_pcap.go
deleted file mode 100644
index f6f0515..0000000
--- a/beats/patches/patch-vendor_github.com_tsg_gopacket_pcap_pcap.go
+++ /dev/null
@@ -1,14 +0,0 @@
-$NetBSD$
-
-Add support for SunOS.
-
---- vendor/github.com/tsg/gopacket/pcap/pcap.go.orig	2015-12-17 14:53:41.000000000 +0000
-+++ vendor/github.com/tsg/gopacket/pcap/pcap.go
-@@ -11,6 +11,7 @@ package pcap
- #cgo linux LDFLAGS: -lpcap
- #cgo freebsd LDFLAGS: -lpcap
- #cgo darwin LDFLAGS: -lpcap
-+#cgo solaris LDFLAGS: -lpcap
- #cgo windows CFLAGS: -I C:/WpdPack/Include
- #cgo windows,386 LDFLAGS: -L C:/WpdPack/Lib -lwpcap
- #cgo windows,amd64 LDFLAGS: -L C:/WpdPack/Lib/x64 -lwpcap


Home | Main Index | Thread Index | Old Index