fangmd / blogsource

6 stars 0 forks source link

grafana #102

Open fangmd opened 6 months ago

fangmd commented 6 months ago
fangmd commented 6 months ago

获取 24H PV 指标

sum(count_over_time(
  {job="varlogs"}
  | json 
  |  __error__="" and remote_addr != "" and http_user_agent !~ "^Blackbox.*" 
  [24h]
))

获取 24H UV 指标

sum(sum by (remote_addr) (
  sum by (remote_addr, geoip_country_code) (
    count_over_time(
      {job="varlogs"}
      | json
      | __error__="" and remote_addr != "" and http_user_agent !~ "^Blackbox.*"
      [24h]
    )
  ) ^ 0
))