专属
文档
插件
助手
邀请
顶部
快速返回页面顶部
收起
收起工具栏
轩辕镜像 官方专业版
轩辕镜像
专业版
轩辕镜像 官方专业版
轩辕镜像
专业版
首页个人中心搜索镜像

交易
充值流量我的订单
工具
提交工单页面收录一键安装
Npm 源Pip 源Homebrew 源
帮助
常见问题轩辕镜像免费版
其他
关于我们网站地图
热门搜索:
synthetics-private-location-worker-fips

datadog/synthetics-private-location-worker-fips

datadog

Datadog Synthetics私有位置工作器,用于在amd64架构部署和运行私有位置,提供合成监控的私有位置功能支持。

下载次数: 0状态:社区镜像维护者:datadog仓库类型:镜像最近更新:19 天前
让 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 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。

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

Synthetics Private Location Worker Docker镜像文档

镜像概述与主要用途

Synthetics Private Location Worker是Datadog Synthetics的官方Docker镜像,用于部署私有位置(Private Location) Worker节点。该镜像允许用户在私有网络环境中执行合成监控测试(如API测试、浏览器测试、SSL证书检查等),并将测试结果上报至Datadog平台,实现对内部服务、私有应用及无法通过公网访问的资源的监控。

支持的架构

  • amd64

核心功能与特性

  • 私有网络测试执行:在用户私有环境中运行Datadog Synthetics测试,无需暴露内部资源至公网。
  • 与Datadog平台集成:自动与Datadog后端通信,上报测试结果、性能指标及日志。
  • 兼容性:支持Datadog Synthetics的各类测试类型(HTTP、TCP、ICMP、浏览器测试等)。
  • 轻量级部署:通过Docker容器化部署,简化环境配置与版本管理。

使用场景与适用范围

  • 私有网络监控:监控企业内部数据中心、私有云或混合云环境中的应用与服务。
  • 内部服务可用性检测:验证内部API、数据库、消息队列等组件的可用性与性能。
  • 隔离环境测试:在开发、测试或预发布环境中执行合成测试,确保上线前质量。
  • 合规性要求:满足数据隐私或合规性要求,避免敏感测试数据通过公网传输。

使用方法与配置说明

前提条件

  • 已在Datadog平台创建私有位置(Private Location),获取私有位置ID及配置凭证。
  • 已安装Docker或Docker Compose环境。
  • 容器需能够访问Datadog API端点(https://api.datadoghq.com 或对应区域端点)及私有网络内的目标资源。

Docker Run部署示例

bash
docker run -d \
  --name datadog-synthetics-worker \
  -e DD_API_KEY=<YOUR_DATADOG_API_KEY> \
  -e DD_SYNTHETICS_PRIVATE_LOCATION_ID=<YOUR_PRIVATE_LOCATION_ID> \
  -e DD_REGION=<YOUR_DATADOG_REGION> \  # 如"us1"、"eu1",默认"us1"
  gcr.io/datadoghq/synthetics-private-location-worker:latest

注意:上述环境变量为示例,具体配置参数需参考Datadog私有位置文档获取完整列表(如代理配置、资源限制等)。

Docker Compose部署示例

创建docker-compose.yml文件:

yaml
version: '3'
services:
  synthetics-worker:
    image: gcr.io/datadoghq/synthetics-private-location-worker:latest
    container_name: datadog-synthetics-worker
    environment:
      - DD_API_KEY=<YOUR_DATADOG_API_KEY>
      - DD_SYNTHETICS_PRIVATE_LOCATION_ID=<YOUR_PRIVATE_LOCATION_ID>
      - DD_REGION=us1  # 根据实际区域调整
      # 如需代理,添加代理配置(示例)
      # - HTTP_PROXY=http://proxy:3128
      # - HTTPS_PROXY=https://proxy:3128
    restart: always
    # 根据测试需求调整资源限制
    resources:
      limits:
        cpus: '2'
        memory: 2G

启动容器:

bash
docker-compose up -d

支持与故障排除

  • 文档参考:私有位置的详细配置与管理,请参见Datadog官方文档。
  • 问题反馈:如遇部署或运行问题,可通过Datadog支持团队获取帮助。

许可证信息

本软件的使用与操作受《最终用户许可协议》(EULA)约束,详情参见此处。

与所有Docker镜像一样,本镜像可能包含其他软件,这些软件可能受其他许可证约束(如基础发行版中的Bash等,以及主软件的直接或间接依赖项)。使用预构建镜像时,用户有责任确保其使用符合镜像中所有软件的相关许可证要求。

本镜像包含第三方分发的软件,以下是这些库及其许可证的列表:

组件来源许可证仓库
@aws-sdk/client-device-farmimportApache-2.0github.com/aws/aws-sdk-js-v3
@aws-sdk/client-s3importApache-2.0github.com/aws/aws-sdk-js-v3
@aws-sdk/client-sqsimportApache-2.0github.com/aws/aws-sdk-js-v3
@aws-sdk/client-ssmimportApache-2.0github.com/aws/aws-sdk-js-v3
@aws-sdk/credential-provider-imdsdevApache-2.0github.com/aws/aws-sdk-js-v3
@aws-sdk/credential-providersimportApache-2.0github.com/aws/aws-sdk-js-v3
@aws-sdk/node-http-handlerimportApache-2.0github.com/aws/aws-sdk-js-v3
@aws-sdk/middleware-retryimportApache-2.0github.com/aws/aws-sdk-js-v3
@aws-sdk/s3-request-presignerimportApache-2.0github.com/aws/aws-sdk-js-v3
@aws-sdk/typesdevApache-2.0github.com/aws/aws-sdk-js-v3
@aws-sdk/util-arn-parserimportApache-2.0github.com/aws/aws-sdk-js-v3
@azure/identityimportMITgithub.com/Azure/azure-sdk-for-js
@azure/storage-blobimportMITgithub.com/Azure/azure-sdk-for-js
@babel/coredevMITgithub.com/babel/babel
@babel/plugin-transform-modules-commonjsdevMITgithub.com/babel/babel
@babel/preset-envdevMITgithub.com/babel/babel
@datadog/browser-rumimportApache-2.0github.com/DataDog/browser-sdk
@datadog/datadog-api-clientimportApache-2.0github.com/DataDog/datadog-api-client-typescript
@datadog/datadog-cidevApache-2.0github.com/DataDog/datadog-ci
@electron/remotedevMITgithub.com/electron/remote
@google-cloud/pubsubimportApache-2.0github.com/googleapis/nodejs-pubsub
@google-cloud/storageimportMITgithub.com/googleapis/nodejs-storage
@grpc/grpc-jsimportApache-2.0github.com/grpc/grpc-node/tree/master/packages/grpc-js
@grpc/proto-loaderdevApache-2.0github.com/grpc/grpc-node/tree/master/packages/proto-loader
@heroku/socksv5importMITgithub.com/heroku/socksv5
@kayahr/jest-electron-runnerdevMITgithub.com/kayahr/jest-electron-runner
@openpgp/web-stream-toolsdevMITgithub.com/openpgpjs/web-stream-tools
@slack/web-apiimportMITgithub.com/slackapi/node-slack-sdk
@stylistic/eslint-plugindevMITgithub.com/eslint-stylistic/eslint-stylistic
@types/adm-zipdevMITgithub.com/DefinitelyTyped/DefinitelyTyped
@types/asyncdevMITgithub.com/DefinitelyTyped/DefinitelyTyped
@types/bindingsdevMITgithub.com/DefinitelyTyped/DefinitelyTyped
@types/consuldevMITgithub.com/DefinitelyTyped/DefinitelyTyped
@types/cookiedevMITgithub.com/DefinitelyTyped/DefinitelyTyped
@types/debugdevMITgithub.com/DefinitelyTyped/DefinitelyTyped
@types/follow-redirectsdevMITgithub.com/DefinitelyTyped/DefinitelyTyped
@types/google-protobufdevMITgithub.com/DefinitelyTyped/DefinitelyTyped
@types/http-authdevMITgithub.com/DefinitelyTyped/DefinitelyTyped
@types/http-proxydevMITgithub.com/DefinitelyTyped/DefinitelyTyped
@types/jestdevMITgithub.com/DefinitelyTyped/DefinitelyTyped
@types/jsonpathdevMITgithub.com/DefinitelyTyped/DefinitelyTyped
@types/js-yamldevMITgithub.com/DefinitelyTyped/DefinitelyTyped
@types/lodashdevMITgithub.com/DefinitelyTyped/DefinitelyTyped
@types/luxondevMITgithub.com/DefinitelyTyped/DefinitelyTyped
@types/minimistdevMITgithub.com/DefinitelyTyped/DefinitelyTyped
@types/msgpack-litedevMITgithub.com/DefinitelyTyped/DefinitelyTyped
@types/nodedevMITgithub.com/DefinitelyTyped/DefinitelyTyped
@types/node-forgedevMITgithub.com/DefinitelyTyped/DefinitelyTyped
@types/pingdevMITgithub.com/DefinitelyTyped/DefinitelyTyped
@types/pugdevMITgithub.com/DefinitelyTyped/DefinitelyTyped
@types/selenium-webdriverdevMITgithub.com/DefinitelyTyped/DefinitelyTyped
@types/semverdevISCgithub.com/npm/node-semver
@types/sharpdevMITgithub.com/DefinitelyTyped/DefinitelyTyped
@types/ssh2devMITgithub.com/DefinitelyTyped/DefinitelyTyped
@types/stream-jsondevMITgithub.com/DefinitelyTyped/DefinitelyTyped
@types/tmpdevMITgithub.com/DefinitelyTyped/DefinitelyTyped
@types/triple-beamdevMITgithub.com/DefinitelyTyped/DefinitelyTyped
@types/tough-cookiedevMITgithub.com/DefinitelyTyped/DefinitelyTyped
@types/whatwg-mimetypedevMITgithub.com/DefinitelyTyped/DefinitelyTyped
@types/wsdevMITgithub.com/DefinitelyTyped/DefinitelyTyped
@types/yargsdevMITgithub.com/DefinitelyTyped/DefinitelyTyped
@wdio/protocolsimportMITgithub.com/webdriverio/webdriverio
@wdio/typesdevMITgithub.com/webdriverio/webdriverio
@xmldom/xmldomimportMITgithub.com/xmldom/xmldom
@xmldom/xmldomdevMITgithub.com/xmldom/xmldom
adm-zipimportMITgithub.com/cthackers/adm-zip
agent-baseimportMITgithub.com/TooTallNate/node-agent-base
ajvimportMITgithub.com/ajv-validator/ajv
asn1.jsimportMITgithub.com/indutny/asn1.js
asn1.js-rfc2560importMITgithub.com/indutny/asn1.js
asyncimportMITgithub.com/caolan/async
aws-sdkimportApache-2.0github.com/aws/aws-sdk-js
aws-sdk-client-mockdevMITgithub.com/m-radzikowski/aws-sdk-client-mock
aws-sdk-client-mock-jestdevMITgithub.com/m-radzikowski/aws-sdk-client-mock-jest
babel-loaderdevMITgithub.com/babel/babel-loader
concurrentlydevMITgithub.com/kimmobrunfeldt/concurrently
consulimportMITgithub.com/silas/node-consul
cookieimportMITgithub.com/jshttp/cookie
copyfilesdevMITgithub.com/calvinmetcalf/copyfiles
core-jsimportMITgithub.com/zloirock/core-js
cross-envdevMITgithub.com/kentcdodds/cross-env
css.escapeimportMITgithub.com/mathiasbynens/CSS.escape
csv-parsedevMITgithub.com/adaltas/node-csv-parse
data-uri-to-bufferimportMITgithub.com/TooTallNate/node-data-uri-to-buffer
date-fnsimportMITgithub.com/date-fns/date-fns
dd-traceimportBSD-3-Clausegithub.com/DataDog/dd-trace-js
dd-tracedevBSD-3-Clausegithub.com/DataDog/dd-trace-js
debugdevMITgithub.com/debug-js/debug
devtools-protocolimportThe Chromium Authors (i.e. BSD-3)github.com/ChromeDevTools/devtools-protocol
dns2devMITgithub.com/song940/node-dns
electrondevMITgithub.com/electron/electron
es-checkdevMITgithub.com/yowainwright/es-check
eslintdevMITgithub.com/eslint/eslint
eslint-config-prettierdevMITgithub.com/prettier/eslint-config-prettier
eslint-import-resolver-typescriptdevISCgithub.com/alexgorbatchev/eslint-import-resolver-typescript
eslint-plugin-importdevMITgithub.com/benmosher/eslint-plugin-import
eslint-plugin-jestdevMITgithub.com/jest-community/eslint-plugin-jest
eslint-plugin-ndevMITgithub.com/eslint-community/eslint-plugin-n
eslint-plugin-prefer-arrowdevMITgithub.com/TristonJ/eslint-plugin-prefer-arrow
eslint-plugin-sort-keys-fixdevMITgithub.com/leo-buneev/eslint-plugin-sort-keys-fix
eslint-plugin-unicorndevMITgithub.com/sindresorhus/eslint-plugin-unicorn
follow-redirectsimportMITgithub.com/follow-redirects/follow-redirects
form-dataimportMITgithub.com/form-data/form-data
get-portimportMITgithub.com/sindresorhus/get-port
gotimportMITgithub.com/sindresorhus/got
hot-shotsimportMITgithub.com/brightcove/hot-shots
hot-shotsdevMITgithub.com/brightcove/hot-shots
http-authdevMITgithub.com/http-auth/http-auth
http-auth-utilsimportMITgithub.com/nfroidure/http-auth-utils
http-proxyimportMITgithub.com/http-party/node-http-proxy
http-proxydevMITgithub.com/http-party/node-http-proxy
http-proxy-agentdevMITgithub.com/TooTallNate/proxy-agents
http2-wrapperimportMITgithub.com/szmarczak/http2-wrapper
iconv-liteimportMITgithub.com/ashtuchkin/iconv-lite
imports-loaderdevMITgithub.com/webpack-contrib/imports-loader
int64-bufferimportMITgithub.com/kawanet/int64-buffer
ipaddr.jsimportMITgithub.com/whitequark/ipaddr.js
is-in-subnetimportMITgithub.com/natesilva/is-in-subnet
jestdevMITgithub.com/***/jest
jest-date-mockdevMITgithub.com/hustcc/jest-date-mock
js-levenshteinimportMITgithub.com/gustf/js-levenshtein
json-diffdevMITgithub.com/andreyvit/json-diff
jsonpathimportMITgithub.com/dchester/jsonpath
js-md5importMITgithub.com/emn178/js-md5
js-yamldevMITgithub.com/nodeca/js-yaml
letterparserimportBSD-3-Clausegithub.com/mat-sz
lodashimportMITgithub.com/lodash/lodash
luxonimportMITgithub.com/moment/luxon
minimistdevMITgithub.com/substack/minimist
moment-timezoneimportMITgithub.com/moment/moment-timezone
msgpack-liteimportMITgithub.com/kawanet/msgpack-lite
nockdevMITgithub.com/nock/nock
node-forgeimport(BSD-3-Clause OR GPL-2.0)github.com/digitalbazaar/forge
node-gypdevMITgithub.com/nodejs/node-gyp
node-html-parserimportMITgithub.com/taoqf/node-html-parser
null-loaderdevMITgithub.com/webpack-contrib/null-loader
octokit

镜像拉取方式

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

轩辕镜像加速拉取命令点我查看更多 synthetics-private-location-worker-fips 镜像标签

docker pull docker.xuanyuan.run/datadog/synthetics-private-location-worker-fips:<标签>

使用方法:

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

DockerHub 原生拉取命令

docker pull datadog/synthetics-private-location-worker-fips:<标签>

更多 synthetics-private-location-worker-fips 镜像推荐

datadog/synthetics-private-location-worker logo

datadog/synthetics-private-location-worker

datadog
用于合成监控私有位置工作器的Docker容器
14 次收藏1亿+ 次下载
19 天前更新
datadog/fips-proxy logo

datadog/fips-proxy

datadog
暂无描述
100万+ 次下载
14 天前更新
newrelic/synthetics-minion logo

newrelic/synthetics-minion

newrelic
Synthetics Containerized Private Minion
7 次收藏500万+ 次下载
1 年前更新
newrelic/synthetics-node-api-runtime logo

newrelic/synthetics-node-api-runtime

newrelic
用于运行合成监控API脚本的Node.js运行时环境,提供稳定的执行环境和必要依赖,支持API性能和可用性监控任务的部署与运行。
1000万+ 次下载
14 天前更新
newrelic/synthetics-job-manager logo

newrelic/synthetics-job-manager

newrelic
暂无描述
2 次收藏500万+ 次下载
14 天前更新
hashicorp/envoy-fips logo

hashicorp/envoy-fips

hashicorp
暂无描述
1万+ 次下载
19 天前更新

查看更多 synthetics-private-location-worker-fips 相关镜像

轩辕镜像配置手册

按平台快速找到配置文档

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 镜像访问常见问题解答 或 提交工单

镜像拉取常见问题

功能

免费版与专业版区别

功能对比 · 版本选择

支持的镜像仓库

Docker Hub · GCR · GHCR

新手拉取配置

登录 · 专属域名 · 配置

docker search 限制

专属域名 · Hub 搜索

不支持 push

仅支持 pull · 不支持

拉取速度原因

带宽 · 缓存 · 冷热镜像

排错

402 与流量用尽

402 · 流量包 · 充值

401 认证失败

401 · docker login

manifest unknown

标签错误 · 镜像不存在

410 Gone 排查

410 · Docker 升级

429 限流

免费版 · 请求频率

DNS 超时

DNS 解析 · 网络超时

账号

失败是否计费

manifest · blob · 计费

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

企业 · 个人 · 工单

修改登录密码

网站 · 仓库 · 重置

注销账户

工单 · 数据 · 注销

原理

mirrors 不生效

daemon.json · 重启

去掉域名前缀

docker tag · 重命名

指定架构拉取

ARM64 · AMD64 · 多架构

latest 与「最新」

digest · 版本号 · 标签

查看全部问题→

用户好评

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

用户头像

oldzhang

运维工程师

Linux服务器

5

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

轩辕镜像
镜像详情
...
datadog/synthetics-private-location-worker-fips
博客Docker 镜像公告与技术博客
热门查看热门 Docker 镜像推荐
教程轩辕镜像功能与使用教程
安装一键安装 Docker 并配置镜像源
官方公众号:源码跳动|官方技术交流群:13763429
官方公众号:源码跳动|官方技术交流群:|问题咨询请:提交工单
商务合作:点击复制邮箱
©2024-2026 源码跳动
商务合作:点击复制邮箱Copyright © 2024-2026 杭州源码跳动科技有限公司. All rights reserved.