Full-text search
Steep contains a powerful full-text search engine that be used to find submissions and process chains in the backend database. The search engine can be accessed through the /search HTTP endpoint or through the web-based user interface.
Query language
The focus of Steep’s query language is on end users. It is lightweight and contains only a few operators. There are no logical combinators such as AND or OR. The main idea is that Steep tries to find as many objects matching the query as possible and then sorts them by relevance, so the best matches are on the top of the list. It is assumed that workflows have a higher relevance than process chains. If you are using the search through the web interface, you will typically find what you are looking for on one of the first pages. You rarely have to access any page after the second or third one. This is similar to how a web search engine works.
A search query consists of one or more of the following elements:
- Term
A string that should appear somewhere in the document to find.
Put one or more terms into quotation marks (single or double) if you want to look for exact matches (including spaces). Within quoted terms, quotation marks can be escaped with the backslash character
\.Examples:
docker
"exact match"
"an \"exact match\" with quotation marks"- Date
A string in the form
yyyy-MM-ddThe operators
<(less than),<=(less than or equal to),>(greater than), and>=(greater than or equal to) can be used to find objects with a date that is before or after the given one.Examples:
2025-12-03<2025-12-03>=2025-12-03- Date/time
A string in the form
yyyy-MM-dd'T'HH:mm[:ss]. Seconds are optional.The operators
<(less than),<=(less than or equal to),>(greater than), and>=(greater than or equal to) can be used to find objects with a date/time pair that is before or after the given one.Examples:
2025-12-03T20:072025-12-03T20:07:59>2025-12-03T20:07<=2025-12-03T20:07:59- Time range
A string representing a time range in the form
yyyy-MM-dd['T'HH:mm[:ss]]..yyyy-MM-dd['T'HH:mm[:ss]]. Times as well as seconds within times are optional. The time range is inclusive, which means that objects with a date that matches the given start date as well as those with a date matching the given end date are included.Examples:
2025-12-02..2025-12-032025-12-03T20:06..2025-12-03T20:07- Locator
A string starting with
in:and denoting the attribute that should be compared with the give term(s), dates, date/time pairs, and time ranges. See Attributes below for a complete list of all possible attributes.Example:
in:name- Type
A string starting with
is:and denoting the type of documents to search. Possible values areis:workflowandis:processchain.- Filter
A string that consists of an attribute name, followed by a colon and a term, date, date/time pair, or time range that should appear in this attribute. See Attributes below for a complete list of all possible attributes.
Examples:
name:Elvis
start:<=2025-12-03- Attributes
Possible values (including aliases) for attributes are:
idnameerror,errormessagerc,cap,reqcap,capability,requiredcapability,rcs,caps,reqcaps,capabilities,requiredcapabilitiessourcestart,startTimeend,endTime
See the submission and process chain data models for more information about these attributes.
Search examples
filename highmemorySearch for objects that contain the terms
filenameorhighmemoryin any of their attributes. Since results are sorted by relevance, objects matching both terms will appear at the top of the list."exact match"Use quotation marks to search for literal (exact) strings.
filename is:workflowSearch for the term
filenamebut only in workflows.error:127 is:processchainSearch for process chains whose error message contains the term
127.highmemory in:requiredcapabilitiesSearch for objects where the term
highmemoryappears in the list of required capabilities. Does not include objects where the termhighmemoryappears in any other attribute but the required capabilities.rcs:highmemorySearch for objects whose required capabilities (alias
rcs) contain the termhighmemory.filename status:errorSearch for objects containing the term
filenamebut only if their status equalserror.2025-12-03Search for workflows or process chains that have started or finished on 03 December 2025.
<2025-12-03T20:07Search for workflows or process chains that have started or finished before 20:07 on 03 December 2025.
>=2025-12-03T20:07:59Search for workflows or process chains that have started or finished at or after 20:07:59 on 03 December 2025.
start:2025-12-02..2025-12-03Search for workflows or process chains that have been started between 02 December 2025 and 03 December 2025 (inclusive).
filename in:source is:workflow rcs:highmemorySearch for workflows containing the term
filenamein their source and whose required capabilities contain the termhighmemory.exit code 127 in:error is:processchainSearch for process chains containing the terms
exit,code, or127in their error message. Objects containing all terms in their error message will get a higher relevance and appear at the top of the list.
Search results
The HTTP endpoint /search returns a list of search result objects. Each such object refers to an item found and contains information about which properties of this item have matched with which search term and where in these properties the search term has been found.
The following list describes the properties of this object. For more information about each individual property, please refer to the description of the submission and process chain data models.
Matches
A match object specifies a which property of an item has matched with which search term and where the match has occurred.
termMatches is an array of objects with the following properties: