blob: ad430b5c9afef969d1ad9f60a0d70701370031e2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/bash
# Metrics Viewer
# This script displays performance metrics from the unified logging system.
# Source the logging system
source ./logging.sh
echo "AI Thinking System - Performance Metrics"
echo "========================================"
echo ""
# Display metrics summary
get_metrics_summary
echo ""
echo "Detailed metrics file: ${METRICS_FILE}"
echo "Session logs directory: ${LOG_DIR}"
|