aboutsummaryrefslogtreecommitdiff
path: root/prometheus_haproxy_log_exporter/file
diff options
context:
space:
mode:
authorChristopher Baines <chris@lucida.cbaines.net>2015-12-24 10:59:02 +0000
committerChristopher Baines <mail@cbaines.net>2016-02-23 23:00:55 +0000
commit5bcf65dcff75a01a90b688626d97735372b594e2 (patch)
tree617016a92505090cc830ae8844169933a06ff56e /prometheus_haproxy_log_exporter/file
downloadprometheus-haproxy-log-exporter-5bcf65dcff75a01a90b688626d97735372b594e2.tar
prometheus-haproxy-log-exporter-5bcf65dcff75a01a90b688626d97735372b594e2.tar.gz
Initial commit
Diffstat (limited to 'prometheus_haproxy_log_exporter/file')
-rw-r--r--prometheus_haproxy_log_exporter/file/__init__.py1
-rw-r--r--prometheus_haproxy_log_exporter/file/log_file_processor.py22
2 files changed, 23 insertions, 0 deletions
diff --git a/prometheus_haproxy_log_exporter/file/__init__.py b/prometheus_haproxy_log_exporter/file/__init__.py
new file mode 100644
index 0000000..42c08b1
--- /dev/null
+++ b/prometheus_haproxy_log_exporter/file/__init__.py
@@ -0,0 +1 @@
+from .log_file_processor import LogFileProcessor
diff --git a/prometheus_haproxy_log_exporter/file/log_file_processor.py b/prometheus_haproxy_log_exporter/file/log_file_processor.py
new file mode 100644
index 0000000..22b6d42
--- /dev/null
+++ b/prometheus_haproxy_log_exporter/file/log_file_processor.py
@@ -0,0 +1,22 @@
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+from pygtail import Pygtail
+
+from ..log_processing import AbstractLogProcessor
+
+
+class LogFileProcessor(AbstractLogProcessor):
+ def run(self, path):
+ for line in Pygtail(path):
+ self.update_metrics(line)