-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
4 additions
and
244 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: latin-1 -*- | ||
# | ||
# Copyright 2009-2016 Ghent University | ||
# Copyright 2009-2022 Ghent University | ||
# | ||
# This file is part of logstash-patterns, | ||
# originally created by the HPC team of Ghent University (http://ugent.be/hpc/en), | ||
|
@@ -33,16 +33,14 @@ | |
|
||
setup(name="logstash-patterns", | ||
version="2.0.0", | ||
description="Grok patterns for logstash", | ||
long_description="""Grok patterns for parsing log messages with logstash. | ||
description="Grok patterns for vector (JSON formatted)", | ||
long_description="""Grok patterns for parsing log messages with vector. | ||
Can be debugged on https://grokdebug.herokuapp.com/ or via the runtest.py in tests subdirectory | ||
""", | ||
license="LGPL", | ||
author="HPC UGent", | ||
author_email="[email protected]", | ||
# keep MANIFEST.in in sync (EL6 packaging issue) | ||
data_files=[("/usr/share/grok", glob.glob("files/*")), | ||
("/usr/share/logstash/filters", glob.glob("logstash/filters/*")), | ||
], | ||
data_files=[("/usr/share/vector", glob.glob("files/*"))], | ||
url="http://www.ugent.be/hpc") |