akkoma/lib/pleroma/stats.ex

55 lines
1.3 KiB
Elixir
Raw Normal View History

# Pleroma: A lightweight social networking server
# Copyright © 2017-2018 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Stats do
import Ecto.Query
2018-05-04 21:25:31 +00:00
alias Pleroma.{User, Repo}
def start_link do
2018-01-14 06:15:11 +00:00
agent = Agent.start_link(fn -> {[], %{}} end, name: __MODULE__)
spawn(fn -> schedule_update() end)
agent
end
2018-01-14 06:15:11 +00:00
def get_stats do
Agent.get(__MODULE__, fn {_, stats} -> stats end)
end
def get_peers do
Agent.get(__MODULE__, fn {peers, _} -> peers end)
end
def schedule_update do
spawn(fn ->
2018-03-30 13:01:53 +00:00
# 1 hour
Process.sleep(1000 * 60 * 60 * 1)
schedule_update()
end)
2018-03-30 13:01:53 +00:00
update_stats()
end
def update_stats do
2018-03-30 13:01:53 +00:00
peers =
from(
u in Pleroma.User,
select: fragment("distinct ?->'host'", u.info),
where: u.local != ^true
)
|> Repo.all()
domain_count = Enum.count(peers)
2018-03-30 13:01:53 +00:00
status_query =
from(u in User.local_user_query(), select: fragment("sum((?->>'note_count')::int)", u.info))
2018-02-12 09:13:54 +00:00
status_count = Repo.one(status_query)
2018-03-30 13:01:53 +00:00
user_count = Repo.aggregate(User.local_user_query(), :count, :id)
Agent.update(__MODULE__, fn _ ->
2018-01-14 06:15:11 +00:00
{peers, %{domain_count: domain_count, status_count: status_count, user_count: user_count}}
end)
end
end