Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions packages/atxp/src/commands/paas/analytics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ export async function analyticsQueryCommand(options: AnalyticsQueryOptions): Pro
console.log('Example queries:');
console.log(' --sql "SELECT blob1 as event, COUNT(*) as count FROM analytics_data GROUP BY blob1"');
console.log(' --sql "SELECT SUM(double1) as total FROM analytics_data"');
console.log();
console.log('Note: Use "analytics_data" as the table name - it will be replaced automatically.');
console.log('Time filtering (default 24h) is applied unless your query includes "timestamp".');
process.exit(1);
}

Expand Down
Loading