Plugin info

Total downloads: 1,806
Active installs: 10
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 11/27/2019 (2225 days ago)
Added to WordPress: 6/12/2018 (7 years old)
Minimum WordPress version: 4.7.2
Tested up to WordPress version: 5.3.0
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 2225 days ago

20/100

Is Web Request Metrics abandoned?

Possibly abandoned (last update 2225 days ago).

Compatibility

Requires WordPress: 4.7.2
Tested up to: 5.3.0
Requires PHP: f

Languages

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

No similar plugins found yet.

Description

This plugin provides a mechanism for checking the main connection statistics for page requests to key pages on your site.

It does this by connecting to the key pages you configure every minute, using ‘curl’ PHP functions, gathering the metrics from the connection into a JSON statistics file to be supplied to your monitoring systems.

In our case, we run Prometheus, so a metrics endpoint is provided. We gather the metrics with the following section of Prometheus configuration:

`

– job_name: ‘WebRequestMetrics’
scrape_interval: 60s
honor_labels: true
scheme: ‘https’
basic_auth:
username: ‘prometheus’
password: ‘secret_token_known_to_your_monitoring_system’
metrics_path: ‘/’
params:
__metrics: [1]
static_configs:
– targets:
– www.golder.org
– www.myothersite.com

`

Installation

No installation instructions available

Frequently Asked Questions

No FAQ available

Review feed

No reviews available

Screenshots

No screenshots available

Changelog

0.4.0

  • Perform HTTP requests in parallel.

0.3.0

  • Add ‘site’ and ‘variant’ metrics tags.

0.2.4

  • Header order fixes

0.2.3

  • Add cache control header.
  • Shorten admin menu label.

0.2.2

  • Sanitize input fields on admin settings.
  • Make function names less generic for WP plugin upload approval.

0.2.1

  • Minor warning fix.

0.2

  • Basic settings page. Configurable list of URIs to check. Optional Basic Auth.

0.1

  • Initial version.