代码之家  ›  专栏  ›  技术社区  ›  Praveen Kumar Mekala

如何在Splunk中找到每个URL的流量和点击数?

  •  0
  • Praveen Kumar Mekala  · 技术社区  · 7 年前

    例如,我有一个如下URL,我想知道上周发生的点击总数:

    https://stackoverflow.com/
    

    我需要编写什么查询来获取Splunk中每天/每段时间的点击数(count)?

    我试过这个:

    "url" | stats sum(linecount) as Total
    

    正在返回>过去15分钟有1000次点击,这是不正确的。

    提前谢谢。

    3 回复  |  直到 7 年前
        1
  •  2
  •   Praveen Kumar Mekala    7 年前

    指数 , 主办 地点 姓名。

    =应用环境,如SIT/UAT/QA/pre prod/production

    主机名 =托管应用程序的实例

    =在我的示例中 https://stackoverflow.com

    查询 = index="SIT*" host="*host_name*" "https://stackoverflow.com" "/questions" | stats sum(linecount) as Total

    通过执行上述查询,我可以获得 stackoverflow.com/questions url。

        2
  •  1
  •   freginold    7 年前

    尝试以下查询之一以返回点击总数:

    "url" | stats count
    

    "url" | stats sum(count) as total
    
        3
  •  0
  •   Ravindra'S    5 年前

    您好,下面的查询是获取站点请求的一个很好的示例

    索引=” bcom公司 " " https://www.bloomingdales.com/

    @拉文德拉的