Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time

Installation & Bundle Configuration

Install with Composer

composer require w-vision/pimcore-monitor-bundle:^1.0

Enabled the Bundle

You can enable the Bundle within the Pimcore Back-End or via CLI command.

php bin/console pimcore:bundle:enable PimcoreMonitorBundle

Report Configuration

This bundle allows you to send a health report to a custom REST endpoint.

pimcore_monitor:
    report:

        # API key for health report endpoint.
        api_key:          '<YOUR_RANDOM_BEARER_TOKEN>'

        # Default health report API endpoint to send data to.
        default_endpoint: 'https://health.example.com/report'

Note: The health report is triggered with the command pimcore:monitor:health-report. Learn more about the available commands here.