2

I'm digging through Akamai logs, downloading excel sheets, and then manually joining them so that I can do sorting of data to find top videos and referrers. Are there any tools you know of to help with this kind of processing? I'm looking for something like Urchin used to be for Apache logs, but for Akamai logs.

HopelessN00b
  • 53,385
  • 32
  • 133
  • 208
dsldsl
  • 141
  • 1
  • 3

4 Answers4

2

You can configure the Log delivery option to send you logs in "Combined" format. So you can use any standard tool of your choice (such as awstats or similar).

1

Check out Sumo Logic, it offers a cloud to cloud integration with Akamai, with rich out-of-the-box content, utilizing cloud monitor. Setup is a breeze, and you don't have to concern yourself with batch downloading/processing anything on-prem.

https://www.sumologic.com/2013/10/09/akamai-and-sumo-logic-integrate-for-real-time-application-insights/

Disclaimer- I am a Sumo Employee.

kelly
  • 11
  • 1
1

This question may be of help. I think Splunk and Epylog seem to do what you're looking for.

Other tools are referenced there and elsewhere that might also be helpful :)

warren
  • 17,829
  • 23
  • 82
  • 134
0

I just use a ton of awk, sort and uniq -c when doing things like this.

Perl can be great for repeatability, but be careful, when dealing with large data sets (I've recently been playing with BGP dumps from a DFZ router) it's really easy to push even a big machine into swap if you leak any memory.

Tools like Splunk etc. seem like they might be nice for ad-hoc stuff where a simple unix pipe might not work, but don't appear to be a good solution for more permanent reports.

You could simply use Awstats or similar, most web log processing tools can be told to to use a different input format.

LapTop006
  • 6,466
  • 19
  • 26