Skip to content

Commit

Permalink
Release 0.4.3 (#9)
Browse files Browse the repository at this point in the history
* Change the sort order of events from DESC to ASC
* Minor fix in the readme doc

---------

Co-authored-by: Mike Schiessl <[email protected]>
  • Loading branch information
bitonio and MikeSchiessl authored Sep 15, 2023
1 parent b94271d commit 1f87f58
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 103 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Akamai CLI: Secure Internet Access Enterprise<!-- omit in toc -->
# Akamai CLI: Secure Internet Access (SIA) Enterprise<!-- omit in toc -->

SIA Enterprise was formerly known as Enterprise Threat Protector (ETP).
More information at https://www.akamai.com/sia
Expand Down Expand Up @@ -31,7 +31,7 @@ More information at https://www.akamai.com/sia
Secure Internet Access Enterprise (formerly ETP) comes with a full suite of APIs.
API requires to implement code to be able to interact with the service.

That's where Akamai CLI greatly help, no longer script to wrote yourself, you can run very common operations directly from the command line.
That's where Akamai CLI greatly help, no longer code to wrote yourself, you can run very common operations directly from the command line.

## Prerequisites

Expand Down Expand Up @@ -252,8 +252,9 @@ $ akamai etp tenant clients

## Frequently Asked Questions

<em>Q: Can I use cli-etp to stream data to my SIEM?</em>
A: Yes, you can use the file output and have the file monitor by a SIEM agent. Alternatively check out [Akamai Universal Log Streamer (ULS)](https://github.com/akamai/uls) which offer TCP, UDP, HTTP and File output with a lot of flexibility!
<em>Q: Can I use `cli-etp` to stream data to my SIEM?</em>
A: Yes, you can use the file output and have the file monitor by a SIEM agent.
Alternatively check out [Akamai Universal Log Streamer (ULS)](https://github.com/akamai/uls) which offer TCP, UDP, HTTP and File output with a lot of flexibility!

<em>Will there be a cli-sia?</em>
A: Maybe. We keep maintaining `cli-etp` and the project might be renamed to `cli-sia` at some point.
Expand Down
6 changes: 3 additions & 3 deletions bin/akamai-etp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3

# Copyright 2022 Akamai Technologies, Inc. All Rights Reserved
# Copyright 2023 Akamai Technologies, Inc. All Rights Reserved
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -40,7 +40,7 @@ from requests.compat import urljoin
from akamai.edgegrid import EdgeGridAuth, EdgeRc
from config import EdgeGridConfig

__version__ = "0.4.2"
__version__ = "0.4.3"

#: Window span in ad-hoc mode, default is 3 min
span_duration_min = 3
Expand Down Expand Up @@ -266,7 +266,7 @@ def fetch_event_page(start, end, page_number, thread_pool, pool_futures, stats,
post_data = {
'startTimeSec': start,
'endTimeSec': end,
'orderBy': "DESC",
'orderBy': "ASC",
'pageNumber': page_number,
'pageSize': EVENT_PAGE_SIZE,
'filters': {}
Expand Down
2 changes: 1 addition & 1 deletion cli.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"commands": [
{
"name": "etp",
"version": "0.4.2",
"version": "0.4.3",
"description": "Akamai CLI for Secure Internet Access Enterprise (f.k.a. Enterprise Threat Protector)"
}
]
Expand Down
95 changes: 0 additions & 95 deletions test/test.bash

This file was deleted.

0 comments on commit 1f87f58

Please sign in to comment.