
如果你使用 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 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。
https://hub.docker.com/r/3apaxicom/nginx-amplify/
NGINX Amplify is a free monitoring tool that can be used with a microservice architecture based on NGINX and Docker. Amplify is developed and maintained by Nginx Inc. — the company behind the NGINX software.
With Amplify it is possible to collect and aggregate metrics across Docker containers, and present a coherent set of visualizations of the key NGINX performance data, such as active connections or requests per second. It is also easy to quickly check for any performance degradations, traffic anomalies, and get a deeper insight into the NGINX configuration in general.
In order to use Amplify, a small Python-based agent software https://github.com/nginxinc/nginx-amplify-agent should be installed inside the container.
The official documentation for Amplify is available https://github.com/nginxinc/nginx-amplify-doc/blob/master/amplify-guide.md.
The Amplify Agent can be deployed in a Docker environment to monitor NGINX instances inside Docker containers.
The "agent-inside-the-container" is currenly the only mode of operation. In other words, the agent should be running in the same container, next to the NGINX instance.
By default the agent will try to determine the OS hostname on startup (see the docs https://github.com/nginxinc/nginx-amplify-doc/blob/master/amplify-guide.md#changing-the-hostname-and-uuid for more information). The hostname is used to generate an UUID to uniquely identify the new object in the monitoring backend.
This means that in the absence of the additional configuration steps, each new container started from an Amplify-enabled Docker image will be reported as a standalone system in the Amplify web user interface. Moreover, the reported hostname is typically something not easily readable.
When using Amplify with Docker, another option is available and recommended — which is imagename. The imagename option tells the Amplify Agent that it's running in a container environment, and that the agent should collect and report metrics and metadata accordingly.
If you prefer to see the individual instances started from the same image as separate objects, assign different imagename to each of the running instances.
You can learn more about the agent configuration options https://github.com/nginxinc/nginx-amplify-doc/blob/master/amplify-guide.md#configuring-the-agent.
As described above, when reporting a new object for monitoring, the agent honors the imagename configuration option in the /etc/amplify-agent/agent.conf file.
The imagename option should be set either in the Dockerfile or using the environment variables.
It is possible to explicitly specify the same imagename for multiple instances. In this scenario, the metrics received from several agents will be aggregated internally on the backend side — with a single 'container'-type object created for monitoring.
This way a comed view of various statistics can be obtained (e.g. for a "microservice"). For example, this comed view can display the total number of requests per second through all backend instances of a microservice.
Containers with a common imagename do not have to share the same local Docker image or NGINX configuration. They can be located on different physical hosts too.
To set a common imagename for several containers started from the Amplify-enabled image, you may either:
# If AMPLIFY_IMAGENAME is set, the startup wrapper script will use it to # generate the 'imagename' to put in the /etc/amplify-agent/agent.conf # If several instances use the same 'imagename', the metrics will # be aggregated into a single object in NGINX Amplify. Otherwise Amplify # will create separate objects for monitoring (an object per instance). # AMPLIFY_IMAGENAME can also be passed to the instance at runtime as # described below. ENV AMPLIFY_IMAGENAME my-docker-instance-123
or
-e option with docker run as indocker run --name mynginx1 -e API_KEY=ffeedd0102030405060708 -e AMPLIFY_IMAGENAME=my-service-123 -d nginx-amplify
The following list summarizes existing limitations of monitoring Docker containers with Amplify:
We've been working on improving the support for Docker even more. Stay tuned!
(Note: If you are really new to Docker, https://docs.docker.com/engine/installation/ how to install Docker Engine on various OS.)
Let's pick our official https://hub.docker.com/_/nginx/ as a good example. The Dockerfile that we're going to use for an Amplify-enabled image is https://github.com/nginxinc/docker-nginx-amplify/blob/master/Dockerfile.
Here's how you can build the Docker image with the Amplify Agent inside, based on the official NGINX image:
git clone https://github.com/nginxinc/docker-nginx-amplify.git
cd docker-nginx-amplify
docker build -t nginx-amplify .
After the image is built, check the list of Docker images:
docker images
REPOSITORY TAG IMAGE ID CREATED SIZE nginx-amplify latest d039b39d2987 3 minutes ago 241.6 MB
Unless already done, you have to sign up, create an account in NGINX Amplify, and obtain a valid API_KEY.
To start a container from the new image, use the command below:
docker run --name mynginx1 -e API_KEY=ffeedd0102030405060708 -e AMPLIFY_IMAGENAME=my-service-123 -d nginx-amplify
where the API_KEY is that assigned to your NGINX Amplify account, and the AMPLIFY_***AME is set to identify the running service as described in sections 1.2 and 1.3 above.
After the container has started, you may check its status with docker ps:
docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 7d7b47ba4c72 nginx-amplify "/entrypoint.sh" 3 seconds ago Up 2 seconds 80/tcp, 443/tcp mynginx1
and you can also check docker logs:
docker logs 7d7b47ba4c72
starting nginx ... updating /etc/amplify-agent/agent.conf ... ---> using api_key = ffeedd0102030405060708 ---> using imagename = my-service-123 starting amplify-agent ...
Check what processes have started:
docker exec 7d7b47ba4c72 ps axu
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND root 1 0.0 0.1 4328 676 ? Ss 19:33 0:00 /bin/sh /entrypoint.sh root 5 0.0 0.5 31596 2832 ? S 19:33 0:00 nginx: master process nginx -g daemon off; nginx 11 0.0 0.3 31988 1968 ? S 19:33 0:00 nginx: worker process nginx 65 0.6 9.1 111584 45884 ? S 19:33 0:06 amplify-agent
If you see the amplify-agent process, it all went smoothly, and you should see the new container in the Amplify web user interface in about a minute or so.
Check the Amplify Agent log:
docker exec 7d7b47ba4c72 tail /var/log/amplify-agent/agent.log
2016-08-05 19:49:39,001 [65] supervisor agent started, version=0.37-1 pid=65 uuid=<..> imagename=my-service-123 2016-08-05 19:49:39,047 [65] nginx_config running nginx -t -c /etc/nginx/nginx.conf 2016-08-05 19:49:40,047 [65] supervisor post https://receiver.amplify.nginx.com:443/<..>/ffeedd0102030405060708/agent/ 200 85 4 0.096 2016-08-05 19:50:24,674 [65] bridge_manager post https://receiver.amplify.nginx.com:443/<..>/ffeedd0102030405060708/update/ 202 2370 0 0.084
When you're done with the container, you can stop it like the following:
docker stop 7d7b47ba4c72
To check the status of all containers (running and stopped):
docker ps -a
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 7d7b47ba4c72 nginx-amplify "/entrypoint.sh" 22 minutes ago Exited (137) 19 seconds ago mynginx1
Happy monitoring, and feel free to send us questions, opinions, and any feedback in general.
您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。
来自真实用户的反馈,见证轩辕镜像的优质服务