Files
rippled/docs
Pratik Mankawde bac93cceaf Phase 6: Integrate beast::insight StatsD metrics into telemetry pipeline
Bridge rippled's existing StatsD metrics (300+ gauges, counters, timers)
into the OTel Collector via a statsd receiver on UDP port 8125. Add three
new Grafana dashboards (Node Health, Network Traffic, RPC & Pathfinding)
with 24 panels covering ledger age, state accounting, peer counts, overlay
traffic, job queue, I/O latency, RPC stats, and pathfinding duration.

Key changes:
- Fix non-standard Meter wire format (|m -> |c) in StatsDCollector.cpp
- Add statsd receiver to OTel Collector config + metrics pipeline
- Expose UDP 8125 in docker-compose.yml
- Add [insight] config to integration test node configs
- Add StatsD metric verification to integration test
- Update telemetry-runbook.md and TESTING.md with StatsD reference
- Add Phase 6 to implementation plan docs

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-26 16:05:48 +00:00
..
2020-03-30 18:57:35 -04:00
2023-03-02 10:07:09 -08:00

Building documentation

Dependencies

Install these dependencies:

  • Doxygen: All major platforms have official binary distributions, or you can build from source.

    • MacOS: We recommend installing via Homebrew: brew install doxygen. The executable will be installed in /usr/local/bin which is already in the default PATH.

      If you use the official binary distribution, then you'll need to make Doxygen available to your command line. You can do this by adding a symbolic link from /usr/local/bin to the doxygen executable. For example,

      $ ln -s /Applications/Doxygen.app/Contents/Resources/doxygen /usr/local/bin/doxygen
      
  • PlantUML:

    1. Install a functioning Java runtime, if you don't already have one.
    2. Download plantuml.jar.
  • Graphviz:

    • Linux: Install from your package manager.
    • Windows: Use an official installer.
    • MacOS: Install via Homebrew: brew install graphviz.

Docker

Instead of installing the above dependencies locally, you can use the official build environment Docker image, which has all of them installed already.

  1. Install Docker
  2. Pull the image:
sudo docker pull rippleci/rippled-ci-builder:2944b78d22db
  1. Run the image from the project folder:
sudo docker run -v $PWD:/opt/rippled --rm rippleci/rippled-ci-builder:2944b78d22db

Build

There is a docs target in the CMake configuration.

mkdir build
cd build
cmake -Donly_docs=ON ..
cmake --build . --target docs --parallel

The output will be in build/docs/html.