免费
邀请
插件
Q群
举报
顶部
快速返回页面顶部
收起
收起工具栏
轩辕镜像 官方专业版
轩辕镜像
专业版
轩辕镜像 官方专业版
轩辕镜像
专业版
首页个人中心搜索镜像

交易
充值流量我的订单

文档

工具

功能
提交工单页面收录

其他
关于我们网站地图
热门搜索:
distributed-performance-analyzer

bancolombia/distributed-performance-analyzer

bancolombia

用于HTTP服务的分布式性能分析器,可从单个节点或分布式集群生成显著负载,结合Elixir能力分析不同并发场景下应用的行为。

2 次收藏下载次数: 0状态:社区镜像维护者:bancolombia仓库类型:镜像最近更新:1 个月前
让 AI 帮你使用轩辕镜像? · 展开查看说明

如果你使用 DeepSeek、元宝 AI、Copilot、ChatGPT 等 AI 工具,协助配置轩辕镜像、编写 docker pull 命令、修改 Docker Compose 镜像地址、配置镜像加速、排查镜像拉取失败、分析报错日志等问题,请先让 AI 阅读并遵守轩辕镜像的规则文档。

只需在 AI 对话中先发送下面这句话即可:

请先完整阅读并严格遵守以下文档中的全部规则与要求:

https://xuanyuan.cloud/agents.md

在未充分阅读并理解该文档前,不要生成任何命令、配置、修改建议、故障排查方案或技术回答。后续所有输出都必须严格以该文档中的规范为最高优先级执行。

查看 agents.md 用法指南与完整示范。国内用户首推 元宝 AI、DeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。

中文简介
标签列表
镜像标签列表与下载命令
使用轩辕镜像,把时间还给真正重要的事。
点击查看

Performance Analyzer代码仓库 https://github.com/bancolombia/distributed-performance-analyzer

Performance Analyzer是一款HTTP基准测试工具,能够从单个节点或分布式集群生成显著负载。它结合Elixir的能力,用于分析应用在不同并发场景下的行为。

快速参考**维护者:https://github.com/bancolombia/**%E9%97%AE%E9%A2%98%E5%8F%8D%E9%A6%88%E5%9C%B0%E5%9D%80%EF%BC%9A**https://github.com/bancolombia/distributed-performance-analyzer/issues 支持架构:**amd64, arm64

支持的标签及对应Dockerfile链接

  • https://github.com/bancolombia/distributed-performance-analyzer/blob/main/Dockerfile
  • https://github.com/bancolombia/distributed-performance-analyzer/blob/0.6.3/Dockerfile
  • https://github.com/bancolombia/distributed-performance-analyzer/blob/0.6.2/Dockerfile
  • https://github.com/bancolombia/distributed-performance-analyzer/blob/0.6.1/Dockerfile
  • https://github.com/bancolombia/distributed-performance-analyzer/blob/0.6.0/Dockerfile
  • https://github.com/bancolombia/distributed-performance-analyzer/blob/0.5.0/Dockerfile
  • https://github.com/bancolombia/distributed-performance-analyzer/blob/0.4.1/Dockerfile
  • https://github.com/bancolombia/distributed-performance-analyzer/blob/0.4.0/Dockerfile
  • https://github.com/bancolombia/distributed-performance-analyzer/blob/0.3.1/Dockerfile
  • https://github.com/bancolombia/distributed-performance-analyzer/blob/0.3.0/Dockerfile

安装

shell
mix do local.hex --force, local.rebar --force
mix do deps.clean --unused, deps.get, deps.compile
mix compile

基本使用

打开并编辑config/performance.exs文件进行配置。

elixir
import Config

config :perf_analyzer,
  url: "http://httpbin.org/get",
  request: %{
    method: "GET",
    headers: [{"Content-Type", "application/json"}],
    # body: ~s|'{"data": "value"}'| --> 如果不使用数据集值
    body: fn item ->
      # 用于数据集替换
      ~s|'{"data": #{Enum.random(1..10)}, "key": "#{item.columnName}"}'|
    end
  },
  execution: %{
    steps: 5,
    increment: 1,
    duration: 2000,
    constant_load: false,
    dataset: "/Users/sample.csv",
    # dataset: :none, --> 如果不使用数据集
    separator: ","
  },
  distributed: :none,
  jmeter_report: true

config :logger,
  level: :info
属性描述
url要测试的应用URL。确保两台机器之间有网络连接
request配置HTTP方法、请求头和请求体
steps测试的执行步数。每步增加increment中配置的并发数
increment每步之后并发数的增量
duration每步的持续时间(毫秒)
constant_load配置负载是否恒定,或使用增量来改变每步的并发数
datasetCSV数据集文件的路径
separator数据集分隔符(, ; :)
distributed指示是从单个节点运行还是以分布式方式运行
jmeter_report是否生成JMeter CSV格式报告

在上面的示例中,将执行一个包含5步、增量为50的测试:

  1. 第1步:50并发
  2. 第2步:100并发
  3. 第3步:150并发
  4. ...

每步将持续2秒。

运行

Docker方式

shell
docker run --rm -v <项目路径>/config:/app/config -v <项目路径>/dataset:/app/datasets bancolombia/distributed-performance-analyzer:latest

Shell方式

shell
iex -S mix
# 或
iex --sname node1@localhost -S mix

IEX执行

elixir
alias DistributedPerformanceAnalyzer.Domain.UseCase.ExecutionUseCase
ExecutionUseCase.launch_execution()

Elixir发布版

shell
mix release
_build/prod/rel/distributed_performance_analyzer/bin/distributed_performance_analyzer start

结果

每步执行后,将获得如下结果表格:

CSV格式

csv
concurrency, throughput, min latency (ms), mean latency (ms), max latency (ms), p90 latency (ms), p95 latency (ms), p99 latency (ms), http_mean_latency, http_max_latency, 2xx requests, 3xx requests, 4xx requests, 5xx requests, http_errors, total_errors, total_requests
1, 4.0, 27, 49.0, 71, 66.6, 68.8, 70.56, 49.0, 71, 2, 0, 0, 0, 0, 0, 2
2, 116.0, 12, 17.0, 33, 22.3, 24.0, 33.0, 17.0, 33, 58, 0, 0, 0, 0, 0, 58
3, 156.0, 12, 18.44, 28, 24.3, 25.15, 27.23, 18.44, 28, 78, 0, 0, 0, 0, 0, 78
4, 178.0, 12, 21.39, 50, 27.2, 47.0, 49.12, 21.39, 50, 89, 0, 0, 0, 0, 0, 89
5, 294.0, 12, 16.52, 32, 22.0, 24.4, 31.54, 16.52, 32, 147, 0, 0, 0, 0, 0, 147

JMeter格式

csv
timeStamp,elapsed,label,responseCode,responseMessage,threadName,dataType,success,failureMessage,bytes,sentBytes,grpThreads,allThreads,URL,Latency,IdleTime,Connect
1694523851175,71,sample,200,OK,#PID<0.443.0>,,true,,24,0,1,1,GET -> http://localhost:8080/wait/10,70,0.0,400
1694523851246,27,sample,200,OK,#PID<0.443.0>,,true,,24,0,1,1,GET -> http://localhost:8080/wait/10,27,0.0,2
1694523851317,15,sample,200,OK,#PID<0.443.0>,,true,,24,0,2,2,GET -> http://localhost:8080/wait/10,15,0.0,0
1694523851317,15,sample,200,OK,#PID<0.444.0>,,true,,24,0,2,2,GET -> http://localhost:8080/wait/10,15,0.0,400
1694523851332,22,sample,200,OK,#PID<0.443.0>,,true,,24,0,2,2,GET -> http://localhost:8080/wait/10,22,0.0,0
1694523851332,22,sample,200,OK,#PID<0.444.0>,,true,,24,0,2,2,GET -> http://localhost:8080/wait/10,22,0.0,0
1694523851354,17,sample,200,OK,#PID<0.443.0>,,true,,24,0,2,2,GET -> http://localhost:8080/wait/10,17,0.0,0
1694523851354,17,sample,200,OK,#PID<0.444.0>,,true,,24,0,2,2,GET -> http://localhost:8080/wait/10,17,0.0,0
1694523851371,20,sample,200,OK,#PID<0.443.0>,,true,,24,0,2,2,GET -> http://localhost:8080/wait/10,20,0.0,0
1694523851371,20,sample,200,OK,#PID<0.444.0>,,true,,24,0,2,2,GET -> http://localhost:8080/wait/10,20,0.0,0

可根据需求比较关注的属性,例如并发与吞吐量、并发与平均延迟等指标。

镜像拉取方式

您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。

轩辕镜像加速拉取命令点我查看更多 distributed-performance-analyzer 镜像标签

docker pull docker.xuanyuan.run/bancolombia/distributed-performance-analyzer:<标签>

使用方法:

  • 登录认证方式
  • 免认证方式

DockerHub 原生拉取命令

docker pull bancolombia/distributed-performance-analyzer:<标签>

轩辕镜像配置手册

按平台快速找到配置文档

Docker

登录仓库拉取

登录认证 · 私有仓库

专属域名拉取

免登录 · 高速拉取

Linux

Docker 镜像配置

Windows / Mac

Docker Desktop 配置

MacOS OrbStack

OrbStack 容器

Docker Compose

Compose 项目配置

NAS

群晖

Synology 配置

飞牛

fnOS 镜像配置

绿联

绿联 NAS

威联通

QNAP 配置

极空间

极空间 NAS

企业仓库

其他仓库

ghcr · Quay · nvcr

Harbor 镜像源

Proxy Repository 对接

Portainer 镜像源

Registries 配置

Nexus 镜像源

Docker Proxy 缓存

开发工具

Dev Containers

VS Code 开发容器

Podman

Podman 配置指南

Singularity / Apptainer

HPC 科学计算容器

Kubernetes

K8s Containerd

Kubernetes · Containerd

K3s

轻量级集群

面板 / 网络

爱快路由

iKuai 镜像加速

宝塔面板

一键配置镜像源

AI

用 AI 使用轩辕镜像

agents.md · AI 对话 · 提示词

一键安装

一键安装 Docker

Linux Docker 一键安装

需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单

镜像拉取常见问题

功能

免费版与专业版区别

功能对比 · 版本选择

支持的镜像仓库

Docker Hub · GCR · GHCR

新手拉取配置

登录 · 专属域名 · 配置

docker search 限制

专属域名 · Hub 搜索

不支持 push

仅支持 pull · 不支持

拉取速度原因

带宽 · 缓存 · 冷热镜像

错误码

402 与流量用尽

402 · 流量包 · 充值

401 认证失败

401 · docker login

manifest unknown

标签错误 · 镜像不存在

410 Gone 排查

410 · Docker 升级

429 限流

免费版 · 请求频率

其他报错

DNS 超时

DNS 解析 · 网络超时

TLS 证书失败

no matching manifest(架构)

账号

失败是否计费

manifest · blob · 计费

申请开发票(企业 / 个人)

企业 · 个人 · 工单

修改登录密码

网站 · 仓库 · 重置

注销账户

工单 · 数据 · 注销

原理

mirrors 不生效

daemon.json · 重启

去掉域名前缀

docker tag · 重命名

指定架构拉取

ARM64 · AMD64 · 多架构

latest 与「最新」

digest · 版本号 · 标签

查看全部问题→

用户好评

来自真实用户的反馈,见证轩辕镜像的优质服务

用户头像

oldzhang

运维工程师

Linux服务器

5

"Docker访问体验非常流畅,大镜像也能快速完成下载。"

轩辕镜像
镜像详情
...
bancolombia/distributed-performance-analyzer
教程轩辕镜像功能与使用教程
定价查看流量套餐与价格
热门查看热门 Docker 镜像推荐
博客Docker 镜像公告与技术博客
官方公众号:源码跳动|官方技术交流群:831623681
官方公众号:源码跳动|官方技术交流群:|问题咨询请:提交工单
商务合作:点击复制邮箱
©2024-2026 源码跳动
商务合作:点击复制邮箱Copyright © 2024-2026 杭州源码跳动科技有限公司. All rights reserved.

更多 distributed-performance-analyzer 镜像推荐

grafana/logql-analyzer logo

grafana/logql-analyzer

Grafana 可观测性平台
暂无描述
5万+ 次下载
7 天前更新
demisto/feed-performance-test logo

demisto/feed-performance-test

demisto
暂无描述
10万+ 次下载
1 个月前更新
docker/fossa-analyzer logo

docker/fossa-analyzer

Docker 官方工具与组件镜像
Fossa分析器镜像,用于执行开源项目的许可证扫描,识别依赖项许可证信息并确保合规性。
9.7千+ 次下载
6 年前更新
intel/audio-analyzer logo

intel/audio-analyzer

intel
基于FastAPI的微服务,用于音频分析,支持使用pywhispercpp或OpenVINO(配合openvino-genai)从视频文件中进行语音转录。
4.9千+ 次下载
11 天前更新
atlassian/jira-performance-tests logo

atlassian/jira-performance-tests

atlassian
本地部署的Docker镜像,用于针对指定Jira Cloud租户运行Jira性能测试(JPT)。
1 次收藏9千+ 次下载
5 年前更新
cellprofiler/distributed-fiji logo

cellprofiler/distributed-fiji

cellprofiler
暂无描述
10万+ 次下载
7 个月前更新

查看更多 distributed-performance-analyzer 相关镜像