Skip to content

Commit

Permalink
slp v0.2.0に対応
Browse files Browse the repository at this point in the history
slp -> slp my
  • Loading branch information
ck9 committed Nov 4, 2023
1 parent 97c16b7 commit ed792b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/extproc/slp/processor.go
Original file line number Diff line number Diff line change
Expand Up @@ -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", "--config", p.confPath, "--output", "standard", "--format", "tsv", "--file", bodyPath)
cmd := exec.Command("slp", "my", "--config", p.confPath, "--output", "standard", "--format", "tsv", "--file", bodyPath)

res, err := cmd.Output()
if err != nil {
Expand Down

0 comments on commit ed792b0

Please sign in to comment.