mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-31 01:57:45 +08:00
feat(analytics): Add Clickhouse based analytics (#2988)
Co-authored-by: harsh_sharma_juspay <harsh.sharma@juspay.in> Co-authored-by: Ivor Dsouza <ivor.dsouza@juspay.in> Co-authored-by: Chethan Rao <70657455+Chethan-rao@users.noreply.github.com> Co-authored-by: nain-F49FF806 <126972030+nain-F49FF806@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com> Co-authored-by: akshay.s <akshay.s@juspay.in> Co-authored-by: Gnanasundari24 <118818938+Gnanasundari24@users.noreply.github.com>
This commit is contained in:
@ -1,8 +1,6 @@
|
||||
#![forbid(unsafe_code)]
|
||||
#![recursion_limit = "256"]
|
||||
|
||||
#[cfg(feature = "olap")]
|
||||
pub mod analytics;
|
||||
#[cfg(feature = "stripe")]
|
||||
pub mod compatibility;
|
||||
pub mod configs;
|
||||
@ -17,6 +15,8 @@ pub(crate) mod macros;
|
||||
pub mod routes;
|
||||
pub mod workflows;
|
||||
|
||||
#[cfg(feature = "olap")]
|
||||
pub mod analytics;
|
||||
pub mod events;
|
||||
pub mod middleware;
|
||||
pub mod openapi;
|
||||
@ -35,10 +35,7 @@ use storage_impl::errors::ApplicationResult;
|
||||
use tokio::sync::{mpsc, oneshot};
|
||||
|
||||
pub use self::env::logger;
|
||||
use crate::{
|
||||
configs::settings,
|
||||
core::errors::{self},
|
||||
};
|
||||
use crate::{configs::settings, core::errors};
|
||||
|
||||
#[cfg(feature = "mimalloc")]
|
||||
#[global_allocator]
|
||||
|
||||
Reference in New Issue
Block a user