mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
4194c44131
#14888 @getvictor This is ready for review, but keeping as draft as there are probably many tests that need amending. I used the new version of the `./tools/nvd/nvdvuln/nvdvuln.go` to compare the current vulnerabilities found in our dogfood environment with the vulnerabilities found by the code in this PR and both results match: ``` go run -race -tags fts5 ./tools/nvd/nvdvuln/nvdvuln.go --debug --db_dir ./local --software_from_url <dogfood URL> --software_from_api_token <API_TOKEN> --sync 2>&1 | tee out.txt [...] CVEs found and expected matched! ``` - [X] Changes file added for user-visible changes in `changes/` or `orbit/changes/`. See [Changes files](https://fleetdm.com/docs/contributing/committing-changes#changes-files) for more information. - [ ] Added/updated tests - [X] Manual QA for all new/changed functionality --------- Co-authored-by: Victor Lyuboslavsky <victor@fleetdm.com> Co-authored-by: Victor Lyuboslavsky <victor.lyuboslavsky@gmail.com>
33 lines
784 B
Bash
Executable File
33 lines
784 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DB_DIR=$1
|
|
|
|
# Generate gnuplot commands to render CPU and memory data points
|
|
# from a cpu_and_mem.dat file under $DB_DIR.
|
|
|
|
cat <<EOF > gnuplot_commands.txt
|
|
set xdata time
|
|
set timefmt "%H:%M:%S"
|
|
set format x "%H:%M"
|
|
set xtics rotate by -45
|
|
set terminal jpeg
|
|
|
|
set ylabel '% CPU'
|
|
set yrange [0:800]
|
|
set ytics nomirror
|
|
|
|
set y2label 'Memory (MB)'
|
|
set y2range [0:5000]
|
|
set y2tics 0, 500
|
|
|
|
set output '$DB_DIR/cpu_and_mem.jpg'
|
|
|
|
plot '$DB_DIR/cpu_and_mem.dat' using 1:2 axis x1y1 with linespoints linetype -1 linecolor rgb 'blue' linewidth 1 title '% CPU', \
|
|
'$DB_DIR/cpu_and_mem.dat' using 1:3 axis x1y2 with linespoints linetype -1 linecolor rgb 'red' linewidth 1 title 'Memory (MB)'
|
|
EOF
|
|
|
|
gnuplot < gnuplot_commands.txt
|
|
rm gnuplot_commands.txt
|
|
|
|
open $DB_DIR/cpu_and_mem.jpg
|