apache_log_report 0.9.9 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/apache_log_report.rb +13 -13
- data/lib/apache_log_report/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: be24b7fd62ff47195fe5e19cd2717252a37a687a8d92745add21acc952fc50a3
|
|
4
|
+
data.tar.gz: 3f5daff6a7447b6acca3a7ef456b148c3de49ff2dee87b75d419763dc2bbe2c4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d5271fd26059e942a730c649cd6ea00c35b459c3f5b130bd2d0ae707717b3554c90b7adff8364f384e56b5e8782ca147b1fd40f957290aed4a7bc443eb38387c
|
|
7
|
+
data.tar.gz: 475dfe3e49e76434c620bb75558bc2b5e40c6441fe455fca58d9b70b366a549f76a9d1bbbf9aae4bf5c9e0daa013770cefa9047fa11b8206f7eff4425be54b50
|
data/lib/apache_log_report.rb
CHANGED
|
@@ -304,8 +304,8 @@ plot data using 1:2 with linespoints lw 3 lc rgb "#0000AA" pointtype 5 title "Hi
|
|
|
304
304
|
data using 1:2 with filledcurves below x1 linecolor rgb "#0000AA" notitle axes x1y2, \\
|
|
305
305
|
data using 1:3 with linespoints lw 3 lc rgb "#AA0000" pointtype 7 title "Visitors", \\
|
|
306
306
|
data using 1:3 with filledcurves below x1 notitle linecolor rgb "#AA0000", \\
|
|
307
|
-
data using 1:($3+
|
|
308
|
-
data using 1:($2+
|
|
307
|
+
data using 1:($3+0.1*$3):3 with labels notitle textcolor rgb "#AA0000", \\
|
|
308
|
+
data using 1:($2+0.1*$2):2 with labels notitle textcolor rgb "#0000AA" axes x1y2
|
|
309
309
|
#+END_SRC
|
|
310
310
|
|
|
311
311
|
|
|
@@ -334,8 +334,8 @@ set style histogram clustered gap 1
|
|
|
334
334
|
|
|
335
335
|
plot data using 2:xtic(1) lc rgb "#0000AA" title "Hits", \\
|
|
336
336
|
data using 3 lc rgb "#AA0000" title "Visitors" axes x1y2, \\
|
|
337
|
-
data using ($0 - 0.2):($2 +
|
|
338
|
-
data using ($0 + 0.2):($3 +
|
|
337
|
+
data using ($0 - 0.2):($2 + 0.1*$2):2 with labels title "" textcolor rgb("#0000AA"), \\
|
|
338
|
+
data using ($0 + 0.2):($3 + 0.1*$3):3 with labels title "" textcolor rgb("#AA0000") axes x1y2
|
|
339
339
|
#+END_SRC
|
|
340
340
|
|
|
341
341
|
#+BEGIN_SRC gnuplot :var data = time_distribution :results output :exports #{@export} :file #{@prefix}time-traffic#{@suffix}.svg
|
|
@@ -355,7 +355,7 @@ set style data histograms
|
|
|
355
355
|
set style histogram clustered gap 1
|
|
356
356
|
|
|
357
357
|
plot data using 2:xtic(1) lc rgb "#00AA00" title "Traffic", \\
|
|
358
|
-
data using ($0):($2 +
|
|
358
|
+
data using ($0):($2 + 0.1*$2):2 with labels title "" textcolor rgb("#00AA00")
|
|
359
359
|
#+END_SRC
|
|
360
360
|
|
|
361
361
|
* Most Requested Pages
|
|
@@ -391,7 +391,7 @@ set style fill solid 0.25
|
|
|
391
391
|
set boxwidth 0.6
|
|
392
392
|
|
|
393
393
|
plot data using 2:xtic(1) with boxes lc rgb "#0000AA" title "Hits", \\
|
|
394
|
-
data using ($0):($2+
|
|
394
|
+
data using ($0):($2+0.1*$2):2 with labels textcolor rgb "#0000AA"
|
|
395
395
|
#+END_SRC
|
|
396
396
|
|
|
397
397
|
* Daily Statuses
|
|
@@ -418,9 +418,9 @@ set style histogram clustered gap 1
|
|
|
418
418
|
plot data using 2:xtic(1) lc rgb "#00AA00" title "2xx", \\
|
|
419
419
|
data using 3 lc rgb "#0000CC" title "3xx", \\
|
|
420
420
|
data using 4 lc rgb "#AA0000" title "4xx", \\
|
|
421
|
-
data using ($0 - 1. / 4):($2 + 0.
|
|
422
|
-
data using ($0):($3 + 0.
|
|
423
|
-
data using ($0 + 1. / 4):($4 + 0.
|
|
421
|
+
data using ($0 - 1. / 4):($2 + 0.1*$2):2 with labels title "" textcolor rgb("#00AA00"), \\
|
|
422
|
+
data using ($0):($3 + 0.1*$3):3 with labels title "" textcolor rgb("#0000CC"), \\
|
|
423
|
+
data using ($0 + 1. / 4):($4 + 0.1*$4):4 with labels title "" textcolor rgb("#AA0000")
|
|
424
424
|
#+END_SRC
|
|
425
425
|
|
|
426
426
|
* Browsers
|
|
@@ -436,7 +436,7 @@ set style fill solid 0.25
|
|
|
436
436
|
set boxwidth 0.6
|
|
437
437
|
|
|
438
438
|
plot data using 2:xtic(1) with boxes lc rgb "#0000AA" title "Hits", \\
|
|
439
|
-
data using ($0):($2+
|
|
439
|
+
data using ($0):($2+0.1*$2):2 with labels textcolor rgb "#0000AA"
|
|
440
440
|
#+END_SRC
|
|
441
441
|
|
|
442
442
|
* Platforms
|
|
@@ -452,7 +452,7 @@ set style fill solid 0.25
|
|
|
452
452
|
set boxwidth 0.6
|
|
453
453
|
|
|
454
454
|
plot data using 2:xtic(1) with boxes lc rgb "#0000AA" title "Hits", \\
|
|
455
|
-
data using ($0):($2+
|
|
455
|
+
data using ($0):($2+0.1*$2):2 with labels textcolor rgb "#0000AA"
|
|
456
456
|
#+END_SRC
|
|
457
457
|
|
|
458
458
|
* IPs
|
|
@@ -484,8 +484,8 @@ set style histogram clustered gap 1
|
|
|
484
484
|
|
|
485
485
|
plot data using 2:xtic(1) lc rgb "#AA00AA" title "Hits", \\
|
|
486
486
|
data using 3 lc rgb "#0AAAA0" title "Visits", \\
|
|
487
|
-
data using ($0 - 1. / 3):($2 +
|
|
488
|
-
data using ($0 + 1. / 3):($3 +
|
|
487
|
+
data using ($0 - 1. / 3):($2 + 0.1*$2):2 with labels title "" textcolor rgb("#AA00AA"), \\
|
|
488
|
+
data using ($0 + 1. / 3):($3 + 0.1*$3):3 with labels title "" textcolor rgb("#0AAAA0")
|
|
489
489
|
#+END_SRC
|
|
490
490
|
|
|
491
491
|
* Command Invocation and Performance
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: apache_log_report
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Adolfo Villafiorita
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-02-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: apache_log-parser
|