summaryrefslogtreecommitdiff
path: root/site/docs/documentation/Input/Traces.md
diff options
context:
space:
mode:
authorDante Niewenhuis <d.niewenhuis@hotmail.com>2024-11-05 14:17:08 +0100
committerGitHub <noreply@github.com>2024-11-05 14:17:08 +0100
commit0f835d57b0e989e25aa0b71fe374a0fb1a94e86f (patch)
tree8d777634dbb8a3e03b14ecc4208228f92127f4b5 /site/docs/documentation/Input/Traces.md
parentf3e578a2a43c99997dbf35e09debfde255a4ae22 (diff)
Documentation update (#261)
* Updated a lot of documentation, added a new get-started tutorial. * Applied Spotless * Applied Spotless Java * Added bitbrains workload to site
Diffstat (limited to 'site/docs/documentation/Input/Traces.md')
-rw-r--r--site/docs/documentation/Input/Traces.md26
1 files changed, 0 insertions, 26 deletions
diff --git a/site/docs/documentation/Input/Traces.md b/site/docs/documentation/Input/Traces.md
deleted file mode 100644
index ec5782cb..00000000
--- a/site/docs/documentation/Input/Traces.md
+++ /dev/null
@@ -1,26 +0,0 @@
-### Traces
-OpenDC works with two types of traces that describe the servers that need to be run. Both traces have to be provided as
-parquet files.
-
-#### Meta
-The meta trace provides an overview of the servers:
-
-| Metric | Datatype | Unit | Summary |
-|--------------|------------|----------|--------------------------------------------------|
-| id | string | | The id of the server |
-| start_time | datetime64 | datetime | The submission time of the server |
-| stop_time | datetime64 | datetime | The finish time of the submission |
-| cpu_count | int32 | count | The number of CPUs required to run this server |
-| cpu_capacity | float64 | MHz | The amount of CPU required to run this server |
-| mem_capacity | int64 | MB | The amount of memory required to run this server |
-
-#### Trace
-The Trace file provides information about the computational demand of each server over time:
-
-| Metric | Datatype | Unit | Summary |
-|-----------|------------|---------------|---------------------------------------------|
-| id | string | | The id of the server |
-| timestamp | datetime64 | datetime | The timestamp of the sample |
-| duration | int64 | milli seconds | The duration since the last sample |
-| cpu_count | int32 | count | The number of cpus required |
-| cpu_usage | float64 | MHz | The amount of computational power required. |