-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c3c7ccc
commit 2c3ee8f
Showing
3 changed files
with
89 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/usr/bin/env bash | ||
|
||
for exp in Blocking-Api-Disabled/* ; | ||
do | ||
echo $exp | ||
f1=`basename $exp` | ||
for subexp in `seq 100 100 1000` | ||
do | ||
for p in `seq 0 1 10` | ||
do | ||
filename=$exp/$subexp/top_data_node${p}.txt | ||
echo "Working on $filename" | ||
awk '/open5gs|docker|kube|calico|container|bash|python|systemd-journal|2021-|top -|Tasks:|Cpu\(s\)|MiB Mem|MiB Swap:/' $filename > $filename-tmp | ||
sed '/2021-/s/^/\n/' $filename-tmp > $filename | ||
rm -f $filename-tmp | ||
done | ||
done | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters