A label has a name and a value and is a way of displaying information in ecflowviewecflow_ui. Since the value can be anything (ASCII) it cannot be used in triggers.
...
In order to use labels you have to first define the label in the suite definition file, e.g.
Code Block |
---|
suite x family f task t label foo "" |
foo is the "name" of the label and the empty string is the default value of the label (the value is shown when the suite begins). After the command begins it looks like:
In an ecFlow job file, you can then modify your task to change the label while the job is running, e.g.
Code Block |
---|
ecflow_client --init =$$ ecflow_client –-label=foo "some text" ecflow_client --complete |
...
Code Block |
---|
ecflow_client --init =$$ ecflow_client –-label=foo multi line label ecflow_client --complete |
...
Code Block |
---|
ecflow_client --init =$$ ecflow_client –-label ="" multi line label ecflow_client --complete |
Anchor | ||||
---|---|---|---|---|
|