├── .gitignore ├── .overcommit.yml ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── README.rst ├── TODO.md ├── bin └── test ├── docker-compose.yml ├── docs └── kibana_index_setup.png ├── requirements-to-freeze.txt ├── requirements.txt ├── setup.cfg ├── setup.py ├── systemdlogger ├── __init__.py ├── aws.py ├── cloudwatch.py ├── elasticsearch.py ├── journal.py ├── log.py ├── plugin.py ├── runner.py └── systemdlogger.py ├── tests ├── __init__.py ├── fixtures │ ├── config.json │ ├── config_es.json │ ├── config_vars.json │ ├── elasticsearch_mapping.json │ ├── journal.py │ ├── journal_entries_formatted.json │ └── journal_entry.json ├── integration │ ├── __init__.py │ └── runner.py ├── test_aws.py ├── test_cloudwatch.py ├── test_elasticsearch.py └── test_runner.py ├── tox.ini └── tox_integration.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjacker/systemdlogger/HEAD/.gitignore -------------------------------------------------------------------------------- /.overcommit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjacker/systemdlogger/HEAD/.overcommit.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjacker/systemdlogger/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjacker/systemdlogger/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjacker/systemdlogger/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjacker/systemdlogger/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjacker/systemdlogger/HEAD/README.rst -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjacker/systemdlogger/HEAD/TODO.md -------------------------------------------------------------------------------- /bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjacker/systemdlogger/HEAD/bin/test -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjacker/systemdlogger/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/kibana_index_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjacker/systemdlogger/HEAD/docs/kibana_index_setup.png -------------------------------------------------------------------------------- /requirements-to-freeze.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjacker/systemdlogger/HEAD/requirements-to-freeze.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjacker/systemdlogger/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | python-tag = py32 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjacker/systemdlogger/HEAD/setup.py -------------------------------------------------------------------------------- /systemdlogger/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /systemdlogger/aws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjacker/systemdlogger/HEAD/systemdlogger/aws.py -------------------------------------------------------------------------------- /systemdlogger/cloudwatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjacker/systemdlogger/HEAD/systemdlogger/cloudwatch.py -------------------------------------------------------------------------------- /systemdlogger/elasticsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjacker/systemdlogger/HEAD/systemdlogger/elasticsearch.py -------------------------------------------------------------------------------- /systemdlogger/journal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjacker/systemdlogger/HEAD/systemdlogger/journal.py -------------------------------------------------------------------------------- /systemdlogger/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjacker/systemdlogger/HEAD/systemdlogger/log.py -------------------------------------------------------------------------------- /systemdlogger/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjacker/systemdlogger/HEAD/systemdlogger/plugin.py -------------------------------------------------------------------------------- /systemdlogger/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjacker/systemdlogger/HEAD/systemdlogger/runner.py -------------------------------------------------------------------------------- /systemdlogger/systemdlogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjacker/systemdlogger/HEAD/systemdlogger/systemdlogger.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjacker/systemdlogger/HEAD/tests/fixtures/config.json -------------------------------------------------------------------------------- /tests/fixtures/config_es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjacker/systemdlogger/HEAD/tests/fixtures/config_es.json -------------------------------------------------------------------------------- /tests/fixtures/config_vars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjacker/systemdlogger/HEAD/tests/fixtures/config_vars.json -------------------------------------------------------------------------------- /tests/fixtures/elasticsearch_mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjacker/systemdlogger/HEAD/tests/fixtures/elasticsearch_mapping.json -------------------------------------------------------------------------------- /tests/fixtures/journal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjacker/systemdlogger/HEAD/tests/fixtures/journal.py -------------------------------------------------------------------------------- /tests/fixtures/journal_entries_formatted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjacker/systemdlogger/HEAD/tests/fixtures/journal_entries_formatted.json -------------------------------------------------------------------------------- /tests/fixtures/journal_entry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjacker/systemdlogger/HEAD/tests/fixtures/journal_entry.json -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjacker/systemdlogger/HEAD/tests/integration/runner.py -------------------------------------------------------------------------------- /tests/test_aws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjacker/systemdlogger/HEAD/tests/test_aws.py -------------------------------------------------------------------------------- /tests/test_cloudwatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjacker/systemdlogger/HEAD/tests/test_cloudwatch.py -------------------------------------------------------------------------------- /tests/test_elasticsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjacker/systemdlogger/HEAD/tests/test_elasticsearch.py -------------------------------------------------------------------------------- /tests/test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjacker/systemdlogger/HEAD/tests/test_runner.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjacker/systemdlogger/HEAD/tox.ini -------------------------------------------------------------------------------- /tox_integration.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjacker/systemdlogger/HEAD/tox_integration.ini --------------------------------------------------------------------------------