OEDL
1 program
Added 2026-03-17T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: enabled
Evidence
Report issue
View issues
Aliases: OMF Experiment Description Language
Provenance: commit ae3df423ec · authored 2026-03-17T03:04:44+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Simple Ping Network Experiment
Provenance: commit ae3df423ec · authored 2026-03-17T03:04:44+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch enabled
defApplication('simple_ping') do |app|
app.description = 'Simple Definition for the simple_ping application'
app.binary_path = '/bin/ping'
app.defProperty('target', 'Address to ping', '', {:type => :string})
app.defProperty('count', 'Number of times to ping', '-c', {:type => :integer})
end
defGroup('Sender', 'node11') do |g|
g.addApplication("simple_ping") do |app|
app.setProperty('target', '8.8.8.8')
app.setProperty('count', 3)
app.measure('ping', :samples => 1)
end
end
onEvent(:ALL_UP_AND_INSTALLED) do |event|
info "This is my first OMF experiment"
allGroups.startApplications
after 15 do
allGroups.stopApplications
end
after 10 do
Experiment.done
end
end