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
error.value:"could not connect (*)" -> connection-error
68
68
```
69
69
70
-
### `message`
70
+
### `level`
71
71
72
-
Matches on a log message. It will also automatically check for the additional exception value as they can be hard to keep apart. The matching is case insensitive.
72
+
Matches on the log level. The match is case insensitive.
73
73
74
74
```bash {tabTitle:Fingerprinting Config}
75
-
message:"system encountered a fatal problem: *" ->fatal-log
Matches on the value of the tag `tag_name`. This can be useful to filter down certain types of events. For instance, you can separate events caused by a specific server:
88
+
Matches on a log message. It will also automatically check for the additional exception value as they can be hard to keep apart. The matching is case insensitive.
Similar to `stack.abs_path` but matches on the module name instead. The match is case-sensitive and regular globbing rules apply (`*` also matches slashes).
108
+
Checks if any of the functions in the stack trace match the glob. The match is case-sensitive:
Checks if any of the functions in the stack trace match the glob. The match is case-sensitive:
118
+
Similar to `stack.abs_path` but matches on the module name instead. The match is case-sensitive and regular globbing rules apply (`*` also matches slashes).
Used to "scope" down the matcher. The following families exist: `javascript` for any type of JavaScript event, `native` for any type of Native event. Any other platform is called `other`.
137
+
Matches on the value of the tag `tag_name`. This can be useful to filter down certain types of events. For instance, you can separate events caused by a specific server:
Additionally, the folowing utility matchers are available:
@@ -158,6 +150,14 @@ Checks if the frame is in-app or not. It is particularly useful when combined wi
158
150
app:yes stack.function:"assert" -> assert
159
151
```
160
152
153
+
### `family`
154
+
155
+
Used to "scope" down the matcher. The following families exist: `javascript` for any type of JavaScript event, `native` for any type of Native event. Any other platform is called `other`.
0 commit comments