MerkleTreeLabs / Max-Planck

Social Bot connected to QRL and ZND Blockchains
GNU Affero General Public License v3.0
1 stars 0 forks source link

Data Analytics/Reporting #67

Closed fr1t2 closed 1 month ago

fr1t2 commented 1 month ago

Value: For business intelligence or operational insights, consider adding tracking metrics on system performance, user engagement (e.g., active wallets, promotions claimed), or transaction volumes. Implementation: A separate table for recording daily aggregates of transactions, tips, wallet usage, etc.

CREATE TABLE daily_metrics (
    id INT AUTO_INCREMENT PRIMARY KEY,
    metric_name VARCHAR(50),
    value INT,
    date DATE DEFAULT CURRENT_DATE
);