You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/dashboards-reference.md
+93Lines changed: 93 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,6 +33,99 @@ The following fields are used across nearly all dashboards and are not repeated
33
33
34
34
---
35
35
36
+
## URIs for pivoting between Malcolm tools
37
+
38
+
The following URI patterns are used to pivot between Malcolm components, such as from Arkime to OpenSearch Dashboards or from OpenSearch Dashboards to NetBox, with filters or search expressions pre-applied.
39
+
40
+
The URI patterns are grouped below by destination.
41
+
42
+
See also the [Malcolm REST APIs](api.md#API).
43
+
44
+
### OpenSearch Dashboards
45
+
46
+
Use the following URI pattern to open OpenSearch Dashboards with a field/value filter and time range applied:
47
+
48
+
```text
49
+
/idark2dash/filter?<URI parameters>
50
+
```
51
+
52
+
#### URI parameters
53
+
54
+
*`start` - beginning of the search time frame, in ISO 8601 UTC format at second precision
55
+
*`stop` - end of the search time frame, in ISO 8601 UTC format at second precision
Use the following URI pattern to open Arkime with a query expression applied:
68
+
69
+
```text
70
+
/iddash2ark/<expression>
71
+
```
72
+
73
+
`<expression>` is an Arkime search expression. For a detailed guide to Arkime query syntax, see the Arkime help page at **https://localhost/arkime/help#search** when connected locally. Users may also review the [Arkime source code](https://github.com/arkime/arkime/blob/main/viewer/vueapp/src/components/help/Help.vue) used to generate that help page.
74
+
75
+
#### Example
76
+
77
+
```text
78
+
/iddash2ark/db:event.provider == "zeek"
79
+
```
80
+
81
+
### NetBox
82
+
83
+
Use the following URI pattern to open NetBox with a search or object filter applied:
84
+
85
+
```text
86
+
/netbox/<expression>
87
+
```
88
+
89
+
`<expression>` depends on the Malcolm field being pivoted from and the type of NetBox object being searched.
0 commit comments