aboutsummaryrefslogtreecommitdiffstats
path: root/samples/netperf_node.yaml
diff options
context:
space:
mode:
authorrexlee8776 <limingjiang@huawei.com>2016-07-12 09:46:12 +0000
committerrexlee8776 <limingjiang@huawei.com>2016-07-14 06:49:23 +0000
commit1d7bdc10b32892539f8bf69eb9631918d34ffd61 (patch)
treee56f6885306b5ddfb3b91312efaf07e0e664b3f7 /samples/netperf_node.yaml
parent567694e4db2d0776db6c115b98f54a4737e52124 (diff)
throughput between nodes (in progress)
JIRA: YARDSTICK-256 Change-Id: I48d66081dcfabf4462ef1ff15c9a3ad28132aaf9 Signed-off-by: rexlee8776 <limingjiang@huawei.com>
Diffstat (limited to 'samples/netperf_node.yaml')
-rwxr-xr-xsamples/netperf_node.yaml51
1 files changed, 51 insertions, 0 deletions
diff --git a/samples/netperf_node.yaml b/samples/netperf_node.yaml
new file mode 100755
index 000000000..d59bbf235
--- /dev/null
+++ b/samples/netperf_node.yaml
@@ -0,0 +1,51 @@
+---
+# Sample benchmark task config file
+# measure network latency and throughput using netperf
+# There are two sample scenarios: bulk test and request/response test
+# In bulk test, UDP_STREAM and TCP_STREAM can be used
+# send_msg_size and recv_msg_size are options of bulk test
+# In req/rsp test, TCP_RR TCP_CRR UDP_RR can be used
+# req_rsp_size is option of req/rsp test
+
+schema: "yardstick:task:0.1"
+
+scenarios:
+-
+ type: NetperfNode
+ options:
+ testname: 'UDP_STREAM'
+ send_msg_size: 1024
+ duration: 20
+
+ host: node1.LF
+ target: node2.LF
+
+ runner:
+ type: Iteration
+ iterations: 1
+ interval: 1
+ sla:
+ mean_latency: 100
+ action: monitor
+#-
+# type: NetperfNode
+# options:
+# testname: 'TCP_RR'
+# req_rsp_size: '32,1024'
+#
+# host: node1.LF
+# target: node2.LF
+#
+# runner:
+# type: Duration
+# duration: 20
+# interval: 1
+# sla:
+# mean_latency: 300
+# action: monitor
+
+context:
+ type: Node
+ name: LF
+ file: etc/yardstick/nodes/compass_sclab_physical/pod.yaml
+