如何将 wow 网络延迟记录到文件中

发布于 2024-11-18 12:30:02 字数 122 浏览 3 评论 0原文

我想将 wow 网络延迟记录到一个文件中,例如 c:/wowlatency.txt

现在,我可以使用一些 lua stript 将其记录到 wow 的聊天日志文件中。但我想将其记录到我自己的日志文件中。可以这样做?

I want log the wow network latency in to a file ,like c:/wowlatency.txt

now ,I can use some lua stript to log it into wow's chat log file.but I want log it to my own log file .can do this ?

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

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

发布评论

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

评论(1

原野 2024-11-25 12:30:02

如果您已经拥有监控延迟的基础设施(即每 30 秒调用 GetNetStats),那么您可以使用Lua内置的文件I/O工具来打开所需的日志文件:

local latencylog = io.open("c:/wowlatency.txt","w")

-- enter whatever loop you may have
  latencylog:write(message_string_about_latency)
  -- don't forget to write a \n if it's not in the string
  -- repeat

-- after finishing the log
latencylog:close()

If you already have the infrastructure in place to monitor the latency (ie. calling GetNetStats every 30 seconds), you can use Lua's built in File I/O facilities to open the desired log file:

local latencylog = io.open("c:/wowlatency.txt","w")

-- enter whatever loop you may have
  latencylog:write(message_string_about_latency)
  -- don't forget to write a \n if it's not in the string
  -- repeat

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