Skip to content
Snippets Groups Projects
Commit e59d7754 authored by Rowan Powell's avatar Rowan Powell
Browse files

Added port and service function configuration to simulated measurements

parent 32fa97f7
No related branches found
No related tags found
No related merge requests found
......@@ -116,8 +116,8 @@ def _configure_port(port_id, state, rate, time):
result = 'net_port_config '
# Fields
result += 'port_id=' + quote_wrap('enps' + port_id)
result += 'port_state=' + quote_wrap(state)
result += 'tx_constraint=' + quote_wrap(rate)
result += ',port_state=' + quote_wrap(state)
result += ',tx_constraint=' + quote_wrap(rate)
result += ' '
# Time
......@@ -130,10 +130,10 @@ def _configure_service_function(state, max_connected_clients):
# measurement
result = 'mpegdash_service_config'
# tags
result += ',running='+quote_wrap(state)
result += ',service_state='+quote_wrap(state)
result += ' '
# fields
result += 'max_connected_clients='+max_connected_clients
result += 'max_connected_clients='+str(max_connected_clients)
return result
......
No preview for this file type
......@@ -267,9 +267,12 @@ class DemoServer(object):
print("Configuring")
self.configure_VM('starting')
self.configure_VM('running')
time.sleep(1)
time.sleep(0.1)
self.configure_server(server_id, server_location)
#self.generate_clients()
self._sendInfluxData(lp._configure_port('01', 'running', '1GB/s', self.currentTime))
self._sendInfluxData(lp._configure_service_function('starting', 100))
time.sleep(0.1)
self._sendInfluxData(lp._configure_service_function('running', 100))
def _cpuUsage(self, clientCount):
cpuUsage = randint(0, 10)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment