hive-sre

(★ 19)

No description available.

File Explorer

  • .gitignore
  • config.md
  • dependency-reduced-pom.xml
  • LICENSE
  • perf.md
  • pom.xml
  • README.md
  • sre.md
  • tocdp.md
  • troubleshooting.md
  • u3.md
  • u3e.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

tar

View Details ▼

Archiving utility.
Often combined with a compression method, such as `gzip` or `bzip2`.

tar cf {{path/to/target.tar}} {{path/to/file1 path/to/file2 ...}}

[c]reate an archive and write it to a [f]ile:

tar czf {{path/to/target.tar.gz}} {{path/to/file1 path/to/file2 ...}}

[c]reate a g[z]ipped archive and write it to a [f]ile:

tar czf {{path/to/target.tar.gz}} {{[-C|--directory]}} {{path/to/directory}} .

[c]reate a g[z]ipped (compressed) archive from a directory using relative paths:

🔍

perf

View Details ▼

Framework for Linux performance counter measurements.

perf stat {{gcc hello.c}}

Display basic performance counter stats for a command:

sudo perf top

Display system-wide real-time performance counter profile:

sudo perf record {{command}}

Run a command and record its profile into `perf.data`:

// repository documentation