解析 Webalizer 或/和 AWstats html 文件

发布于 2024-12-26 11:31:35 字数 102 浏览 2 评论 0原文

我有带有几个子域的 CPanel 托管。每个人都使用 AWstats 跟踪自己的统计数据。

有没有办法解析生成的 HTML 表以获取所使用的带宽?

谢谢大家。

I've got CPanel hosting with a few subdomains. Each one tracks its own stats using AWstats.

Is there any way to parse the HTML tables that are generated to get the bandwidth used?

Thanks for all.

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

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

发布评论

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

评论(2

薯片软お妹 2025-01-02 11:31:35

直接读取 HTML 的另一种方法是直接使用 awstats 用于呈现 HTML 的统计文件。 cpanel 应该将它们存储在可访问的地方(在我的主机上,它们位于 tmp/ 中)。这是一个简单的文本文件,具有易于找到的标记清晰的部分,并且在该部分内是表示表格的空格分隔的 CSV。这个关于用 PHP 解析文件的页面是获取以下信息的好地方如何用代码做到这一点。我确信,只要掌握一点 Linux 知识,您就可以使用 sed 和 awk 分别剪切文件并返回从这些摘要中收集所需统计信息所需的列。

An alternative to reading the HTML directly is to directly use the stats files that awstats uses to render the HTML. cpanel should store them somewhere accessible (on my hosting they're in tmp/). It's a simple text file, with well marked sections that are easily found, and within the section is space-separated CSV representing the tables. This page on parsing the files with PHP is a good place for information on how to do it with code. I'm sure with a bit of linux know-how you can use sed and awk to respectively chop the file and return the columns you need to gather up the stats you need from these summaries.

喵星人汪星人 2025-01-02 11:31:35

使用 DOMXPath 查询获取“kB F”中每一行的文本列,例如第一行的以下内容:

$doc = new DOMDocument;

//Path to Webalizer or AWStats file
$doc->Load('stats.html');

$xpath = new DOMXPath($doc);

// Get the first bandwidth record in the table
$query = "//tr[7]/td[7]/font/text()";

$bandwidth1 = $xpath->query($query);

参考

Use a DOMXPath query the get the text of each row in the "kB F" column, such as the following for the first row:

$doc = new DOMDocument;

//Path to Webalizer or AWStats file
$doc->Load('stats.html');

$xpath = new DOMXPath($doc);

// Get the first bandwidth record in the table
$query = "//tr[7]/td[7]/font/text()";

$bandwidth1 = $xpath->query($query);

References

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