Title: Stream – Activity Log &amp; Audit Trail
Author: XWP
Published: <strong>06.12.2013</strong>
Last modified: 22.07.2026

---

Поиск плагинов

![](https://ps.w.org/stream/assets/banner-772x250.png?rev=3128015)

![](https://ps.w.org/stream/assets/icon.svg?rev=3128015)

# Stream – Activity Log & Audit Trail

 Автор: [XWP](https://profiles.wordpress.org/xwp/)

[Скачать](https://downloads.wordpress.org/plugin/stream.4.3.0.zip)

 * [Детали](https://ru.wordpress.org/plugins/stream/#description)
 * [Отзывы](https://ru.wordpress.org/plugins/stream/#reviews)
 * [Разработка](https://ru.wordpress.org/plugins/stream/#developers)

 [Поддержка](https://wordpress.org/support/plugin/stream/)

## Описание

Stream is a complete activity log and audit trail for your WordPress site: see what
changed, who changed it, and when. From plugin activations to post edits, login 
attempts to new user creation, every user and system action is recorded in an audit
log built for debugging, security monitoring, and compliance.

Every logged action is displayed in an activity stream and organized for easy filtering
by User, Role, Context, Action or IP address. Admins can highlight entries in the
activity log—such as suspicious user activity—to investigate what’s happening in
real time. Stream also lets you configure email alerts and webhooks for integrations
like Slack and IFTTT, so your team knows the moment something goes wrong.

Stream keeps its own logs healthy too: records are automatically purged on the retention
schedule you choose, with batched deletion and orphaned-data cleanup that stay reliable
even on very large sites.

Stream is also AI-ready: its abilities are exposed through the WordPress Abilities
API and MCP Adapter, so AI assistants and other tools can securely query your site’s
activity records.

For advanced users, Stream supports a network view of all activity records on your
Multisite, exclude rules to ignore certain kinds of user activity, and a WP-CLI 
command for querying records.

Stream is free and fully open source — development happens in the open [on GitHub](https://github.com/xwp/stream),
maintained by [XWP](https://xwp.co).

With Stream’s powerful activity logging, you’ll have the information you need to
responsibly manage your WordPress sites.

#### Built-In Tracking Integrations For Popular Plugins:

 * Advanced Custom Fields
 * bbPress
 * BuddyPress
 * Easy Digital Downloads
 * Gravity Forms
 * Jetpack
 * Two Factor
 * User Switching
 * WooCommerce
 * Yoast SEO

#### Built-In Tracking For Core Actions:

 * Записи
 * Страницы
 * Пользовательские типы записей
 * Пользователи
 * Шаблоны
 * Дополнения
 * Метки
 * Рубрики
 * Произвольные таксономии
 * Настройки.
 * Custom Backgrounds
 * Произвольные заголовки
 * Меню
 * Медиа-библиотека
 * Виджеты
 * Комментарии
 * Редактор темы
 * Обновления ядра WordPress

#### Other Noteworthy Features:

 * Multisite view of all activity records on a network
 * Limit who can view user activity records by user role
 * Set exclude rules to ignore certain kinds of user activity
 * Live updates of user activity records in the Stream
 * Export your Activity Stream as a CSV or JSON file
 * WP-CLI command for querying records

### Configuration

Most of the plugin configuration is available under the «Stream»  «Settings» page
in the WordPress dashboard.

#### Request IP Address

The plugin expects the `$_SERVER['REMOTE_ADDR']` variable to contain the verified
IP address of the current request. On hosting environments with PHP processing behind
reverse proxies or CDNs the actual client IP is passed to PHP through request HTTP
headers such as `X-Forwarded-For` and `True-Client-IP` which can’t be trusted without
an additional layer of validation. Update your server configuration to set the `
$_SERVER['REMOTE_ADDR']` variable to the verified client IP address.

As a workaround, you can use the `wp_stream_client_ip_address` filter to adapt the
IP address:

    ```
    add_filter(
        'wp_stream_client_ip_address',
        function( $client_ip ) {
            // Trust the first IP in the X-Forwarded-For header.
            // ⚠️ Note: This is inherently insecure and can easily be spoofed!
            if ( ! empty( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) {
                $forwarded_ips = explode( ',' $_SERVER['HTTP_X_FORWARDED_FOR'] );

                if ( filter_var( $forwarded_ips[0], FILTER_VALIDATE_IP ) ) {
                    return $forwarded_ips[0];
                }
            }

            return $client_ip;
        }
    );
    ```

⚠️ **WARNING:** The above is an insecure workaround that you should only use when
you fully understand what this implies. Relying on any variable with the `HTTP_*`
prefix is prone to spoofing and cannot be trusted!

### Known Issues

 * We have temporarily disabled the data removal feature through plugin uninstallation,
   starting with version 3.9.3. We identified a few edge cases that did not behave
   as expected and we decided that a temporary removal is preferable at this time
   for such an impactful and irreversible operation. Our team is actively working
   on refining this feature to ensure it performs optimally and securely. We plan
   to reintroduce it in a future update with enhanced safeguards.

### Contribute

There are several ways you can get involved to help make Stream better:

 1. **Report Bugs:** If you find a bug, error or other problem, please report it! You
    can do this by [creating a new topic](https://wordpress.org/support/plugin/stream)
    in the plugin forum. Once a developer can verify the bug by reproducing it, they
    will create an official bug report in GitHub where the bug will be worked on.
 2. **Translate into Your Language:** Use the official plugin translation tool to [translate Stream into your language](https://translate.wordpress.org/projects/wp-plugins/stream/).
 3. **Suggest New Features:** Have an awesome idea? Please share it! Simply [create a new topic](https://wordpress.org/support/plugin/stream)
    in the plugin forum to express your thoughts on why the feature should be included
    and get a discussion going around your idea.
 4. **Issue Pull Requests:** If you’re a developer, the easiest way to get involved
    is to help out on [issues already reported](https://github.com/x-team/wp-stream/issues)
    in GitHub. Be sure to check out the [contributing guide](https://github.com/x-team/wp-stream/blob/master/contributing.md)
    for developers.

Thank you for wanting to make Stream better for everyone!

[View contributors here.](https://github.com/xwp/stream/graphs/contributors)

## Скриншоты

[⌊Every logged-in user action is displayed in an activity stream and organized for
easy filtering and searching.⌉⌊Every logged-in user action is displayed in an activity
stream and organized for easy filtering and searching.⌉[

Every logged-in user action is displayed in an activity stream and organized for
easy filtering and searching.

[⌊Enable live updates in Screen Options to watch your site activity appear in near
real-time.⌉⌊Enable live updates in Screen Options to watch your site activity appear
in near real-time.⌉[

Enable live updates in Screen Options to watch your site activity appear in near
real-time.

[⌊Create rules for excluding certain kinds of records from appearing in Stream.⌉⌊
Create rules for excluding certain kinds of records from appearing in Stream.⌉[

Create rules for excluding certain kinds of records from appearing in Stream.

## Отзывы

![](https://secure.gravatar.com/avatar/f2949e1420c186ba7fe9eafb8f5c406b6b29ddebb639e7c7da6f93d39b784643?
s=60&d=retro&r=g)

### 󠀁[Integration of logging and notification makes a lot of sense](https://wordpress.org/support/topic/integration-of-logging-and-notification-makes-a-lot-of-sense/)󠁿

 [Martin Sauter](https://profiles.wordpress.org/martinsauter/) 26.07.2023

Helpful and nicely done. Especially the integration of logging and notification 
features makes a lot of sense and sets this plugin apart from others. On the other
hand: The information provided in email notifications is not always sufficient and
only in parts customizable. And it looks like the developers do not care about answering
questions in the support forum.

![](https://secure.gravatar.com/avatar/d40678aed19f64bd4ef4d60e5d47d44811b631c7ea5a3ef45ff65c20bd1e133b?
s=60&d=retro&r=g)

### 󠀁[FILTER_SANITIZE_STRING](https://wordpress.org/support/topic/filter_sanitize_string/)󠁿

 [jaybharatjay](https://profiles.wordpress.org/jaybharatjay/) 17.02.2023

getting error Constant WP_Stream\FILTER_SANITIZE_STRING is deprecated in

![](https://secure.gravatar.com/avatar/ae33d0d7395fec175d94e9b0b12656b4230664e4aec82b7e33c952f5a146e08c?
s=60&d=retro&r=g)

### 󠀁[Great plugin!](https://wordpress.org/support/topic/great-plugin-34177/)󠁿

 [Dimitrios](https://profiles.wordpress.org/jbgnes/) 18.05.2022

This is a great plugin that records almost everything except the video plays of 
my revolution video player Wordpress plugin. I wish it could record when a user 
plays a video and when he stops on one. Otherwise I love it already! Thanks for 
considering this.

![](https://secure.gravatar.com/avatar/9909770422f2c161388c1b31bf146c3424442a47c4d0c49ded71c22d46a89c1b?
s=60&d=retro&r=g)

### 󠀁[Love this plugin](https://wordpress.org/support/topic/love-this-plugin-1017/)󠁿

 [appinlet](https://profiles.wordpress.org/appinlet/) 05.03.2021

Have been using this plugin for many years now, very useful as an audit trail when
a site «just broke itself» 😛

![](https://secure.gravatar.com/avatar/fb06902ed16775af2eddac43d9f5e68809e12785e0a481156170ad052217e52a?
s=60&d=retro&r=g)

### 󠀁[Great plugin totally recommended!](https://wordpress.org/support/topic/great-plugin-totally-recommended-2/)󠁿

 [freesong](https://profiles.wordpress.org/freesong/) 16.02.2021

This is awesome plugin indeed! Just if you could add video playback footprint support

![](https://secure.gravatar.com/avatar/59dbf09ff430ffd770ff740267f7bf24726b9107fe996f0dea3b668fba91718c?
s=60&d=retro&r=g)

### 󠀁[Professional](https://wordpress.org/support/topic/professional-24/)󠁿

 [Lana Codes](https://profiles.wordpress.org/lanacodes/) 21.09.2019

Great UX design. It contains everything, very useful plugin, one of the best.

 [ Посмотреть все 77 отзывов ](https://wordpress.org/support/plugin/stream/reviews/)

## Участники и разработчики

«Stream – Activity Log & Audit Trail» — проект с открытым исходным кодом. В развитие
плагина внесли свой вклад следующие участники:

Участники

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

«Stream – Activity Log & Audit Trail» переведён на 6 языков. Благодарим [переводчиков](https://translate.wordpress.org/projects/wp-plugins/stream/contributors)
за их работу.

[Перевести «Stream – Activity Log & Audit Trail» на ваш язык.](https://translate.wordpress.org/projects/wp-plugins/stream)

### Заинтересованы в разработке?

[Посмотрите код](https://plugins.trac.wordpress.org/browser/stream/), проверьте 
[SVN репозиторий](https://plugins.svn.wordpress.org/stream/), или подпишитесь на
[журнал разработки](https://plugins.trac.wordpress.org/log/stream/) по [RSS](https://plugins.trac.wordpress.org/log/stream/?limit=100&mode=stop_on_copy&format=rss).

## Журнал изменений

#### 4.3.0 — July 18, 2026

Enhancements:

 * Make Action Scheduler usage optional at runtime: deferred purge / reset work 
   now runs through a scheduler abstraction that defaults to Action Scheduler but
   can fall back to WP-Cron via the `wp_stream_use_action_scheduler` filter.
 * Add the `wp_stream_enable_auto_purge` filter (default `true`) to disable all 
   TTL record auto-purge scheduling regardless of backend.
 * Surface a warning on the WP-Cron fallback when a large-table purge or reset is
   queued.

Bug Fixes:

 * Log the WooCommerce order ID instead of the order object in order event records.
 * Fix PHP 8.4 deprecation warnings.

[View the full release notes on GitHub.](https://github.com/xwp/stream/blob/master/changelog.md#430---july-18-2026)

#### 4.2.2 — July 6, 2026

Security:

 * Harden authorization for the live update preference: enforce the Stream view 
   capability and always target the current user in the `stream_enable_live_update`
   AJAX handler so a user can only change their own live update preference.

[View the full release notes on GitHub.](https://github.com/xwp/stream/blob/master/changelog.md#422---july-6-2026)

#### 4.2.1 — July 2, 2026

Bug Fixes:

 * Fix authorization checks for Stream activity access and harden related AJAX, 
   export, and query paths.
 * Fix inverted `isset()` check silently ignoring user search input in `get_users()`.
 * Create missing database tables when resetting the database.
 * Avoid generating rewrite rules for the alerts post type.

[View the full release notes on GitHub.](https://github.com/xwp/stream/blob/master/changelog.md#421---july-2-2026)

#### 4.2.0 — May 28, 2026

New Features:

 * Expose Stream abilities via the WordPress MCP Adapter when present, enabling 
   AI tools to query Stream records through the Abilities API.

Bug Fixes:

 * Fix unbounded growth of `stream` / `stream_meta` tables: the TTL-based auto-purge
   now runs via Action Scheduler with batched deletion, resolving database bloat
   on large sites.
 * Fix orphan `stream_meta` rows accumulating across repeated purge cycles with 
   a terminal orphan reaper at the end of every auto-purge chain.
 * Skip Action Scheduler queries on front-end pageloads, eliminating unnecessary
   queries per pageview.

Enhancements:

 * Add a Clean Orphaned Meta link under Settings  Advanced for one-shot cleanup 
   on already-bloated installs.
 * Replace the legacy `wp_stream_auto_purge` WP-Cron event with a recurring Action
   Scheduler action, with run history visible under Tools  Scheduled Actions.

[View the full release notes on GitHub.](https://github.com/xwp/stream/blob/master/changelog.md#420---may-28-2026)

#### 4.1.2 — February 19, 2026

[View the release notes.](https://github.com/xwp/stream/blob/master/changelog.md#412---february-19-2026)

#### 4.1.1 — February 3, 2025

[View the release notes.](https://github.com/xwp/stream/blob/master/changelog.md#411---february-3-2025)

[See the full changelog for all releases.](https://github.com/xwp/stream/blob/master/changelog.md)

## Мета

 *  Версия **4.3.0**
 *  Обновление: **8 часов назад**
 *  Активных установок: **80 000+**
 *  Версия WordPress ** 4.6 или выше **
 *  Совместим вплоть до: **7.0.2**
 *  Языки
 * [English (Australia)](https://en-au.wordpress.org/plugins/stream/), [English (Canada)](https://en-ca.wordpress.org/plugins/stream/),
   [English (New Zealand)](https://en-nz.wordpress.org/plugins/stream/), [English (UK)](https://en-gb.wordpress.org/plugins/stream/),
   [English (US)](https://wordpress.org/plugins/stream/), [French (France)](https://fr.wordpress.org/plugins/stream/)
   и [Korean](https://ko.wordpress.org/plugins/stream/).
 *  [Перевести на ваш язык](https://translate.wordpress.org/projects/wp-plugins/stream)
 * Метки:
 * [Activity Log](https://ru.wordpress.org/plugins/tags/activity-log/)[audit log](https://ru.wordpress.org/plugins/tags/audit-log/)
   [event log](https://ru.wordpress.org/plugins/tags/event-log/)[security](https://ru.wordpress.org/plugins/tags/security/)
   [user tracking](https://ru.wordpress.org/plugins/tags/user-tracking/)
 *  [Дополнительно](https://ru.wordpress.org/plugins/stream/advanced/)

## Оценки

 4.3 из 5 звёзд.

 *  [  57 5-звездный отзыв     ](https://wordpress.org/support/plugin/stream/reviews/?filter=5)
 *  [  7 4-звездный отзыв     ](https://wordpress.org/support/plugin/stream/reviews/?filter=4)
 *  [  0 3-звездный отзыв     ](https://wordpress.org/support/plugin/stream/reviews/?filter=3)
 *  [  2 2-звездный отзыв     ](https://wordpress.org/support/plugin/stream/reviews/?filter=2)
 *  [  10 1-звездный отзыв     ](https://wordpress.org/support/plugin/stream/reviews/?filter=1)

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

[Посмотреть всеотзывы](https://wordpress.org/support/plugin/stream/reviews/)

## Участники

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

## Поддержка

Решено проблем за последние 2 месяца:

     0 из 1

 [Перейти в форум поддержки](https://wordpress.org/support/plugin/stream/)