Diff of Infrastructure And Operations/Rathouse at 3a98a83

diff --git a/infrastructure_and_operations/rathouse.myco b/infrastructure_and_operations/rathouse.myco
index a804082..6bb7381 100644
--- a/infrastructure_and_operations/rathouse.myco
+++ b/infrastructure_and_operations/rathouse.myco
@@ -54,2 +54,36 @@ mdadm + ext4 using `disk-benchmark`
   alpine  |     278MB/s      |   18.2k    |  15.7GB/s (wat) | 55.4k
+```
+
+
+#### disk-benchmark
+
+this is the script we use to benchmark disks
+
+pls don't change any of the values tbh because it throws off everything
+
+```
+# write throughput
+fio --name=write_throughput --directory=. --numjobs=8 \
+--size=10G --time_based --runtime=60s --ramp_time=2s --ioengine=libaio \
+--direct=1 --verify=0 --bs=1M --iodepth=64 --rw=write \
+--group_reporting=1
+
+# write iops
+fio --name=write_iops --directory=. --size=10G \
+--time_based --runtime=60s --ramp_time=2s --ioengine=libaio --direct=1 \
+--verify=0 --bs=4K --iodepth=64 --rw=randwrite --group_reporting=1
+
+# read throughput (sequential reads)
+fio --name=read_throughput --directory=. --numjobs=8 \
+--size=10G --time_based --runtime=60s --ramp_time=2s --ioengine=libaio \
+--direct=1 --verify=0 --bs=1M --iodepth=64 --rw=read \
+--group_reporting=1
+
+# read iops (random reads)
+fio --name=read_iops --directory=. --size=10G \
+--time_based --runtime=60s --ramp_time=2s --ioengine=libaio --direct=1 \
+--verify=0 --bs=4K --iodepth=64 --rw=randread --group_reporting=1
+
+# clean up tbh
+rm write* read*
 ```
\ No newline at end of file