mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-17 23:47:12 +00:00
* feat: introducing JSON Flattening * fix: removed bug and tested * test: removed testing test * feat: additional severity levels, and some clearing * chore: minor changes * test: added tests for processJSONParser * test: added check for OnError * fix: review from ellipsis * fix: variablise max flattening depth * Update pkg/query-service/app/logparsingpipeline/pipelineBuilder.go Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> * Update pkg/errors/errors.go Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> * fix: quoted JSON strings fix * test: updating otel collector for testing * test: update collector's reference * chore: change with new error package * chore: set flattening depth equal to 1 * fix: fallback for depth * fix: change in errors package * fix: tests * fix: test * chore: update collector version * fix: go.sum --------- Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> Co-authored-by: Nityananda Gohain <nityanandagohain@gmail.com>
9 lines
228 B
Go
9 lines
228 B
Go
package logparsingpipeline
|
|
|
|
import "github.com/SigNoz/signoz/pkg/errors"
|
|
|
|
var (
|
|
CodeInvalidOperatorType = errors.MustNewCode("operator_type_mismatch")
|
|
CodeFieldNilCheckType = errors.MustNewCode("operator_field_nil_check")
|
|
)
|