Skip to content

Commit 06c38c5

Browse files
author
Kirit Basu
authored
Merge pull request #9 from aojea/CLF
Added Common Log Format output
2 parents 6d157d4 + 751adbd commit 06c38c5

File tree

1 file changed

+40
-35
lines changed

1 file changed

+40
-35
lines changed

apache-fake-log-gen.py

+40-35
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ def match(self, *args):
4040

4141
parser = argparse.ArgumentParser(__file__, description="Fake Apache Log Generator")
4242
parser.add_argument("--output", "-o", dest='output_type', help="Write to a Log file, a gzip file or to STDOUT", choices=['LOG','GZ','CONSOLE'] )
43+
parser.add_argument("--log-format", "-l", dest='log_format', help="Log format, Common or Extended Log Format ", choices=['CLF','ELF'], default="ELF" )
4344
parser.add_argument("--num", "-n", dest='num_lines', help="Number of lines to generate (0 for infinite)", type=int, default=1)
4445
parser.add_argument("--prefix", "-p", dest='file_prefix', help="Prefix the output file name", type=str)
4546
parser.add_argument("--sleep", "-s", help="Sleep this long between lines (in seconds)", default=0.0, type=float)
@@ -49,6 +50,7 @@ def match(self, *args):
4950
log_lines = args.num_lines
5051
file_prefix = args.file_prefix
5152
output_type = args.output_type
53+
log_format = args.log_format
5254

5355
faker = Faker()
5456

@@ -58,15 +60,15 @@ def match(self, *args):
5860
outFileName = 'access_log_'+timestr+'.log' if not file_prefix else file_prefix+'_access_log_'+timestr+'.log'
5961

6062
for case in switch(output_type):
61-
if case('LOG'):
62-
f = open(outFileName,'w')
63-
break
64-
if case('GZ'):
65-
f = gzip.open(outFileName+'.gz','w')
66-
break
67-
if case('CONSOLE'): pass
68-
if case():
69-
f = sys.stdout
63+
if case('LOG'):
64+
f = open(outFileName,'w')
65+
break
66+
if case('GZ'):
67+
f = gzip.open(outFileName+'.gz','w')
68+
break
69+
if case('CONSOLE'): pass
70+
if case():
71+
f = sys.stdout
7072

7173
response=["200","404","500","301"]
7274

@@ -78,29 +80,32 @@ def match(self, *args):
7880

7981
flag = True
8082
while (flag):
81-
if args.sleep:
82-
increment = datetime.timedelta(seconds=args.sleep)
83-
else:
84-
increment = datetime.timedelta(seconds=random.randint(30, 300))
85-
otime += increment
86-
87-
ip = faker.ipv4()
88-
dt = otime.strftime('%d/%b/%Y:%H:%M:%S')
89-
tz = datetime.datetime.now(local).strftime('%z')
90-
vrb = numpy.random.choice(verb,p=[0.6,0.1,0.1,0.2])
91-
92-
uri = random.choice(resources)
93-
if uri.find("apps")>0:
94-
uri += str(random.randint(1000,10000))
95-
96-
resp = numpy.random.choice(response,p=[0.9,0.04,0.02,0.04])
97-
byt = int(random.gauss(5000,50))
98-
referer = faker.uri()
99-
useragent = numpy.random.choice(ualist,p=[0.5,0.3,0.1,0.05,0.05] )()
100-
f.write('%s - - [%s %s] "%s %s HTTP/1.0" %s %s "%s" "%s"\n' % (ip,dt,tz,vrb,uri,resp,byt,referer,useragent))
101-
f.flush()
102-
103-
log_lines = log_lines - 1
104-
flag = False if log_lines == 0 else True
105-
if args.sleep:
106-
time.sleep(args.sleep)
83+
if args.sleep:
84+
increment = datetime.timedelta(seconds=args.sleep)
85+
else:
86+
increment = datetime.timedelta(seconds=random.randint(30, 300))
87+
otime += increment
88+
89+
ip = faker.ipv4()
90+
dt = otime.strftime('%d/%b/%Y:%H:%M:%S')
91+
tz = datetime.datetime.now(local).strftime('%z')
92+
vrb = numpy.random.choice(verb,p=[0.6,0.1,0.1,0.2])
93+
94+
uri = random.choice(resources)
95+
if uri.find("apps")>0:
96+
uri += str(random.randint(1000,10000))
97+
98+
resp = numpy.random.choice(response,p=[0.9,0.04,0.02,0.04])
99+
byt = int(random.gauss(5000,50))
100+
referer = faker.uri()
101+
useragent = numpy.random.choice(ualist,p=[0.5,0.3,0.1,0.05,0.05] )()
102+
if log_format == "CLF":
103+
f.write('%s - - [%s %s] "%s %s HTTP/1.0" %s %s\n' % (ip,dt,tz,vrb,uri,resp,byt))
104+
elif log_format == "ELF":
105+
f.write('%s - - [%s %s] "%s %s HTTP/1.0" %s %s "%s" "%s"\n' % (ip,dt,tz,vrb,uri,resp,byt,referer,useragent))
106+
f.flush()
107+
108+
log_lines = log_lines - 1
109+
flag = False if log_lines == 0 else True
110+
if args.sleep:
111+
time.sleep(args.sleep)

0 commit comments

Comments
 (0)