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

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

datadog/synthetics-private-location-worker-fips

datadog

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

下载次数: 0状态:社区镜像维护者:datadog仓库类型:镜像最近更新:1 个月前
使用轩辕镜像,把时间还给真正重要的事。点击查看
中文简介
标签下载
镜像标签列表与下载命令
使用轩辕镜像,把时间还给真正重要的事。点击查看

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亿+ 次下载
1 个月前更新
datadog/fips-proxy logo

datadog/fips-proxy

datadog
暂无描述
100万+ 次下载
1 天前更新
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万+ 次下载
3 天前更新
newrelic/synthetics-job-manager logo

newrelic/synthetics-job-manager

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

hashicorp/envoy-fips

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

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

轩辕镜像配置手册

探索更多轩辕镜像的使用方法,找到最适合您系统的配置方式

Docker 配置

登录仓库拉取

通过 Docker 登录认证访问私有仓库

专属域名拉取

无需登录使用专属域名

K8s Containerd

Kubernetes 集群配置 Containerd

K3s

K3s 轻量级 Kubernetes 镜像加速

Dev Containers

VS Code Dev Containers 配置

Podman

Podman 容器引擎配置

Singularity/Apptainer

HPC 科学计算容器配置

其他仓库配置

ghcr、Quay、nvcr 等镜像仓库

Harbor 镜像源配置

Harbor Proxy Repository 对接专属域名

Portainer 镜像源配置

Portainer Registries 加速拉取

Nexus 镜像源配置

Nexus3 Docker Proxy 内网缓存

系统配置

Linux

在 Linux 系统配置镜像服务

Windows/Mac

在 Docker Desktop 配置镜像

MacOS OrbStack

MacOS OrbStack 容器配置

Docker Compose

Docker Compose 项目配置

NAS 设备

群晖

Synology 群晖 NAS 配置

飞牛

飞牛 fnOS 系统配置镜像

绿联

绿联 NAS 系统配置镜像

威联通

QNAP 威联通 NAS 配置

极空间

极空间 NAS 系统配置服务

网络设备

爱快路由

爱快 iKuai 路由系统配置

宝塔面板

在宝塔面板一键配置镜像

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

镜像拉取常见问题

使用与功能问题

配置了专属域名后,docker search 为什么会报错?

docker search 限制

Docker Hub 上有的镜像,为什么在轩辕镜像网站搜不到?

站内搜不到镜像

机器不能直连外网时,怎么用 docker save / load 迁镜像?

离线 save/load

docker pull 拉插件报错(plugin v1+json)怎么办?

插件要用 plugin install

WSL 里 Docker 拉镜像特别慢,怎么排查和优化?

WSL 拉取慢

轩辕镜像安全吗?如何用 digest 校验镜像没被篡改?

安全与 digest

第一次用轩辕镜像拉 Docker 镜像,要怎么登录和配置?

新手拉取配置

轩辕镜像合规吗?轩辕镜像的合规是怎么做的?

镜像合规机制

错误码与失败问题

docker pull 提示 manifest unknown 怎么办?

manifest unknown

docker pull 提示 no matching manifest 怎么办?

no matching manifest(架构)

镜像已拉取完成,却提示 invalid tar header 或 failed to register layer 怎么办?

invalid tar header(解压)

Docker pull 时 HTTPS / TLS 证书验证失败怎么办?

TLS 证书失败

Docker pull 时 DNS 解析超时或连不上仓库怎么办?

DNS 超时

docker 无法连接轩辕镜像域名怎么办?

域名连通性排查

Docker 拉取出现 410 Gone 怎么办?

410 Gone 排查

出现 402 或「流量用尽」提示怎么办?

402 与流量用尽

Docker 拉取提示 UNAUTHORIZED(401)怎么办?

401 认证失败

遇到 429 Too Many Requests(请求太频繁)怎么办?

429 限流

docker login 提示 Cannot autolaunch D-Bus,还算登录成功吗?

D-Bus 凭证提示

为什么会出现「单层超过 20GB」或 413,无法加速拉取?

413 与超大单层

账号 / 计费 / 权限

轩辕镜像免费版和专业版有什么区别?

免费版与专业版区别

轩辕镜像支持哪些 Docker 镜像仓库?

支持的镜像仓库

镜像拉取失败还会不会扣流量?

失败是否计费

麒麟 V10 / 统信 UOS 提示 KYSEC 权限不够怎么办?

KYSEC 拦截脚本

如何在轩辕镜像申请开具发票?

申请开票

怎么修改轩辕镜像的网站登录和仓库登录密码?

修改登录密码

如何注销轩辕镜像账户?要注意什么?

注销账户

配置与原理类

写了 registry-mirrors,为什么还是走官方或仍然报错?

mirrors 不生效

怎么用 docker tag 去掉镜像名里的轩辕域名前缀?

去掉域名前缀

如何拉取指定 CPU 架构的镜像(如 ARM64、AMD64)?

指定架构拉取

用轩辕镜像拉镜像时快时慢,常见原因有哪些?

拉取速度原因

查看全部问题→

用户好评

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

用户头像

oldzhang

运维工程师

Linux服务器

5

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

轩辕镜像
镜像详情
...
datadog/synthetics-private-location-worker-fips
博客Docker 镜像公告与技术博客
热门查看热门 Docker 镜像推荐
安装一键安装 Docker 并配置镜像源
镜像拉取问题咨询请 提交工单,官方技术交流群:1072982923。轩辕镜像所有镜像均来源于原始仓库,本站不存储、不修改、不传播任何镜像内容。
镜像拉取问题咨询请提交工单,官方技术交流群:。轩辕镜像所有镜像均来源于原始仓库,本站不存储、不修改、不传播任何镜像内容。
商务合作:点击复制邮箱
©2024-2026 源码跳动
商务合作:点击复制邮箱Copyright © 2024-2026 杭州源码跳动科技有限公司. All rights reserved.