PHPackages                             wy/neos-oh-dear - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Logging &amp; Monitoring](/categories/logging)
4. /
5. wy/neos-oh-dear

AbandonedArchivedNeos-plugin[Logging &amp; Monitoring](/categories/logging)

wy/neos-oh-dear
===============

Track your app vitals with OhDear.app

v1.1.1(2y ago)0943PHPPHP &gt;=7.4

Since Dec 17Pushed 9mo ago5 watchersCompare

[ Source](https://github.com/wysiwyg-software-design/neos-oh-dear)[ Packagist](https://packagist.org/packages/wy/neos-oh-dear)[ RSS](/packages/wy-neos-oh-dear/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (4)Dependencies (2)Versions (6)Used By (0)

Caution

This repository is deprecated and will be removed in September 2025

Neos Oh Dear
============

[](#neos-oh-dear)

This package makes it easy to monitor your Neos application vitals and outputs a JSON for Oh Dear.

Installation
------------

[](#installation)

You can easily install this plugin via composer

```
composer require wy/neos-oh-dear
```

Set Up
------

[](#set-up)

1. Create a file in the web root folder, e.g. `health.php`(see [example below](#example-file))
    1. Require `../Packages/Plugins/Wysiwyg.OhDear/autoload.php`
    2. Initialize the `\Wysiwyg\OhDear\Application` class with the Composer autoloader (see below for an example)
    3. Initialize your checks with the correct configuration values
    4. Process the steps
2. Configure your Oh Dear secret at the following config path in Neos: `Wysiwyg.OhDear.healthSecret` (only for production)
3. Open the file in your web browser, the result should be a JSON string (see example below)

### Available Checks

[](#available-checks)

- [CpuLoadCheck](./Classes/Checks/CpuLoadCheck.php)
- [DatabaseCheck](./Classes/Checks/DatabaseCheck.php)
- [DiskSpaceCheck](./Classes/Checks/DiskSpaceCheck.php)
- [RedisCheck](./Classes/Checks/RedisCheck.php)
- [SwiftSmtpCheck](./Classes/Checks/SwiftSmtpCheck.php)

### Example File

[](#example-file)

```
