# tsung を Homebrew, apk, dnf, MacPorts, Nix, apt, zypper でインストール

tsung のインストール経路、実行ファイル、メタデータ、AI エージェント向けセキュリティノートを確認します。

## インストール

```sh
sudo av install brew:tsung
```

追加のインストールコマンド:

### macOS

- Homebrew (100%):

```sh
brew install tsung
```

  証拠: local Homebrew formula metadata

- MacPorts (94%):

```sh
sudo port install tsung
```

  証拠: MacPorts ports tree: erlang/tsung/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1

### Linux

- apk (92%):

```sh
sudo apk add tsung
```

  証拠: Alpine Linux edge package indexes: tsung from https://dl-cdn.alpinelinux.org/alpine/edge/testing/x86_64/APKINDEX.tar.gz

- dnf (92%):

```sh
sudo dnf install tsung
```

  証拠: Fedora Rawhide package metadata: tsung from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/07190dc5ae9f35ae73866675fed6d95fe6e8d9fe22c9d7cdf85862cb2ed24a4c-primary.xml.zst

- Nix (92%):

```sh
nix profile install nixpkgs#tsung
```

  証拠: nixpkgs package indexes: pkgs/by-name/ts/tsung/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1

- Ubuntu apt (92%):

```sh
sudo apt install tsung
```

  証拠: Ubuntu 24.04 LTS package indexes: tsung from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz

- zypper (92%):

```sh
sudo zypper install tsung
```

  証拠: openSUSE Tumbleweed package metadata: tsung from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst

## パッケージ情報

- **パッケージキー:** brew:tsung
- **パッケージマネージャ:** Homebrew
- **バージョン:** 1.8.0
- **ソース概要:** Load testing for HTTP, PostgreSQL, Jabber, and others
- **ホームページ:** <https://github.com/processone/tsung>
- **リポジトリ:** <https://github.com/processone/tsung>
- **生成日時:** 2026-08-03T19:37:03+00:00

## 実行可能ファイル

- tsplot (エイリアス)
- tsung (エイリアス)
- tsung-recorder (エイリアス)

## インストール挙動

- Bottle: 利用不可

## バージョンと鮮度

- ページ生成日: 2026-08-03
- マネージャ版: 1.8.0
## プロジェクトの歴史と使われ方

Tsung is a distributed, Erlang-based load-testing tool for protocol-level benchmarks. Its official documentation describes it as the successor to IDX-Tsunami and as a multi-protocol stress tool for HTTP, WebDAV, SOAP, PostgreSQL, MySQL, AMQP, MQTT, LDAP, and Jabber/XMPP servers.

### プロジェクトの歴史

Tsung began in 2001 when Nicolas Niclausse started IDX-Tsunami at IDEALX as an internal distributed Jabber load-stress tool. The project became an open-source multi-protocol load-testing tool within months, added HTTP support in 2003, and later moved to GitHub under processone.

The project's architecture reflects its Erlang roots: it uses lightweight processes and distributed Erlang to generate high concurrency from a single machine or a cluster. The manual ties this design to Erlang/OTP's performance, scalability, and fault-tolerance characteristics.

Release history shows a long-lived specialist tool rather than a short-lived benchmark script. The changelog documents protocol and reporting expansion across the 1.x line, including MQTT support in 1.5.0, WebSocket and WSS work in later releases, 1.7.0 in 2017, and 1.8.0 in 2023.

### 採用の歴史

Tsung's own manual records industrial and research use, including large Jabber/XMPP and HTTP/HTTPS tests, French public-sector and enterprise users, and very high-concurrency benchmark examples on clusters and EC2.

In package-manager culture, Tsung became the kind of tool installed when a simple request loop was not enough. The supplied package facts list it in Homebrew, Alpine, Fedora, MacPorts, Nix, Ubuntu, and openSUSE package sets, which matches its role as a Unix-friendly load generator.

GitHub metadata also indicates durable open-source attention: the upstream repository was created on GitHub in 2010, uses the develop branch as default, and remains active with thousands of stars and hundreds of forks as of the 2026 API response checked for this batch.

### 使われ方

Typical Tsung use is scenario-driven: users write XML configurations, run distributed client nodes, and generate reports on response time, connection time, requests per second, errors, and target-server monitoring.

The official recorder is part of its practical appeal. `tsung-recorder` can capture HTTP, WebDAV, and PostgreSQL sessions into XML under `~/.tsung/`, letting operators turn browser or database traffic into reusable benchmark scenarios.

### パッケージ好きにとっての重要性

Tsung matters to package nerds because it packages a full distributed benchmark harness behind a small set of command-line tools: `tsung`, `tsung-recorder`, and `tsplot`. It is a classic example of an Erlang systems tool that is installed from a package manager and then wired into local XML, shell, and graphing workflows.

Its niche overlaps several package ecosystems: web benchmarking, XMPP server testing, database protocol load generation, and Erlang runtime packaging. That makes dependency availability and sane default paths more important than polished desktop UX.

### タイムライン

- 2001: Development starts as IDX-Tsunami for internal Jabber load testing at IDEALX.
- 2003: HTTP support is added, broadening the project beyond Jabber/XMPP.
- 2010: The processone/tsung GitHub repository is created.
- 2013: Tsung 1.5.0 adds MQTT support according to the changelog.
- 2017: Tsung 1.7.0 is released with major fixes and protocol enhancements.
- 2023: Tsung 1.8.0 is released with WebSocket, MQTT, reporting, and documentation fixes.

### Related projects

- The manual compares Tsung with simple injectors such as ApacheBench for one-URL loops, while positioning Tsung for complex scenarios and extended reports.
- The background section links Tsung's traffic model to the earlier INRIA WAGON web-traffic generator prototype.

### ソース

- <http://tsung.erlang-projects.org/user_manual/features.html documents supported protocols, XML scenarios, recorder support, and reporting features.>
- <http://tsung.erlang-projects.org/user_manual/introduction.html documents the IDX-Tsunami origin, 2001 start, 2003 HTTP support, Erlang design, and adoption examples.>
- <http://tsung.erlang-projects.org/user_manual/proxy.html documents `tsung-recorder` behavior and output paths.>
- <https://github.com/processone/tsung README and CHANGELOG.md document the supported protocol list and release history.>
- source_facts.package-manager lists package-manager availability across Homebrew, Alpine, Fedora, MacPorts, Nix, Ubuntu, and openSUSE.


## セキュリティノート

broad file, network, media, or database tool signal.

- **Geiger リスク:** blue / 中
- broad file, network, media, or database tool signal


## Configuration and credential file locations

These source-backed paths show where this package keeps local settings or durable credentials. Automic Vault can use them as review targets for secret scanning, migration, and command approval.


## Configuration files

- Unix: ~/.tsung/tsung.xml
## 他のパッケージマネージャ記録

- Nix - tsung: normalized package name match | nixpkgs package indexes: pkgs/by-name/ts/tsung/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1
- Ubuntu apt - tsung - 1.7.0-3.1: normalized package name match | Ubuntu 24.04 LTS package indexes: tsung from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | distributed multi-protocol load testing tool | http://tsung.erlang-projects.org/
- apk - tsung - 1.8.0-r3: normalized package name match | Alpine Linux edge package indexes: tsung from https://dl-cdn.alpinelinux.org/alpine/edge/testing/x86_64/APKINDEX.tar.gz | Tsung is a high-performance benchmark framework for various protocols including HTTP,XMPP,LDAP,etc. | https://www.process-one.net/en/tsung/
- dnf - tsung - 1.8.0-9.fc45: normalized package name match | Fedora Rawhide package metadata: tsung from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/07190dc5ae9f35ae73866675fed6d95fe6e8d9fe22c9d7cdf85862cb2ed24a4c-primary.xml.zst | A distributed multi-protocol load testing tool | http://tsung.erlang-projects.org/
- dnf - tsung-doc - 1.8.0-9.fc45: normalized package name match | Fedora Rawhide package metadata: tsung-doc from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/07190dc5ae9f35ae73866675fed6d95fe6e8d9fe22c9d7cdf85862cb2ed24a4c-primary.xml.zst | Documentation files for tsung | http://tsung.erlang-projects.org/
- zypper - tsung - 1.8.0-2.5: normalized package name match | openSUSE Tumbleweed package metadata: tsung from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | A distributed multi-protocol load testing tool | http://tsung.erlang-projects.org/
- MacPorts - tsung: normalized package name match | MacPorts ports tree: erlang/tsung/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1


## Combined YAML source

View the package source record on GitHub. [combined/tsung.yml](https://github.com/mxcl/pkgdb/blob/main/combined/tsung.yml)


## ソース

- pkg.so package database
- Geiger risk classifier
- curated configuration and credential file locations
- curated package history
- pkgdb category and tag curation
- external package-manager database matches
- cross-ecosystem install command graph
