From owner-svn-ports-head@freebsd.org Sat Oct 1 23:58:59 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2DA20A94B62; Sat, 1 Oct 2016 23:58:59 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D55A3123D; Sat, 1 Oct 2016 23:58:58 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u91NwwpX074924; Sat, 1 Oct 2016 23:58:58 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u91NwveU074922; Sat, 1 Oct 2016 23:58:57 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201610012358.u91NwveU074922@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 1 Oct 2016 23:58:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r423097 - in head/net-mgmt/collectd5: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Oct 2016 23:58:59 -0000 Author: jbeich Date: Sat Oct 1 23:58:57 2016 New Revision: 423097 URL: https://svnweb.freebsd.org/changeset/ports/423097 Log: net-mgmt/collectd5: update write_riemann and fix zfs_arc plugins PR: 213124 Submitted by: Krzysztof (maintainer) Added: head/net-mgmt/collectd5/files/patch-src_zfs__arc.c (contents, props changed) Modified: head/net-mgmt/collectd5/Makefile (contents, props changed) Modified: head/net-mgmt/collectd5/Makefile ============================================================================== --- head/net-mgmt/collectd5/Makefile Sat Oct 1 23:34:12 2016 (r423096) +++ head/net-mgmt/collectd5/Makefile Sat Oct 1 23:58:57 2016 (r423097) @@ -3,7 +3,7 @@ PORTNAME= collectd PORTVERSION= 5.6.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-mgmt MASTER_SITES= https://collectd.org/files/ \ http://collectd.org/files/ @@ -62,7 +62,7 @@ PING_DESC= Enable ping plugin PYTHON_DESC= Enable python-based plugins RABBITMQ_DESC= Enable rabbitmq-based plugins REDIS_DESC= Enable redis-based plugins -RIEMANN_DESC= Enable write_riemann plugin (via protobuf-c) +RIEMANN_DESC= Enable write_riemann plugin (via riemann-c-client) ROUTEROS_DESC= Enable routeros plugin RRDTOOL_DESC= Enable rrdtool plugin (also rrdcached plugin) SIGROK_DESC= Enable sigrok plugin @@ -224,7 +224,7 @@ REDIS_LIB_DEPENDS= libhiredis.so:databa REDIS_CONFIGURE_ENABLE= redis write_redis REDIS_CONFIGURE_WITH= libhiredis=${LOCALBASE} -RIEMANN_LIB_DEPENDS= libprotobuf-c.so:devel/protobuf-c +RIEMANN_LIB_DEPENDS= libriemann-client.so:net-mgmt/riemann-c-client RIEMANN_CONFIGURE_ENABLE= write_riemann ROUTEROS_LIB_DEPENDS= librouteros.so:net/librouteros Added: head/net-mgmt/collectd5/files/patch-src_zfs__arc.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/collectd5/files/patch-src_zfs__arc.c Sat Oct 1 23:58:57 2016 (r423097) @@ -0,0 +1,10 @@ +--- src/zfs_arc.c.orig 2016-09-11 08:10:25 UTC ++++ src/zfs_arc.c +@@ -314,7 +314,6 @@ static int za_read (void) + za_read_derive (ksp, "demand_data_misses", "cache_result", "demand_data-miss"); + za_read_derive (ksp, "demand_metadata_misses", "cache_result", "demand_metadata-miss"); + za_read_derive (ksp, "prefetch_data_misses", "cache_result", "prefetch_data-miss"); +- za_read_derive (ksp, "prefetch_metadata_misses", "cache_result", "prefetch_metadata-miss"); + za_read_derive (ksp, "mfu_hits", "cache_result", "mfu-hit"); + za_read_derive (ksp, "mfu_ghost_hits", "cache_result", "mfu_ghost-hit"); + za_read_derive (ksp, "mru_hits", "cache_result", "mru-hit");