Skip to content

Inspect Effective Uplinkr Configuration

Terminal window
php artisan uplinkr:config

Displays the current Uplinkr configuration in a structured, hierarchical format. This command is useful for verifying your configuration values, debugging configuration issues, and understanding how Uplinkr is currently configured.

The output shows all configuration sections including storage settings, probe configuration, project settings, notifications, logging, and scheduler options.

This command has no options.

Terminal window
php artisan uplinkr:config

The command displays configuration values in a hierarchical tree structure:

storage
disk: local
path: uplinkr
probe_results: probes
file_extension: json
pretty_print_probe_results: true
archive_folder: archived
allow_complete_wipe: false
probe_results_grouping: daily
probes
execution_mode: direct
queue_connection: sync
standard_latency: 1500
user_agent: uplinkr-monitor
projects
standard_project: standard_project
standard_project_status: enabled

Each configuration key is shown with its current value, formatted based on type:

  • Booleans: true / false
  • Null values: null
  • Empty strings: ""
  • Arrays and objects: JSON format
  • 0 (SUCCESS): Configuration displayed successfully
  • 1 (FAILURE): Uplinkr configuration not found (run uplinkr:install first)