8a097dabbe
* add minor todo * BadRequest instead of web3_context * more bad request error codes * use tokio-uring for the tcp listener * clear block instead of panic * clone earlier * more watch channels instead of rwlocks * drop uring for now (its single threaded) and combine get/post/put routes * clean up iter vs into_iter and unnecessary collect * arcswap instead of rwlock for Web3Rpcs.by_name * cargo upgrade * uuid fast-rng and alphabetize * if protected rpcs, only use protected rpcs * listenfd * make connectinfo optional * try_get_with_by_ref instead of try_get_with * anyhow ensure. and try_get_with_as_ref isn't actually needed * fix feature flags * more refs and less clone * automatic retry for eth_getTransactionReceipt and eth_getTransactionByHash thanks for the report Lefteris @ Rotki * ArcSwap for provider * set archive_request to true on transaction retrying * merge durable stats * Revert "ArcSwap for provider" This reverts commit 166d77f204cde9fa7722c0cefecbb27008749d47. * comments * less clones * more refs * fix test * add optional mimalloc feature * remove stale dependency * sort * cargo upgrade * lint constants * add todo * another todo * lint * anyhow::ensure instead of panic * allow rpc_accounting_v2 entries for requests without an rpc key
48 lines
1.3 KiB
Rust
48 lines
1.3 KiB
Rust
//! `SeaORM` Entity. Generated by sea-orm-codegen 0.10.7
|
|
|
|
use sea_orm::entity::prelude::*;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq, Serialize, Deserialize)]
|
|
#[sea_orm(table_name = "rpc_accounting_v2")]
|
|
pub struct Model {
|
|
#[sea_orm(primary_key)]
|
|
pub id: u64,
|
|
pub rpc_key_id: Option<u64>,
|
|
pub chain_id: u64,
|
|
pub period_datetime: DateTimeUtc,
|
|
pub archive_needed: bool,
|
|
pub error_response: bool,
|
|
pub frontend_requests: u64,
|
|
pub backend_requests: u64,
|
|
pub backend_retries: u64,
|
|
pub no_servers: u64,
|
|
pub cache_misses: u64,
|
|
pub cache_hits: u64,
|
|
pub sum_request_bytes: u64,
|
|
pub sum_response_millis: u64,
|
|
pub sum_response_bytes: u64,
|
|
#[sea_orm(column_type = "Decimal(Some((20, 10)))")]
|
|
pub sum_credits_used: Decimal,
|
|
}
|
|
|
|
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
|
pub enum Relation {
|
|
#[sea_orm(
|
|
belongs_to = "super::rpc_key::Entity",
|
|
from = "Column::RpcKeyId",
|
|
to = "super::rpc_key::Column::Id",
|
|
on_update = "NoAction",
|
|
on_delete = "NoAction"
|
|
)]
|
|
RpcKey,
|
|
}
|
|
|
|
impl Related<super::rpc_key::Entity> for Entity {
|
|
fn to() -> RelationDef {
|
|
Relation::RpcKey.def()
|
|
}
|
|
}
|
|
|
|
impl ActiveModelBehavior for ActiveModel {}
|