twenty20/application-monitor-agent

Monitor cron and queue uptime.

Installs: 247

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/twenty20/application-monitor-agent

0.5 2025-12-31 15:08 UTC

This package is auto-updated.

Last update: 2025-12-31 15:10:07 UTC


README

Monitors scheduled tasks and queues by pinging the Application Monitor API every 5 minutes.

Installation

  1. Add the site to the Application Monitor application

  2. Install the agent:

composer require twenty20/application-monitor-agent
  1. Copy and update the below in your .env
APPLICATION_MONITOR_AGENT_ENDPOINT=
APPLICATION_MONITOR_AGENT_SITE_ID=
APPLICATION_MONITOR_AGENT_KEY=
APPLICATION_MONITOR_DEBUGGING_ENABLED=false
  1. Add the following to the console kernel/commands file in your app:
$schedule
    ->command('application-monitor-agent:run-agent')
    ->onOneServer()
    ->withoutOverlapping()
    ->everyFiveMinutes();