Node.js dns.lookup() 到内部 docker-compose 服务

发布于 2025-01-09 09:35:20 字数 320 浏览 1 评论 0原文

我尝试测量 docker-compose/kubernetes 集群中的 DNS 延迟。

  setInterval(() => {
    console.time('dns-test');

    dns.lookup('http://my-service', (_, addresses, __) => {
      console.log('addresses:', addresses);
      console.timeEnd('dns-test');
    });
  }, 5000);

但是获取地址:未定义,有什么想法吗?

I've try yo measure DNS latency in my docker-compose/kubernetes cluster.

  setInterval(() => {
    console.time('dns-test');

    dns.lookup('http://my-service', (_, addresses, __) => {
      console.log('addresses:', addresses);
      console.timeEnd('dns-test');
    });
  }, 5000);

But get addresses: undefined, any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

坚持沉默 2025-01-16 09:35:20

...dns.lookup('http://my-service'...

lookup 函数(带有示例用法)将第一个参数作为您要查找的主机名,例如 google.com。您应该从中删除“http://”你传入的名字。

...dns.lookup('http://my-service'...

The lookup function (with example usage) takes the first parameter as the host name that you want to lookup, eg. google.com. You should remove "http://" from the name you passed in.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文