Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Google Cloud Console 的 Trace 页面中,我可以看到地址 192.168.1.1 需要很长时间才能执行。这个地址是什么?从哪里?它来自内部云的基础架构吗?还是我的本地地址(如果可能)?
在与 Google Cloud Support 交谈后,似乎 192.168.1.1 正是启动 Google Cloud Function 的机器 IP 地址。但有趣的是,这个地址只有console.*在代码中有内容时才会出现。所以,例如,我console.log用谷歌云日志记录一些东西。
console.*
console.log
在屏幕截图上,有几个呼叫这个地址。在顶部,我们可以看到长期通话,这些通话与保持 console.log 连接。并且,例如最后一次通话仅持续 3ms 并立即关闭。此 console.log 已在请求结束时被调用。
希望它可以帮助某人。