Skip to content

Commit

Permalink
Merge pull request #34 from ck9/master
Browse files Browse the repository at this point in the history
slp v0.2.0に対応
  • Loading branch information
kaz committed Nov 7, 2023
2 parents 97c16b7 + ed792b0 commit 53065fa
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 53065fa

Please sign in to comment.