-
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.
## v1.6.0 ||| |---|---| |Date|2022-08 |Kind| BUGFIX release |Author|[email protected] - **Features** - Support for Akamai Guardicore Segmentation (experimental) - Available feeds: netlog, incident, agent, system Please ensure to [update your .edgerc](./AKAMAI_API_CREDENTIALS.md#guardicore-api-integration) file for GC usage - Support for Akamai Linode Cloud (experimental) - Available feed: audit Please ensure to [update your .edgerc](AKAMAI_API_CREDENTIALS.md#linode-api-credentials) file for GC usage - **Minor improvements** - ULS [Install Script](COMMAND_LINE_USAGE.md#automated-installation) allows fully working ULS installation via a single script - ULS [Updater](COMMAND_LINE_USAGE.md#automated-update) helps to maintain a proper updated version of ULS + Modules - Amended [Command Line Usage](COMMAND_LINE_USAGE.md) documentation on how to use the installer / updater - bumped python container (docker) to version 3.10.7 - bumped ETP-CLI version to 0.3.9 which should massively reduce the fetch lag - Added [documentation](./HIGH_AVAILABILITY.md) to explain high availability options for ULS
- Loading branch information
1 parent
96c31cf
commit 24b1594
Showing
18 changed files
with
1,061 additions
and
81 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,4 +1,4 @@ | ||
FROM python:3.10.5-slim-bullseye | ||
FROM python:3.10.7-slim-bullseye | ||
LABEL MAINTAINER="Mike Schiessl - [email protected]" | ||
LABEL APP_LONG="Akamai Universal Log Streamer" | ||
LABEL APP_SHORT="ULS" | ||
|
@@ -10,9 +10,11 @@ ARG HOMEDIR="/opt/akamai-uls" | |
ARG ULS_DIR="$HOMEDIR/uls" | ||
ARG EXT_DIR="$ULS_DIR/ext" | ||
|
||
ARG ETP_CLI_VERSION="0.3.8" | ||
ARG ETP_CLI_VERSION="0.3.9" | ||
ARG EAA_CLI_VERSION="0.5.0.2" | ||
ARG MFA_CLI_VERSION="0.0.9" | ||
ARG GC_CLI_VERSION="dev" | ||
ARG LINODE_CLI_VERSION="dev" | ||
|
||
# ENV VARS | ||
ENV ULS_DIR=$ULS_DIR | ||
|
@@ -63,6 +65,16 @@ ENV MFA-CLI_VERSION=$MFA_CLI_VERSION | |
RUN git clone --depth 1 -b "${MFA_CLI_VERSION}" --single-branch https://github.com/akamai/cli-mfa.git ${EXT_DIR}/cli-mfa && \ | ||
pip3 install -r ${EXT_DIR}/cli-mfa/requirements.txt | ||
|
||
## GC CLI | ||
ENV GC_CLI_VERSION=$GC_CLI_VERSION | ||
RUN git clone --depth 1 -b "${GC_CLI_VERSION}" --single-branch https://github.com/MikeSchiessl/gc-logs.git ${EXT_DIR}/cli-gc && \ | ||
pip3 install -r ${EXT_DIR}/cli-gc/bin/requirements.txt | ||
|
||
## LINODE CLI | ||
ENV LINODE_CLI_VERSION=$LINODE_CLI_VERSION | ||
RUN git clone --depth 1 -b "${LINODE_CLI_VERSION}" --single-branch https://github.com/MikeSchiessl/ln-logs.git ${EXT_DIR}/cli-linode && \ | ||
pip3 install -r ${EXT_DIR}/cli-linode/bin/requirements.txt | ||
|
||
# ENTRYPOINTS / CMD | ||
VOLUME ["${ULS_DIR}/var"] | ||
ENTRYPOINT ["/usr/local/bin/python3","-u","bin/uls.py"] | ||
|
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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
jmespath>=0.10.0 | ||
requests>=2.25.1 | ||
requests>=2.25.1 | ||
pytz>=2021.1 |
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
Oops, something went wrong.