Artisan Commands

Edit this page »

Once installed, the thenpingme/laravel package provides four Artisan commands to your application.

thenpingme:setup

The setup command is responsible for configuring your application and reporting your scheduled tasks to thenping.me. This command only has to be run a single time and can be run locally or in production.

It gathers all the tasks configured in your app/Console/Kernel.php file, validates them for uniqueness, and configures them for monitoring.

This command will also create a random signing key and add it to your .env file. This key must be present in your production environment.

Once setup is complete, you will receive an email to verify that your application's tasks are ready to be monitored. Each of your tasks will remain in a pending state until they are triggered by your scheduler for the first time.

Any tasks that are defined using the environments() constraint will only be detected in that environment.

Any tasks that have been configured to be skipped will not be sent as part of the setup task payload.

thenpingme:sync

As the name suggests, the sync command is responsible for ensuring that your application tasks are kept in sync with thenping.me.

You should include this command as part of your deployment process, to ensure your tasks and their schedules are correctly monitored.

In order for all relevant tasks to be monitored, this command should be run in the same environment that your tasks are reporting from.

That is to say, if you have tasks constrained to only run in production environments – environments(['production']) – you should run thenpingme:sync in the production environment.

Note: This command will always run in sync, so you receive immediate feedback if your tasks fail to sync for any reason.

Any tasks that have been configured to be skipped will not be sent as part of the sync task payload. Tasks that were previously monitored will be removed from thenping.me.

thenpingme:schedule
Tailwind CSS version
< v3.2

Note: With the introduction of the new artisan schedule:list command in Laravel 9.x, the functionality provided by this package has been deprecated and will be removed in a later version.

The schedule command is useful to get a quick overview of all of your application's scheduled tasks, their interval, expected previous and next runs.

+--+--------------------------+----------------------+-------------+---------------------+---------------------+
| | Command | Interval | Description | Last Run | Next Due |
+--+--------------------------+----------------------+-------------+---------------------+---------------------+
| | check:missing-tasks | Every minute | | 2020-09-05 05:03:00 | 2020-09-05 05:05:00 |
| | check:missing-executions | Every minute | | 2020-09-05 05:03:00 | 2020-09-05 05:05:00 |
| | metrics:gather | Every day at 12:07am | | 2020-09-05 00:07:00 | 2020-09-06 00:07:00 |
+--+--------------------------+----------------------+-------------+---------------------+---------------------+

Any tasks that are identified as being not uniquely identifiable will be flagged as such.

+-----+--------------------------+----------------------+-------------+---------------------+---------------------+
| | Command | Interval | Description | Last Run | Next Due |
+-----+--------------------------+----------------------+-------------+---------------------+---------------------+
| ! | check:missing-tasks | Every minute | | 2020-09-05 05:03:00 | 2020-09-05 05:05:00 |
| ! | check:missing-tasks | Every minute | | 2020-09-05 05:03:00 | 2020-09-05 05:05:00 |
| | check:missing-executions | Every minute | | 2020-09-05 05:03:00 | 2020-09-05 05:05:00 |
| | metrics:gather | Every day at 12:07am | | 2020-09-05 00:07:00 | 2020-09-06 00:07:00 |
+-----+--------------------------+----------------------+-------------+---------------------+---------------------+
Tasks have been identified that are not uniquely distinguishable!

thenpingme:verify

The verify command is used to identify tasks that are not uniquely distinguishable.

This command will return a non-zero exit code, so it can be used as part of your continuous integration's linting process to halt deployment, in the event you have collisions.

+---------+---------------------+------------+--------------+-------------+-------+
| Type | Command | Expression | Interval | Description | Extra |
+---------+---------------------+------------+--------------+-------------+-------+
| command | check:missing-tasks | * * * * * | Every minute | | |
| command | check:missing-tasks | * * * * * | Every minute | | |
+---------+---------------------+------------+--------------+-------------+-------+
Tasks have been identified that are not uniquely distinguishable!

Unlike the sync command, verify will return only those tasks that collide.