Search bar
Every workspace has a Search bar to navigate through it.
It can be triggered with shortcut Ctrl + K & ⌘k on Mac, or with the Search button from the sidebar. From here you can select from the options with the mouse or browse with the arrow keys.
Only Superadmins, Admins & Developers (not Operators) have access to this feature.
It can go to several pages:
- Home
- Runs
- Variables
- Resources
- Schedules
Prefix keys
Section titled “Prefix keys”With a special prefix key, you can search across:
- Completed runs (arguments, results) with key
>. - Content of scripts, flows and apps with key
#(without Enterprise Edition, content search will only search among 10 scripts, 3 flows, 3 apps and 3 resources). - Logs with key
!.
Searching runs
Section titled “Searching runs”Full text search is a feature available in Orvanta EE, however, note that it is disabled by default in the example docker compose. To enable full text search on logs and completed jobs, you need to spin up the indexer service.
You can search through completed runs by selecting the option on the search menu, or by prefixing your search with >.
Queries are parsed by Tantivy’s QueryParser, which lets you build relatively complex and useful queries. For example, you can try searching:
> script_path:u/user/searchable_flow AND success:falseto get the jobs corresponding to said path that also failed.
Searchable fields for jobs
Section titled “Searchable fields for jobs”The fields that are indexed and that you can use with the my_field:some_text syntax:
| Field name | Type |
|---|---|
| id | TEXT |
| parent_job | TEXT |
| created_by | TEXT |
| duration_ms | INT |
| success | BOOL |
| script_hash | TEXT |
| script_path | TEXT |
| args | TEXT |
| result | TEXT |
| logs | TEXT |
| deleted | BOOL |
| canceled | BOOL |
| canceled_by | TEXT |
| canceled_reason | TEXT |
| job_kind | TEXT |
| schedule_path | TEXT |
| permissioned_as | TEXT |
| is_flow_step | BOOL |
| language | TEXT |
| is_skipped | BOOL |
| TEXT | |
| visible_to_owner | BOOL |
| mem_peak | INT |
| tag | TEXT |
| created_at | DATE |
| started_at | DATE |
Content search
Section titled “Content search”By using the # prefix, you can use Orvanta’s Content search and search through scripts, flows, and apps.
Searching logs
Section titled “Searching logs”If you use the ! prefix and type any string, you will get an option to search that query on the Orvanta Service Logs tool.