From e40a3262f0b5d0834fde5e8c5cbffb9e5ff534f2 Mon Sep 17 00:00:00 2001 From: mjkwiatkowski Date: Sat, 11 Jul 2026 23:53:57 +0200 Subject: feat: completed appendix A --- sources/config_files.tex | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 sources/config_files.tex (limited to 'sources') diff --git a/sources/config_files.tex b/sources/config_files.tex new file mode 100644 index 0000000..e959942 --- /dev/null +++ b/sources/config_files.tex @@ -0,0 +1,48 @@ +\begin{lstlisting}[caption=The default experiment configuration. Here the trace is set to WhatsApp's.] +{ + "name": "greenifier-demo-scaling", + "topologies": [ + { + "pathToFile": "resources/topologies/surf.json" + } + ], + "workloads": [ + { + "pathToFile": "resources/workloads/surf_month", + "type": "ComputeWorkload" + } + ], + "failureModels" : [ + { + "type": "trace-based", + "pathToFile" : "resources/failures/Whatsapp_user_reported.parquet" + } + ], + "exportModels": [ + { + "exportInterval": 3600 + } + ] +}\end{lstlisting} +\begin{lstlisting}[caption=The default toplogy used in all experiments.] +{"clusters": [ + { + "name": "C01", + "hosts" : [ + { + "name": "H01", + "cpu": { + "coreCount": 16, + "coreSpeed": 2100 + }, + "memory": { + "memorySize": 128000000 + }, + "count": 277 + }], + "powerSource": { + "carbonTracePath": "resources/carbon_traces/NL_2021-2024.parquet" + } +}]}\end{lstlisting} + + -- cgit v1.2.3