







make c
heck
`$ sudo dmesg > kernel_log.txt`
```python
with open("kernel_log.txt", "r") as file:
lines = file.readlines()
with open("execution_times.txt", "w") as output_file:
sample_number = 1
for line in lines:
parts = line.split()
print(parts)
execution_time = int(parts[2])
output_file.write(f"{sample_number} {execution_time}\n")
sample_number += 1
```
```
set title "Execution Times"
set xlabel "request"
set ylabel "Time (ns)"
set datafile separator " "
set terminal png
set output "execution_times.png"
plot "execution_times.txt" using 1:2 with lines
```
`$ gnuplot plot_execution_times.gp`





