Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions doc/admin-guide/plugins/index.en.rst
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ directory of the |TS| source tree. Experimental plugins can be compiled by passi
SSL Headers <sslheaders.en>
Stale While Revalidate <stale_while_revalidate.en>
System Statistics <system_stats.en>
Traffic Dump <traffic_dump.en>
WebP Transform <webp_transform.en>
Prefetch <prefetch.en>

Expand Down Expand Up @@ -227,5 +228,8 @@ directory of the |TS| source tree. Experimental plugins can be compiled by passi
:doc:`System Stats <system_stats.en>`
Inserts system statistics in to the stats list

:doc:`Traffic Dump <traffic_dump.en>`
Dumps traffic data into a JSON format file which can be used to replay traffic.

:doc:`WebP Transform <webp_transform.en>`
Converts jpeg and png images to webp format.
55 changes: 55 additions & 0 deletions doc/admin-guide/plugins/traffic_dump.en.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
.. Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.


.. include:: ../../common.defs

.. _admin-plugins-access_control:


Traffic Dump Plugin
*******************

Description
===========

``Traffic Dump`` captures session traffic and writes to a replay file :ts:git:`tests/tools/traffic-replay/replay_schema.json` for each captured session. It then can be used to replay traffic for testing purpose.

Plugin Configuration
====================
.. program:: traffic_dump.so

* ``Traffic Dump`` is a global plugin and is configured via :file:`plugin.config`.
.. option:: --logdir <path_to_dump>
(`required`, default:empty/unused) - specifies the directory for writing all dump files. If path is relative, it is relative to the Traffic Server directory. The plugin will use first three characters of client ip to create subdirs in an attempt to spread dumps evenly and avoid too many files in a single directory.

.. option:: --sample <N>
(`optional`, default:1000) - specifies the sampling ratio N. Traffic Dump will capture every one out of N sessions. This ratio can also be changed via traffic_ctl without restarting ATS.

* ``traffic_ctl`` command.
``traffic_ctl plugin msg traffic_dump.sample N`` - changes the sampling ratio N as mentioned above.

Replay Format
=============
This format contains traffic data including:
* Each session and transactions in the session.
* Timestamps.
* The four headers (ua request, proxy request, origin server response, proxy response).
* The protocol stack for the user agent.
* The transaction count for the outbound session.
* The content block sizes.
* See schema here: :ts:git:`tests/tools/traffic-replay/replay_schema.json`