-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Version History ## v1.8.4 | | | |--------|---------------------| | Date | 2025-01-07 | | Kind | MINOR release | | Author | [email protected] | - **Minor improvements** - [docker] bumped Python container version to 3.12.8 - [docker] bumped EAA container version to RC0.6.11 - **Bugfixes** - Bugfix for JSON Log Escaping (massive thx to @sethumadhav07 for the provded PR)
- Loading branch information
1 parent
f283ff0
commit 1122750
Showing
14 changed files
with
176 additions
and
27 deletions.
There are no files selected for viewing
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,8 +1,8 @@ | ||
FROM python:3.12.4-slim-bookworm | ||
FROM python:3.12.8-slim-bookworm | ||
LABEL MAINTAINER="Mike Schiessl - [email protected]" | ||
LABEL APP_LONG="Akamai Universal Log Streamer" | ||
LABEL APP_LONG="Akamai Unified Log Streamer" | ||
LABEL APP_SHORT="ULS" | ||
LABEL VENDOR="Akamai Technologies" | ||
LABEL VENDOR="Akamai Technologies Inc" | ||
|
||
|
||
# CONFIGURATION ARGS | ||
|
@@ -11,7 +11,7 @@ ARG ULS_DIR="$HOMEDIR/uls" | |
ARG EXT_DIR="$ULS_DIR/ext" | ||
|
||
ARG ETP_CLI_VERSION="0.4.8" | ||
ARG EAA_CLI_VERSION="0.6.10" | ||
ARG EAA_CLI_VERSION="rc0.6.11" | ||
ARG MFA_CLI_VERSION="0.1.1" | ||
ARG GC_CLI_VERSION="v0.0.6" | ||
ARG LINODE_CLI_VERSION="dev" | ||
|
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
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
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
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,4 +1,20 @@ | ||
# Version History | ||
## v1.8.4 | ||
| | | | ||
|--------|---------------------| | ||
| Date | 2025-01-07 | | ||
| Kind | MINOR release | | ||
| Author | [email protected] | | ||
|
||
- **Minor improvements** | ||
- [docker] bumped Python container version to 3.12.8 | ||
- [docker] bumped EAA container version to RC0.6.11 | ||
|
||
- **Bugfixes** | ||
- Bugfix for JSON Log Escaping (massive thx to @sethumadhav07 for the provded PR) | ||
|
||
|
||
--- | ||
|
||
## v1.8.3 | ||
| | | | ||
|
@@ -11,8 +27,14 @@ | |
- [docker] bumped CLI-GC version to 0.0.6 | ||
|
||
- **Bugfixes** | ||
- Improved JSON Log Escaping (massive thx to @sethumadhav07 for the privded PR) | ||
- Improved JSON Log Escaping (massive thx to @sethumadhav07 for the provded PR) | ||
|
||
- **Docfixes** | ||
- Introduced "var" directory mount for docker & docker compose usage (allows autoresume within docker) | ||
|
||
- **Housekeeping** | ||
- improved python version testing (sampling py3.9 to 3.13) | ||
- | ||
--- | ||
|
||
## v1.8.2 | ||
|
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
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
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
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Additional Testing tools | ||
|
||
## webserver.py | ||
```text | ||
webserver.py <port> | ||
``` | ||
|
||
Runs a local webserver on the given <port> where ULS can deliver data against |
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 |
---|---|---|
@@ -0,0 +1,56 @@ | ||
#!/usr/bin/env python3 | ||
""" | ||
License: MIT License | ||
Copyright (c) 2023 Miel Donkers, amended 2024 by Mike Schiessl (to suite our ULS needs) | ||
Very simple HTTP server in python for logging requests | ||
Usage:: | ||
./server.py [<port>] | ||
""" | ||
from http.server import BaseHTTPRequestHandler, HTTPServer | ||
import logging | ||
|
||
class S(BaseHTTPRequestHandler): | ||
def _set_response(self): | ||
self.send_response(200) | ||
self.send_header('Content-type', 'text/html') | ||
self.end_headers() | ||
|
||
def do_OPTIONS(self): | ||
logging.info("OPTIONS request,\nPath: %s\nHeaders:\n%s\n", str(self.path), str(self.headers)) | ||
self._set_response() | ||
self.wfile.write("GET request for {}".format(self.path).encode('utf-8')) | ||
|
||
def do_GET(self): | ||
logging.info("GET request,\nPath: %s\nHeaders:\n%s\n", str(self.path), str(self.headers)) | ||
self._set_response() | ||
self.wfile.write("GET request for {}".format(self.path).encode('utf-8')) | ||
|
||
def do_POST(self): | ||
content_length = int(self.headers['Content-Length']) # <--- Gets the size of data | ||
post_data = self.rfile.read(content_length) # <--- Gets the data itself | ||
logging.info("POST request,\nPath: %s\nHeaders:\n%s\n\nBody:\n%s\n", | ||
str(self.path), str(self.headers), post_data.decode('utf-8')) | ||
|
||
self._set_response() | ||
self.wfile.write("POST request for {}".format(self.path).encode('utf-8')) | ||
|
||
def run(server_class=HTTPServer, handler_class=S, port=8080): | ||
logging.basicConfig(level=logging.INFO) | ||
server_address = ('', port) | ||
httpd = server_class(server_address, handler_class) | ||
logging.info('Starting httpd...\n') | ||
try: | ||
httpd.serve_forever() | ||
except KeyboardInterrupt: | ||
pass | ||
httpd.server_close() | ||
logging.info('Stopping httpd...\n') | ||
|
||
if __name__ == '__main__': | ||
from sys import argv | ||
|
||
if len(argv) == 2: | ||
run(port=int(argv[1])) | ||
else: | ||
run() | ||
|