
如果你使用 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 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。
Today, targeted analyses of network traffic patterns have become increasingly difficult due to the sheer amount of traffic encountered. To enable them, traffic needs to be captured and examined and broken down to key descriptors which yield a condensed explanation of the underlying data.
The NetFlow standard was introduced to address this reduction. It uses the concept of flows, which com***e packets based on a set of shared packet attributes. NetFlow information is usually captured on one device and collected in a central database on another device. Several software probes are available, implementing NetFlow exporters and collectors.
goProbe deviates from traditional NetFlow as flow capturing and collection is run on the same device and the flow fields reduced. It was designed as a lightweight, standalone system, providing both optimized low-footprint packet capture and a storage backend tailored to the flow data in order to provide lightning-fast analysis queries.
This Docker image provides the frontend component (i.e. the goProbe web UI), offering an intuitive web-based interface for the goProbe system. The frontend allows you to visualize and explore flow data captured by goProbe sensors and retrieved via the query service. In essence, it connects to an instance of the goProbe query component (global-query API) to run queries and display results in a user-friendly format.
In order to spin up a running instance of the goProbe UI, simply run the frontend image. Ensure that you have a running sensor (or multiple sensors) collecting data and a query service aggregating those sensor instances. The frontend should be configured to communicate with the query service’s API. For example, if your query API is accessible at http://127.0.0.1:8146, you can run the frontend container as follows:
docker run --rm --name goprobe_frontend -p 8080:80 \ -e QUERY_API_URL=http://127.0.0.1:8146 \ goprobe/frontend:latest
This will start the frontend UI and map it to port 8080 on your host. In the above example, an environment variable is used to point the UI to the address of the global query service. Adjust the QUERY_API_URL to match your deployment (or refer to the documentation if a different configuration method is provided).
Once running, you can access the goProbe web interface via your browser at http://localhost:8080 (if using the above port mapping). Through this interface, you can construct queries (e.g., selecting source IP, destination IP, ports, protocols, and time ranges) and view the resulting flow records. The frontend relies on the query service for data; queries you submit via the UI are forwarded to the configured query endpoint, and results are returned in real-time for analysis.
A full docker-compose.yaml (including build parameters) can be found in the https://github.com/els0r/goProbe. A minimal example could look like this:
yamlservices: frontend: image: goprobe/frontend:latest restart: unless-stopped container_name: goprobe_frontent environment: - QUERY_API_URL=http://global_query:8146 ports: - 8080:80
您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。
来自真实用户的反馈,见证轩辕镜像的优质服务
以下是 goprobe/frontend 相关的常用 Docker 镜像,适用于 不同场景 等不同场景: