diff --git a/internal/extproc/slp/processor.go b/internal/extproc/slp/processor.go index d00c1ba..a4154ad 100644 --- a/internal/extproc/slp/processor.go +++ b/internal/extproc/slp/processor.go @@ -25,7 +25,7 @@ func (p *processor) Process(snapshot *collect.Snapshot) (io.ReadCloser, error) { return nil, fmt.Errorf("failed to find snapshot body: %w", err) } - cmd := exec.Command("slp", "my", "--config", p.confPath, "--output", "standard", "--format", "tsv", "--file", bodyPath) + cmd := exec.Command("slp", "my", "--config", p.confPath, "--format", "tsv", "--file", bodyPath) res, err := cmd.Output() if err != nil { diff --git a/internal/extproc/slp/slp.yml b/internal/extproc/slp/slp.yml index 5aba2a4..393b782 100644 --- a/internal/extproc/slp/slp.yml +++ b/internal/extproc/slp/slp.yml @@ -2,3 +2,4 @@ bundle_values: true bundle_where_in: true filters: Query matches "^(SELECT|INSERT|UPDATE|REPLACE) " limit: 65536 +output: standard