Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 12 Mar 2018 21:17:34 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r464322 - in head/devel: . py-fluent-logger
Message-ID:  <201803122117.w2CLHYT6027962@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Mon Mar 12 21:17:34 2018
New Revision: 464322
URL: https://svnweb.freebsd.org/changeset/ports/464322

Log:
  Add py-fluent-logger 0.9.2
  
  Many web/mobile applications generate huge amount of event logs (cf. login,
  logout, purchase, follow, etc). To analyze these event logs could be really
  valuable for improving the service. However, the challenge is collecting these
  logs easily and reliably.
  
  Fluentd solves that problem by having: easy installation, small footprint,
  plugins, reliable buffering, log forwarding, etc.
  
  fluent-logger-python is a Python library, to record the events from Python
  application.
  
  WWW: https://github.com/fluent/fluent-logger-python
  
  PR:		207636
  Submitted by:	Edward Chuang <edwardchuang@gmail.com>

Added:
  head/devel/py-fluent-logger/
  head/devel/py-fluent-logger/Makefile   (contents, props changed)
  head/devel/py-fluent-logger/distinfo   (contents, props changed)
  head/devel/py-fluent-logger/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Mon Mar 12 21:17:29 2018	(r464321)
+++ head/devel/Makefile	Mon Mar 12 21:17:34 2018	(r464322)
@@ -4443,6 +4443,7 @@
     SUBDIR += py-flake8-quotes
     SUBDIR += py-flask-babel
     SUBDIR += py-flexmock
+    SUBDIR += py-fluent-logger
     SUBDIR += py-flufl.i18n
     SUBDIR += py-flufl.lock
     SUBDIR += py-foolscap

Added: head/devel/py-fluent-logger/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-fluent-logger/Makefile	Mon Mar 12 21:17:34 2018	(r464322)
@@ -0,0 +1,21 @@
+# Created by: Edward Chuang <edwardchuang@gmail.com>
+# $FreeBSD$
+
+PORTNAME=	fluent-logger
+PORTVERSION=	0.9.2
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	edwardchuang@gmail.com
+COMMENT=	Structured logger for Fluentd (Python)
+
+LICENSE=	APACHE20
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}msgpack-python>0:devel/py-msgpack-python@${FLAVOR}
+
+NO_ARCH=	yes
+USE_PYTHON=	autoplist concurrent distutils
+USES=		python
+
+.include <bsd.port.mk>

Added: head/devel/py-fluent-logger/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-fluent-logger/distinfo	Mon Mar 12 21:17:34 2018	(r464322)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1520787461
+SHA256 (fluent-logger-0.9.2.tar.gz) = 84aa4d843a530e5724927849995b8d7698413a670ee4bc0fcaafc9bcbf8b49bc
+SIZE (fluent-logger-0.9.2.tar.gz) = 12270

Added: head/devel/py-fluent-logger/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-fluent-logger/pkg-descr	Mon Mar 12 21:17:34 2018	(r464322)
@@ -0,0 +1,12 @@
+Many web/mobile applications generate huge amount of event logs (cf. login,
+logout, purchase, follow, etc). To analyze these event logs could be really
+valuable for improving the service. However, the challenge is collecting these
+logs easily and reliably.
+
+Fluentd solves that problem by having: easy installation, small footprint,
+plugins, reliable buffering, log forwarding, etc.
+
+fluent-logger-python is a Python library, to record the events from Python
+application.
+
+WWW: https://github.com/fluent/fluent-logger-python



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