diff options
author | Dimitri Staessens <dimitri.staessens@ugent.be> | 2018-02-24 14:22:55 +0100 |
---|---|---|
committer | Dimitri Staessens <dimitri.staessens@ugent.be> | 2018-02-24 14:52:13 +0100 |
commit | 5e6f1b8dd525bf4c0f8a03463bdb1f4696f27dee (patch) | |
tree | 215c621915cf4eb68c489d654f599900e547be7a | |
parent | ed4a2f0d3c5c078e10b903f41b2eb68cbaf391cf (diff) | |
download | rumba-5e6f1b8dd525bf4c0f8a03463bdb1f4696f27dee.tar.gz rumba-5e6f1b8dd525bf4c0f8a03463bdb1f4696f27dee.zip |
prototypes: Show flow statistics for ouroboros
This enables exporting the flow statistics of the data transfer
component to the FUSE filesystem.
-rw-r--r-- | rumba/prototypes/ouroboros.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/rumba/prototypes/ouroboros.py b/rumba/prototypes/ouroboros.py index 4379cbc..6dec9e4 100644 --- a/rumba/prototypes/ouroboros.py +++ b/rumba/prototypes/ouroboros.py @@ -70,8 +70,9 @@ class Experiment(mod.Experiment): "git clone -b " + self.git_branch + " " + self.git_repo + \ " " + fs_loc, "cd " + fs_loc + " && mkdir build && cd build && " + - "cmake -DCMAKE_BUILD_TYPE=Debug -DCONNECT_TIMEOUT=60000 " + \ - "-DREG_TIMEOUT=60000 -DQUERY_TIMEOUT=4000 .. && " + \ + "cmake -DCMAKE_BUILD_TYPE=Debug -DIPCP_FLOW_STATS=True " + + "-DCONNECT_TIMEOUT=60000 " + + "-DREG_TIMEOUT=60000 -DQUERY_TIMEOUT=4000 .. && " + "sudo make install -j$(nproc)"] names = [] |