Merge pull request #4828 from blockscout/vb-logs-for-tx-chart

Logging for txs/day chart
pull/4835/head
Victor Baranov 3 years ago committed by GitHub
commit aa68d6210b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      CHANGELOG.md
  2. 17
      apps/explorer/lib/explorer/chain/transaction/history/historian.ex

@ -58,6 +58,7 @@
- [#4582](https://github.com/blockscout/blockscout/pull/4582) - Fix NaN input on write contract page
### Chore
- [#4828](https://github.com/blockscout/blockscout/pull/4828) - Logging for txs/day chart
- [#4823](https://github.com/blockscout/blockscout/pull/4823) - Various error handlers with unresponsive JSON RPC endpoint
- [#4821](https://github.com/blockscout/blockscout/pull/4821) - Block Details page: Remove crossing at the Burnt Fee line
- [#4819](https://github.com/blockscout/blockscout/pull/4819) - Add config for GasUsage Cache

@ -2,6 +2,7 @@ defmodule Explorer.Chain.Transaction.History.Historian do
@moduledoc """
Implements behaviour Historian which will compile TransactionStats from Block/Transaction data and then save the TransactionStats into the database for later retrevial.
"""
require Logger
use Explorer.History.Historian
alias Explorer.Chain.{Block, Transaction}
@ -16,7 +17,10 @@ defmodule Explorer.Chain.Transaction.History.Historian do
@impl Historian
def compile_records(num_days, records \\ []) do
Logger.info("tx/per day chart: collect records for txs per day stats")
if num_days == 0 do
Logger.info("tx/per day chart: records collected #{inspect(records)}")
# base case
{:ok, records}
else
@ -25,6 +29,10 @@ defmodule Explorer.Chain.Transaction.History.Historian do
earliest = datetime(day_to_fetch, ~T[00:00:00])
latest = datetime(day_to_fetch, ~T[23:59:59])
Logger.info("tx/per day chart: earliest date #{DateTime.to_string(earliest)}")
Logger.info("tx/per day chart: latest date #{DateTime.to_string(latest)}")
min_max_block_query =
from(block in Block,
where: block.timestamp >= ^earliest and block.timestamp <= ^latest,
@ -33,6 +41,8 @@ defmodule Explorer.Chain.Transaction.History.Historian do
{min_block, max_block} = Repo.one(min_max_block_query, timeout: :infinity)
Logger.info("tx/per day chart: min/max block numbers [#{min_block}, #{max_block}]")
if min_block && max_block do
all_transactions_query =
from(
@ -49,7 +59,9 @@ defmodule Explorer.Chain.Transaction.History.Historian do
)
num_transactions = Repo.aggregate(query, :count, :hash, timeout: :infinity)
Logger.info("tx/per day chart: num of transactions #{num_transactions}")
gas_used = Repo.aggregate(query, :sum, :gas_used, timeout: :infinity)
Logger.info("tx/per day chart: total gas used #{gas_used}")
total_fee_query =
from(transaction in subquery(all_transactions_query),
@ -60,6 +72,7 @@ defmodule Explorer.Chain.Transaction.History.Historian do
)
total_fee = Repo.one(total_fee_query, timeout: :infinity)
Logger.info("tx/per day chart: total fee #{total_fee}")
records = [
%{date: day_to_fetch, number_of_transactions: num_transactions, gas_used: gas_used, total_fee: total_fee}
@ -76,9 +89,13 @@ defmodule Explorer.Chain.Transaction.History.Historian do
@impl Historian
def save_records(records) do
Logger.info("tx/per day chart: save records")
{num_inserted, _} =
Repo.insert_all(TransactionStats, records, on_conflict: {:replace_all_except, [:id]}, conflict_target: [:date])
Logger.info("tx/per day chart: number of inserted #{num_inserted}")
Publisher.broadcast(:transaction_stats)
num_inserted
end

Loading…
Cancel
Save