@@ -40,6 +40,7 @@ def match(self, *args):
40
40
41
41
parser = argparse .ArgumentParser (__file__ , description = "Fake Apache Log Generator" )
42
42
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" )
43
44
parser .add_argument ("--num" , "-n" , dest = 'num_lines' , help = "Number of lines to generate (0 for infinite)" , type = int , default = 1 )
44
45
parser .add_argument ("--prefix" , "-p" , dest = 'file_prefix' , help = "Prefix the output file name" , type = str )
45
46
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):
49
50
log_lines = args .num_lines
50
51
file_prefix = args .file_prefix
51
52
output_type = args .output_type
53
+ log_format = args .log_format
52
54
53
55
faker = Faker ()
54
56
@@ -58,15 +60,15 @@ def match(self, *args):
58
60
outFileName = 'access_log_' + timestr + '.log' if not file_prefix else file_prefix + '_access_log_' + timestr + '.log'
59
61
60
62
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
70
72
71
73
response = ["200" ,"404" ,"500" ,"301" ]
72
74
@@ -78,29 +80,32 @@ def match(self, *args):
78
80
79
81
flag = True
80
82
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