Skip to content

Repository files navigation

ATLANTIS

Network telemetry visualization platform for analyzing large-scale NetFlow data. SvelteKit frontend, SQLite backend, Rust ingestion pipeline.

ATLANTIS reads nfcapd captures from a NetFlow collector. The pipeline converts the captures into a SQLite database, and the dashboard visualizes that database.

Quick start

First, install the required tools — both Bun and Node.js are necessary, and nfcapd processing needs the nfdump build tools. You also need nfcapd capture files on disk.

  1. Clone the project and build the tools.

    git clone https://github.com/flamboh/atlantis.git
    cd atlantis
    bun install
    
    # A system nfdump installation does not work.
    git submodule update --init --recursive
    ./vendor/scripts/compile-nfdump.sh
  2. Describe your captures. Copy the templates, then edit them:

    cp .env.example .env
    cp datasets.json.example datasets.json

    In datasets.json, set root_path to your capture directory and name one source for each collector directory under it (dataset configuration explains the fields and the expected layout). In .env, set DEFAULT_DATASET to your dataset_id.

  3. Build a database from one day of captures. Use your dataset_id and a date that has captures. The first run compiles the Rust pipeline and takes several minutes; run it in a persistent shell like tmux.

    ./scripts/netflow-db.sh pipeline \
      --dataset example \
      --start-date 2025-02-01 \
      --end-date 2025-02-01 \
      --nfdump target/nfdump/libexec/nfdump
  4. Start the dashboard, then open http://localhost:5173.

    bun run dev:web

If a step fails, read Troubleshooting.

Documentation

For a new setup, use these procedures:

Acknowledgment

Developed by Oliver Boorstein under support by NSF Research Experiences for Undergraduates with the Oregon Networking Research Group.

Advised by Chris Misa and Reza Rejaie.

About

internet structure data visualization web app and data pipeline built at the Oregon Networking Research Group through an NSF REU

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages