splitlog 2.1.1__tar.gz → 2.1.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {splitlog-2.1.1 → splitlog-2.1.3}/LICENSE +1 -1
- {splitlog-2.1.1 → splitlog-2.1.3}/PKG-INFO +1 -1
- {splitlog-2.1.1 → splitlog-2.1.3}/pyproject.toml +5 -5
- {splitlog-2.1.1 → splitlog-2.1.3}/splitlog/__main__.py +0 -1
- splitlog-2.1.1/setup.py +0 -36
- {splitlog-2.1.1 → splitlog-2.1.3}/README.md +0 -0
- {splitlog-2.1.1 → splitlog-2.1.3}/splitlog/__init__.py +0 -0
- {splitlog-2.1.1 → splitlog-2.1.3}/splitlog/outputfolder.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2022 Sebastian Klemke <pypi@nerdheim.de>
|
|
3
|
+
Copyright (c) 2022-2023 Sebastian Klemke <pypi@nerdheim.de>
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "splitlog"
|
|
3
|
-
version = "2.1.
|
|
3
|
+
version = "2.1.3"
|
|
4
4
|
description = "Utility to split aggregated logs from Apache Hadoop Yarn applications into a folder hierarchy"
|
|
5
5
|
authors = ["Sebastian Klemke <pypi@nerdheim.de>"]
|
|
6
6
|
license = "MIT"
|
|
@@ -27,10 +27,10 @@ importlib-metadata = "^5.1.0"
|
|
|
27
27
|
splitlog = 'splitlog.__main__:main'
|
|
28
28
|
|
|
29
29
|
[tool.poetry.group.dev.dependencies]
|
|
30
|
-
mypy = "^0
|
|
31
|
-
black = "^
|
|
32
|
-
types-python-dateutil = "^2.8.
|
|
33
|
-
pytest = "^7.
|
|
30
|
+
mypy = "^1.2.0"
|
|
31
|
+
black = "^23.3.0"
|
|
32
|
+
types-python-dateutil = "^2.8.19.2"
|
|
33
|
+
pytest = "^7.3.1"
|
|
34
34
|
pytest-cov = "^4.0.0"
|
|
35
35
|
|
|
36
36
|
[tool.poetry-dynamic-versioning]
|
splitlog-2.1.1/setup.py
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
# -*- coding: utf-8 -*-
|
|
2
|
-
from setuptools import setup
|
|
3
|
-
|
|
4
|
-
packages = \
|
|
5
|
-
['splitlog']
|
|
6
|
-
|
|
7
|
-
package_data = \
|
|
8
|
-
{'': ['*']}
|
|
9
|
-
|
|
10
|
-
install_requires = \
|
|
11
|
-
['importlib-metadata>=5.1.0,<6.0.0',
|
|
12
|
-
'python-dateutil>=2.8.2,<3.0.0',
|
|
13
|
-
'pytz>=2022.1']
|
|
14
|
-
|
|
15
|
-
entry_points = \
|
|
16
|
-
{'console_scripts': ['splitlog = splitlog.__main__:main']}
|
|
17
|
-
|
|
18
|
-
setup_kwargs = {
|
|
19
|
-
'name': 'splitlog',
|
|
20
|
-
'version': '2.1.1',
|
|
21
|
-
'description': 'Utility to split aggregated logs from Apache Hadoop Yarn applications into a folder hierarchy',
|
|
22
|
-
'long_description': 'splitlog\n========\n \nHadoop Yarn application logs aggregate all container logs of a Yarn application into a single file. This makes it very\ndifficult to use Unix command line tools to analyze these logs: Grep will search over all containers and context\nprovided for hits often does not include Yarn container name or host name. `splitlog` splits a combined logfile for all\ncontainers of an application into a file system hierarchy suitable for further analysis:\n\n```\nout\n└── hadoopnode\n ├── container_1671326373437_0001_01_000001\n │ ├── directory.info\n │ ├── launch_container.sh\n │ ├── prelaunch.err\n │ ├── prelaunch.out\n │ ├── stderr\n │ ├── stdout\n │ └── syslog\n ├── container_1671326373437_0001_01_000002\n │ ├── directory.info\n │ ├── launch_container.sh\n │ ├── prelaunch.err\n │ ├── prelaunch.out\n │ ├── stderr\n │ ├── stdout\n │ └── syslog\n └── container_1671326373437_0001_01_000003\n ├── directory.info\n ├── launch_container.sh\n ├── prelaunch.err\n ├── prelaunch.out\n ├── stderr\n ├── stdout\n └── syslog\n\n4 directories, 21 files\n```\n \nInstallation\n------------\nPython 3.7+ must be available. Installation via [pipx](https://pypi.org/project/pipx/):\n\n```shell script\npipx install splitlog\n```\n \nHow to use\n----------\n\nRead logs from standard input:\n```shell script\nyarn logs -applicationId application_1582815261257_232080 | splitlog\n```\n\nRead logs from file `application_1582815261257_232080.log`:\n```shell script\nsplitlog -i application_1582815261257_232080.log\n```\n',
|
|
23
|
-
'author': 'Sebastian Klemke',
|
|
24
|
-
'author_email': 'pypi@nerdheim.de',
|
|
25
|
-
'maintainer': 'None',
|
|
26
|
-
'maintainer_email': 'None',
|
|
27
|
-
'url': 'https://github.com/splitlog/splitlog.git',
|
|
28
|
-
'packages': packages,
|
|
29
|
-
'package_data': package_data,
|
|
30
|
-
'install_requires': install_requires,
|
|
31
|
-
'entry_points': entry_points,
|
|
32
|
-
'python_requires': '>=3.7.0,<4.0.0',
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
setup(**setup_kwargs)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|