Title: DevPulse
Author: sekolahcode
Published: <strong>ಆಗಷ್ಟ್ 21, 2026</strong>
Last modified: ಆಗಷ್ಟ್ 21, 2026

---

ಪ್ಲಗಿನ್‌ಗಳನ್ನು ಹುಡುಕಿ

![](https://s.w.org/plugins/geopattern-icon/devpulse.svg)

# DevPulse

 ‍[sekolahcode](https://profiles.wordpress.org/sekolahcode/) ಮೂಲಕ

[ಡೌನ್ಲೋಡ್](https://downloads.wordpress.org/plugin/devpulse.2.0.2.zip)

 * [ವಿವರಗಳು](https://kn.wordpress.org/plugins/devpulse/#description)
 * [‍ವಿಮರ್ಶೆಗಳು‍](https://kn.wordpress.org/plugins/devpulse/#reviews)
 *  [ಸ್ಥಾಪನೆ](https://kn.wordpress.org/plugins/devpulse/#installation)
 * [ಅಭಿವೃದ್ಧಿ](https://kn.wordpress.org/plugins/devpulse/#developers)

 [ಬೆಂಬಲ](https://wordpress.org/support/plugin/devpulse/)

## ವಿವರಣೆ

DevPulse is a self-hosted error tracking and performance monitoring plugin for WordPress,
similar to Sentry but free and running on your own server.

**Features:**

 * Captures PHP errors, warnings, notices, and fatal errors
 * Captures unhandled exceptions automatically
 * Frontend Core Web Vitals (LCP, INP, CLS, TTFB, page load) — real-user Lighthouse
   metrics
 * Lightweight — the backend handler has zero JS footprint; the vitals bundle is
   ~4 KB deferred
 * Configurable via the WordPress admin or `wp-config.php` constants
 * Works with any self-hosted DevPulse server

**Privacy:** All error data is sent to your own server. Nothing leaves your infrastructure.

### Configuration

You can configure the plugin via **Settings  DevPulse** in the WordPress admin, 
or by defining constants in `wp-config.php`:

    ```
    define( 'DEVPULSE_DSN',     'http://your-server:8000/api/ingest/YOUR_API_KEY' );
    define( 'DEVPULSE_ENV',     'production' );
    define( 'DEVPULSE_ENABLED', true );
    ```

Constants take precedence over admin settings.

**Running the DevPulse server:**

    ```
    docker compose up -d
    ```

See the [DevPulse GitHub repository](https://github.com/SekolahCode/devpulse) for
full server setup instructions.

## ಸ್ಥಾಪನೆ

 1. Upload the `devpulse` folder to `wp-content/plugins/`
 2. Activate the plugin through **Plugins  Installed Plugins** in the WordPress admin
 3. Go to **Settings  DevPulse** and enter your server DSN

Alternatively, you can configure the plugin using constants in `wp-config.php` (
see Configuration below).

## FAQ

### Do I need a DevPulse account?

No. DevPulse is entirely self-hosted. You run the server yourself using Docker.

### Is it compatible with WordPress Multisite?

Single-site and network-activated usage is supported. Each site should have its 
own API key (project) on the DevPulse server.

### What happens when the DevPulse server is unavailable?

Errors are captured with a short timeout (2 seconds by default) so your site is 
never slowed down if the server is unreachable.

## ‍ವಿಮರ್ಶೆಗಳು‍

ಈ ಪ್ಲಗಿನ್‌ಗೆ ಯಾವುದೇ ವಿಮರ್ಶೆಗಳಿಲ್ಲ.

## ಕೊಡುಗೆದಾರರು & ಡೆವಲಪರ್‌ಗಳು

“DevPulse” ಓಪನ್ ಸೋರ್ಸ್ ಸಾಫ್ಟ್‌ವೇರ್ ಆಗಿದೆ. ಕೆಳಗಿನ ಜನರು ಈ ಪ್ಲಗಿನ್‌ಗೆ ಕೊಡುಗೆ ನೀಡಿದ್ದಾರೆ.

ಕೊಡುಗೆದಾರರು

 *   [ sekolahcode ](https://profiles.wordpress.org/sekolahcode/)

[“DevPulse” ಅನ್ನು ನಿಮ್ಮ ಭಾಷೆಗೆ ಅನುವಾದಿಸಿ.](https://translate.wordpress.org/projects/wp-plugins/devpulse)

### ಅಭಿವೃದ್ಧಿಯಲ್ಲಿ ಆಸಕ್ತಿ ಇದೆಯೇ?

[ಕೋಡ್ ಬ್ರೌಸ್ ಮಾಡಿ](https://plugins.trac.wordpress.org/browser/devpulse/), [SVN ರೆಪೊಸಿಟರಿ](https://plugins.svn.wordpress.org/devpulse/)
ಪರಿಶೀಲಿಸಿ, ಅಥವಾ [ಅಭಿವೃದ್ಧಿ ಲಾಗ್](https://plugins.trac.wordpress.org/log/devpulse/)
ಗೆ [RSS](https://plugins.trac.wordpress.org/log/devpulse/?limit=100&mode=stop_on_copy&format=rss)
ಚಂದಾದಾರರಾಗಿ.

## Changelog

#### 2.0.2

 * Fixed: the plugin version header and changelog had drifted out of sync
    with 
   actual releases since 1.2.0 — this release reconciles them and documents what
   shipped in 2.0.0/2.0.1 below.

#### 2.0.1

 * Security: only trust the `X-Forwarded-For` header when `REMOTE_ADDR` is a
    known,
   configured trusted proxy — prevents client-supplied headers from spoofing the
   reported IP address on sites not behind a proxy.

#### 2.0.0

 * Security: the DSN’s API key is no longer sent in the request URL — it’s
    extracted
   and sent as an `X-API-Key` header instead, so it can no longer leak into server
   or CDN access logs.

#### 1.2.0

 * Added frontend Core Web Vitals collection (LCP, INP, CLS, TTFB, page load) via
   bundled browser SDK
 * New “Frontend Performance Vitals” setting in wp-admin; can be disabled per-page
   with the `devpulse_enqueue_vitals` filter or via `define('DEVPULSE_TRACK_VITALS',
   false)` in wp-config.php

#### 1.1.1

 * Stability and compatibility improvements

#### 1.0.0

 * Initial public release — PHP error and exception capture, wp_die() and fatal 
   error handlers, admin settings page

## ಮೆಟಾ

 *  Version **2.0.2**
 *  ಕೊನೆಯದಾಗಿ ನವೀಕರಿಸಿದ್ದು **1 ದಿನ ರ ಮುನ್ನ**
 *  ಸಕ್ರಿಯ ಸ್ಥಾಪನೆಗಳು **10 ಕ್ಕಿಂತ ಕಡಿಮೆ**
 *  ವರ್ಡ್ಪ್ರೆಸ್ ಆವೃತ್ತಿ ** 6.3 ಅಥವಾ ಹೆಚ್ಚಿನದು **
 *  **6.9.7** ವರೆಗೆ ಪರೀಕ್ಷಿಸಲಾಗಿದೆ
 *  PHP ಆವೃತ್ತಿ ** 7.4 ಅಥವಾ ಹೆಚ್ಚಿನದು **
 *  Language
 * [English (US)](https://wordpress.org/plugins/devpulse/)
 * ಟ್ಯಾಗ್‌ಗಳು
 * [debugging](https://kn.wordpress.org/plugins/tags/debugging/)[error tracking](https://kn.wordpress.org/plugins/tags/error-tracking/)
   [logging](https://kn.wordpress.org/plugins/tags/logging/)[monitoring](https://kn.wordpress.org/plugins/tags/monitoring/)
   [performance](https://kn.wordpress.org/plugins/tags/performance/)
 *  [ಸುಧಾರಿತ ನೋಟ](https://kn.wordpress.org/plugins/devpulse/advanced/)

## ರೇಟಿಂಗ್‌ಗಳು

No reviews have been submitted yet.

[Your review](https://wordpress.org/support/plugin/devpulse/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/devpulse/reviews/)

## ಕೊಡುಗೆದಾರರು

 *   [ sekolahcode ](https://profiles.wordpress.org/sekolahcode/)

## ಬೆಂಬಲ

ಹೇಳಲು ಏನಾದರೂ ಸಿಕ್ಕಿದೆಯೇ? ಸಹಾಯ ಬೇಕೇ?

 [ಬೆಂಬಲ ವೇದಿಕೆಯನ್ನು ವೀಕ್ಷಿಸಿ](https://wordpress.org/support/plugin/devpulse/)