dynolog

(β˜… 381)

Dynolog is a telemetry daemon for performance monitoring and tracing. It exports metrics from different components in the system like the linux kernel, CPU, disks, Intel PT, GPUs etc. Dynolog also integrates with pytorch and can trigger traces for distributed training applications.

  • .dockerignore
  • .gitignore
  • .gitmodules
  • .pre-commit-config.yaml
  • CHANGELOG.md
  • CMakeLists.txt
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md
  • Dockerfile.otlp
  • Dockerfile.otlp-test
  • dynolog.dockerfile
  • dynolog_hta.dockerfile
  • LICENSE
  • README.md
  • RELEASE.md
  • version.txt

# Installation Guide

1. Get the code
git clone https://github.com/facebookincubator/dynolog

Downloads the entire project code from GitHub to your computer.

cd dynolog

Moves into the project folder you just downloaded.

2. Official Install Script

Easy Recommended
Prerequisites
  • APT (Debian/Ubuntu 계열) Built into Debian/Ubuntu-based Linux distributions.
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

Downloads and runs the official install script in one line β€” this handles the full setup automatically.

sudo apt-get install -y cmake ninja-build

Installs directly from the APT package repository (Debian/Ubuntu-based).

βœ… After installing, open a new terminal and run the program's version command (e.g. --version) to confirm it worked.

Pulled directly from this repo's README.

3. Docker

Easy
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker build -f Dockerfile.otlp -t dynolog .

Builds a runnable image based on the Dockerfile.

docker run -p 8080:80 dynolog

Runs the built image as an actual container.

βœ… Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.

4. CMake

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • CMake The tool used to generate build configuration.
  • C/C++ 컴파일러 Windows needs Visual Studio (Community edition, free), macOS needs Xcode Command Line Tools, Linux needs the gcc/g++ package.
sudo dnf install cmake ninja cargo

Type this command into your terminal and run it.

sudo apt-get install -y cmake ninja-build

Installs directly from the APT package repository (Debian/Ubuntu-based).

conda install cmake ninja

Type this command into your terminal and run it.

βœ… Check that an executable was created inside the build folder, then run it directly (e.g. ./build/app_name).

Pulled directly from this repo's README.

5. Rust

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Rust (rustup) Installing via rustup also installs cargo.
sudo dnf install cmake ninja cargo

Type this command into your terminal and run it.

βœ… If cargo build finishes without errors, it worked. The executable is created under target/.

Pulled directly from this repo's README.

// repository documentation