Understand your plan limits, monitor your usage, and upgrade when needed.
View your current usage in real-time from your dashboard:
Active Jobs
Number of unique jobs you're currently monitoring
Monthly Runs
Total number of job executions this billing cycle
API Calls
Rate limit: 100 requests per minute across all endpoints
Data Retention
How long your run history and logs are stored
When you reach your job limit:
When you exceed your monthly runs:
Rate limit: 100 requests per minute
# Instead of calling heartbeat every second:
while processing:
do_work()
time.sleep(1)
seer.heartbeat() # Too frequent!
# Call heartbeat every 5 minutes:
while processing:
do_work()
if time.time() - last_heartbeat > 300:
seer.heartbeat()
last_heartbeat = time.time()Professional plans can add extra monitors at $1.50/month each: