Changeset 2740405
- Timestamp:
- 06/10/2022 10:52:21 AM (4 years ago)
- Location:
- check-php-memory-peak
- Files:
-
- 4 edited
-
tags/1.0.0/check-php-memory-peak.php (modified) (1 diff)
-
tags/1.0.0/readme.txt (modified) (2 diffs)
-
trunk/check-php-memory-peak.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
check-php-memory-peak/tags/1.0.0/check-php-memory-peak.php
r2739638 r2740405 3 3 Plugin Name: Check PHP Memory Peak 4 4 Plugin URI: 5 Description: This plugin checks php memory usage and notifies the Administration Email Address if the threshold is exceeded.5 Description: This plugin checks PHP memory usage and sends an email to the administrator if the maximum memory usage exceeds the threshold. 6 6 Version: 1.0 7 7 Author: PRESSMAN -
check-php-memory-peak/tags/1.0.0/readme.txt
r2739638 r2740405 2 2 Contributors: pressmaninc, hiroshisekiguchi, kazunao, nananoguchi 3 3 Tags: pressman, peak, memory, alert, notification, mail, WP10 4 Requires at least: 6.04 Requires at least: 5.2.3 5 5 Tested up to: 6.0 6 6 Stable tag: 1.0 … … 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html 10 10 11 This plugin checks php memory usage and notifies the Administration Email Address if the threshold is exceeded.11 This plugin checks PHP memory usage and sends an email to the administrator if the maximum memory usage exceeds the threshold. 12 12 13 13 == Description == 14 This plugin checks php memory usage and notifies the Administration Email Address if the threshold is exceeded.15 Notification includes memory usage, $_SERVERand $_REQUEST values.16 When used in conjunction with the "External Notification" plugin, notifications are sent to Slack instead of email.14 This plugin checks PHP memory usage and sends an email to the administrator if the maximum memory usage exceeds the threshold. 15 This email will include the memory usage, $_SERVER, and $_REQUEST values. 16 When used in conjunction with the External Notification plugin, the email can be sent as a notification to Slack. 17 17 18 18 == For developer == 19 1. The default value for the threshold is 32 MB, but can be set to any value. Please define WP10_MEMORY_ALERT_THRESHOLD in megabytes in wp_config. 20 2. With a filter_hook 'cpmp_delete_things_list', you can remove any contents from the content retrieved by $_REQUEST. 21 3. When used in conjunction with the "External Notification" plugin, notifications are sent to Slack instead of email. 19 1. The default value for the threshold is 32 MB, but can be set to any value. Please define WP10_MEMORY_ALERT_THRESHOLD in megabytes in wp-config.php file. 20 2. The plugin has a filter hook called “cpmp_delete_things_list”. This hook can be used to delete any content from the information retrieved by $_REQUEST. 22 21 23 22 == Installation == -
check-php-memory-peak/trunk/check-php-memory-peak.php
r2739627 r2740405 3 3 Plugin Name: Check PHP Memory Peak 4 4 Plugin URI: 5 Description: This plugin checks php memory usage and notifies the Administration Email Address if the threshold is exceeded.5 Description: This plugin checks PHP memory usage and sends an email to the administrator if the maximum memory usage exceeds the threshold. 6 6 Version: 1.0 7 7 Author: PRESSMAN -
check-php-memory-peak/trunk/readme.txt
r2739627 r2740405 2 2 Contributors: pressmaninc, hiroshisekiguchi, kazunao, nananoguchi 3 3 Tags: pressman, peak, memory, alert, notification, mail, WP10 4 Requires at least: 6.04 Requires at least: 5.2.3 5 5 Tested up to: 6.0 6 6 Stable tag: 1.0 … … 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html 10 10 11 This plugin checks php memory usage and notifies the Administration Email Address if the threshold is exceeded.11 This plugin checks PHP memory usage and sends an email to the administrator if the maximum memory usage exceeds the threshold. 12 12 13 13 == Description == 14 This plugin checks php memory usage and notifies the Administration Email Address if the threshold is exceeded.15 Notification includes memory usage, $_SERVERand $_REQUEST values.16 When used in conjunction with the "External Notification" plugin, notifications are sent to Slack instead of email.14 This plugin checks PHP memory usage and sends an email to the administrator if the maximum memory usage exceeds the threshold. 15 This email will include the memory usage, $_SERVER, and $_REQUEST values. 16 When used in conjunction with the External Notification plugin, the email can be sent as a notification to Slack. 17 17 18 18 == For developer == 19 1. The default value for the threshold is 32 MB, but can be set to any value. Please define WP10_MEMORY_ALERT_THRESHOLD in megabytes in wp_config. 20 2. With a filter_hook 'cpmp_delete_things_list', you can remove any contents from the content retrieved by $_REQUEST. 21 3. When used in conjunction with the "External Notification" plugin, notifications are sent to Slack instead of email. 19 1. The default value for the threshold is 32 MB, but can be set to any value. Please define WP10_MEMORY_ALERT_THRESHOLD in megabytes in wp-config.php file. 20 2. The plugin has a filter hook called “cpmp_delete_things_list”. This hook can be used to delete any content from the information retrieved by $_REQUEST. 22 21 23 22 == Installation ==
Note: See TracChangeset
for help on using the changeset viewer.