Skip to content

Commit a9aede3

Browse files
committed
lock to processwatch commit
1 parent 3711af3 commit a9aede3

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

internal/script/script_defs.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1104,7 +1104,7 @@ fi
11041104
scriptParts := []string{
11051105
"processwatch -c",
11061106
}
1107-
// if no PID specified, increase the sampling interval (defaults to 10,000) to reduce overhead
1107+
// if no PID specified, increase the sampling interval (defaults to 100,000) to reduce overhead
11081108
if params.PID == 0 {
11091109
scriptParts = append(scriptParts, fmt.Sprintf("-s %d", 1000000))
11101110
} else {

tools/Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,9 @@ processwatch:
167167
ifeq ("$(wildcard processwatch)","")
168168
git clone --recursive https://github.com/intel/processwatch.git
169169
else
170-
cd processwatch && git checkout master && git pull
170+
cd processwatch && git checkout main && git pull
171171
endif
172+
cd processwatch && git checkout c394065 # this commit id has been tested
172173
cd processwatch && ./build.sh
173174
mkdir -p bin
174175
cp processwatch/processwatch bin/

0 commit comments

Comments
 (0)