aboutsummaryrefslogtreecommitdiffstats
path: root/dpd/main.py
diff options
context:
space:
mode:
authorandreas128 <Andreas>2017-08-04 21:58:31 +0100
committerandreas128 <Andreas>2017-08-04 21:58:31 +0100
commit38f171903a897d4b77b8d54d9cac772ccb8791c2 (patch)
treef05880a77e257deca864fdb0ff88ffe99eba09c6 /dpd/main.py
parentfe0c8e9f09e8562ba919661b8246351f4eb0a03c (diff)
downloaddabmod-38f171903a897d4b77b8d54d9cac772ccb8791c2.tar.gz
dabmod-38f171903a897d4b77b8d54d9cac772ccb8791c2.tar.bz2
dabmod-38f171903a897d4b77b8d54d9cac772ccb8791c2.zip
Add main.py and basic functions to get measurement
Diffstat (limited to 'dpd/main.py')
-rw-r--r--dpd/main.py41
1 files changed, 41 insertions, 0 deletions
diff --git a/dpd/main.py b/dpd/main.py
new file mode 100644
index 0000000..427bc28
--- /dev/null
+++ b/dpd/main.py
@@ -0,0 +1,41 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+
+import logging
+logging.basicConfig(format='%(asctime)s - %(module)s - %(levelname)s - %(message)s',
+ datefmt='%Y-%m-%d %H:%M:%S',
+ filename='/tmp/dpd.log',
+ filemode='w',
+ level=logging.DEBUG)
+import src.Measure as Measure
+
+port = 50055
+num_req = 10240
+
+m = Measure.Measure(port, num_req)
+
+logging.info("Do measurement")
+m.get_samples()
+logging.info("Done")
+
+# The MIT License (MIT)
+#
+# Copyright (c) 2017 Andreas Steger
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in all
+# copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+# SOFTWARE.