Horizontal Navigation Bar |
---|
Button Group |
---|
Button Hyperlink |
---|
title | Previous |
---|
type | standard |
---|
url | https://softwareconfluence.ecmwf.int/wiki/display/ECFLOW/AdvancedAdd+a+TopicsCron |
---|
|
Button Hyperlink |
---|
title | Up |
---|
type | standard |
---|
url | https://softwareconfluence.ecmwf.int/wiki/display/ECFLOW/Advanced+Topics |
---|
|
Button Hyperlink |
---|
title | Next |
---|
type | standard |
---|
url | https://softwareconfluence.ecmwf.int/wiki/display/ECFLOW/Repeat |
---|
|
|
|
Sometime Some time it is very useful to see
task-specific information information in
ecflow_uiFor this
, we can define a
label. A
label is a string that is attached to a
task
Ecf Script
We will create a new family f3 with label with a task t1.
Create
ecf script $HOME/course/test/f3label/t1.ecf
Code Block |
---|
language | bash |
---|
title | $HOME/course/test/f3label/t1.ecf |
---|
|
%include <head.h>
n=1
while [[ $n -le 5 ]] # Loop 5 times
do
msg="The date is now $(date)"
ecflow_client --label=info "$msg" # Set the label
sleep 60 # Wait a one minute
(( n = $n + 1 ))
done
ecflow_client --label=info "I have now finished my work."
%include <tail.h> |
Text
Code Block |
---|
# Definition of the suite test. Note Family f1,f2 from previous pages are omitted
suite test
edit ECF_INCLUDE "$HOME/course"
edit ECF_HOME "$HOME/course"
family f3label
task t1
label info ""
endfamily
endsuite |
Python
The following section shows how to add a an ecflow.Label in python: ( Note:
#!/usr/bin/env python2.7
families f1 and f2 are omitted for brevity)
Code Block |
---|
language | py |
---|
title | $HOME/course/test.py |
---|
|
import os
|
importfrom ecflow import Defs,Suite,Family,Task,Edit,Trigger,Complete,Event,Meter,Time,Day,Date,Label
def |
print "Creating suite definition"
defs = ecflow.Defs()
suite = defs.add_suite("test")
suite.add_variable("ECF_INCLUDE", create_family_label():
return Family("label",
Task("t1",
Label("info","")))
print("Creating suite definition")
home = os.path.join(os.getenv("HOME"), |
+ /suite.add_variable("ECF_HOME", os.getenv("HOME") + "/course")
suite.add_family("f3").add_task("t1").add_label("info","")
print defs
print defs = Defs(
Suite("test",
Edit(ECF_INCLUDE=home,ECF_HOME=home),
create_family_label()))
print(defs)
print("Checking job creation: .ecf -> .job0" |
(defs.check_job_creation())
print("Checking trigger expressions")
assert len(defs.check()) == 0, defs.check()
print("Saving definition to file 'test.def'")
defs.save_as_defs("test.def") |
What to do
- Modify the suite definition file or python script
- Create the new ecf script file $HOME/course/test/f3label/t1.ecf
- Replace the suite definition
- Watch in ecflow_ui
- Change the label colour in ecflow_ui, Tools->Preferences...→Appearance->Node Labels
Horizontal Navigation Bar |
---|
Button Group |
---|
Button Hyperlink |
---|
title | Previous |
---|
type | standard |
---|
url | https://softwareconfluence.ecmwf.int/wiki/display/ECFLOW/AdvancedAdd+a+TopicsCron |
---|
|
Button Hyperlink |
---|
title | Up |
---|
type | standard |
---|
url | https://softwareconfluence.ecmwf.int/wiki/display/ECFLOW/Advanced+Topics |
---|
|
Button Hyperlink |
---|
title | Next |
---|
type | standard |
---|
url | https://softwareconfluence.ecmwf.int/wiki/display/ECFLOW/Repeat |
---|
|
|
|
...