-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathresources.gp
49 lines (47 loc) · 2.53 KB
/
resources.gp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
reset
set terminal svg size 1000,1000 mouse enhanced background rgb "#11191f" fontscale 1.1 jsdir "/js/"
set xlabel "Time" tc rgb "white"
unset xtics
set ylabel "CPU (%)" tc rgb "white"
set y2label "Memory (MB)" tc rgb "white"
set ytics 0,50
set y2tics 0,32
set grid ytics lw 0.5
set style fill solid border
set border lc rgb "white"
set key tc rgb "white" outside below autotitle columnheader
set style data lines
set title sprintf("Resource Utilization - Caddy - %s clients", par) enhanced font ",16" tc rgb "white"
set multiplot
set origin 0,0
set size 0.5,0.5
plot caddy_default_html_large_baseline using 1:2 smooth csplines, \
caddy_default_html_large_baseline using 1:3 axes x1y2 smooth csplines, \
caddy_default_html_small_baseline using 1:2 smooth csplines, \
caddy_default_html_small_baseline using 1:3 axes x1y2 smooth csplines, \
caddy_default_proxy_baseline using 1:2 smooth csplines, \
caddy_default_proxy_baseline using 1:3 axes x1y2 smooth csplines, \
caddy_default_synthetic_baseline using 1:2 smooth csplines, \
caddy_default_synthetic_baseline using 1:3 axes x1y2 smooth csplines
set title sprintf("Resource Utilization - Nginx - Default - %s clients", par) enhanced font ",16" tc rgb "white"
set origin 0,0.5
set size 0.5,0.5
plot nginx_default_html_large_baseline using 1:2 smooth csplines, \
nginx_default_html_large_baseline using 1:3 axes x1y2 smooth csplines, \
nginx_default_html_small_baseline using 1:2 smooth csplines, \
nginx_default_html_small_baseline using 1:3 axes x1y2 smooth csplines, \
nginx_default_proxy_baseline using 1:2 smooth csplines, \
nginx_default_proxy_baseline using 1:3 axes x1y2 smooth csplines, \
nginx_default_synthetic_baseline using 1:2 smooth csplines, \
nginx_default_synthetic_baseline using 1:3 axes x1y2 smooth csplines
set title sprintf("Resource Utilization - Nginx - Optimized - %s clients", par) enhanced font ",16" tc rgb "white"
set origin 0.5,0.5
set size 0.5,0.5
plot nginx_optimized_html_large_baseline using 1:2 smooth csplines, \
nginx_optimized_html_large_baseline using 1:3 axes x1y2 smooth csplines, \
nginx_optimized_html_small_baseline using 1:2 smooth csplines, \
nginx_optimized_html_small_baseline using 1:3 axes x1y2 smooth csplines, \
nginx_optimized_proxy_baseline using 1:2 smooth csplines, \
nginx_optimized_proxy_baseline using 1:3 axes x1y2 smooth csplines, \
nginx_optimized_synthetic_baseline using 1:2 smooth csplines, \
nginx_optimized_synthetic_baseline using 1:3 axes x1y2 smooth csplines