Version 1 (modified by 18 years ago) ( diff ) | ,
---|
# # Create an application representation from scratch # require 'handler/appDefinition' a = AppDefinition.create('test:app:iperfr') a.name = "iperfr" a.version(0, 0, 1) a.shortDescription = "Iperf traffic generator" a.description = <<TEXT Iperf is a traffic generator for TCP and UDP traffic. It contains generators producing various forms of packet streams and port for sending these packets via various transports, such as TCP and UDP. TEXT # addProperty(name, description, mnemonic, type, isDynamic = false, constraints = nil) a.addProperty('udp', 'Use UDP, otherwise TCP by default', nil, String, false) a.addProperty('server', 'Client/Server', nil, String, false) a.addProperty('port', 'Receiver port number', nil, Integer, false) a.addProperty('window', 'TCP Receiver Window Size', nil, Integer, false) a.addProperty('time', "Duration for traffic generation(seconds)", nil, Integer, false) a.addProperty('len', "Payload Length(bytes)", nil, Integer, false) a.addProperty('interval', "Interval between reports (sec)", nil, Integer, false) a.addMeasurement("receiverport", nil, [ ['flow_no','int'], ['throughput',Float], ['jitter',Float], ['packet_loss',Float] ]) a.path = "/usr/bin/iperf" if $0 == __FILE__ require 'stringio'
Note:
See TracWiki
for help on using the wiki.