mirror of
https://github.com/hyperdxio/hyperdx
synced 2026-04-21 13:37:15 +00:00
fix: extend level inference scanning range (#149)
This commit is contained in:
parent
24afb093e6
commit
9dc7750080
2 changed files with 8 additions and 2 deletions
6
.changeset/blue-berries-eat.md
Normal file
6
.changeset/blue-berries-eat.md
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
'@hyperdx/api': patch
|
||||
'@hyperdx/app': patch
|
||||
---
|
||||
|
||||
fix: extend level inference scanning range
|
||||
|
|
@ -527,9 +527,9 @@ if exists(.ts) {
|
|||
if is_nullish(.st) {
|
||||
header = ""
|
||||
if is_object(.r) && !is_nullish(.b._hdx_body) {
|
||||
header = slice(to_string(.b._hdx_body) ?? "", start: 0, end: 160) ?? ""
|
||||
header = slice(to_string(.b._hdx_body) ?? "", start: 0, end: 256) ?? ""
|
||||
} else {
|
||||
header = slice(to_string(.r) ?? "", start: 0, end: 160) ?? ""
|
||||
header = slice(to_string(.r) ?? "", start: 0, end: 256) ?? ""
|
||||
}
|
||||
if contains(header, "info", case_sensitive: false) {
|
||||
.st = "info"
|
||||
|
|
|
|||
Loading…
Reference in a new issue