1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299
|
.. 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:
Plugins
*******
.. toctree::
:maxdepth: 2
Overview
========
One of the key features of |ATS| is its modularity. Features that aren't needed
in the core simply aren't there. This helps to provide an additional guarantee
that our core can remain fast by concentrating on the things that we always
provide: caching and proxying.
All other functionality can be moved into plugins and by offering a consistent
C API, everyone can implement their own functionality, without having to touch
the core.
Stable plugins
==============
Plugins that are considered stable are installed by default in |TS| releases.
.. toctree::
:hidden:
AWS S3 Authentication <s3_auth.en>
AuthProxy <authproxy.en>
Background Fetch <background_fetch.en>
Cache Key Manipulation <cachekey.en>
Cache Promotion Policies <cache_promote.en>
Cache Range Requests <cache_range_requests.en>
Combo Handler <combo_handler.en>
Configuration Remap <conf_remap.en>
Cookie Remap <cookie_remap.en>
ESI <esi.en>
Escalate <escalate.en>
Compress <compress.en>
Generator <generator.en>
Header Rewrite <header_rewrite.en>
Health Checks <healthchecks.en>
HTTP Stats <http_stats.en>
Lua <lua.en>
Regex Remap <regex_remap.en>
Regex Revalidate <regex_revalidate.en>
Remap Purge <remap_purge.en>
Stats over HTTP <stats_over_http.en>
TCPInfo <tcpinfo.en>
XDebug <xdebug.en>
:doc:`AuthProxy <authproxy.en>`
Delegates the authorization decision of a request to an external HTTP service.
:doc:`AWS S3 Authentication <s3_auth.en>`
Support for Amazon S3 authentication features.
:doc:`Background Fetch <background_fetch.en>`
Proactively fetch content from Origin in a way that it will fill the object into cache.
:doc:`Cache Key and Parent Selection URL Manipulation <cachekey.en>`
Allows some common cache key or parent selection URL manipulations based on various HTTP request elements.
:doc:`Cache Promotion Policies <cache_promote.en>`
Allows for control over which assets should be written to cache, or not.
:doc:`Cache Range Requests <cache_range_requests.en>`
Cache ranges by adding the range request header to the cache key.
:doc:`Combo Handler <combo_handler.en>`
Provides an intelligent way to combine multiple URLs into a single URL, and have Apache Traffic Server combine the components into one response.
:doc:`Configuration Remap <conf_remap.en>`
Override configuration directives on a per-rule basis.
:doc:`ESI <esi.en>`
Implements the Edge Side Includes (ESI) specification.
:doc:`Escalate <escalate.en>`
Escalate: when the origin returns specific status codes, retry the request at a secondary origin (failover/fail-action)
:doc:`Generator <generator.en>`
Generate arbitrary response data.
:doc:`Compress <compress.en>`
Compress or deflate cache responses.
.. sidebar: Formerly "gzip".
:doc:`Header Rewrite <header_rewrite.en>`
Modify requests and responses based on incoming and outgoing headers and
other transaction attributes.
:doc:`Health Checks <healthchecks.en>`
Define service health check links.
:doc:`HTTP Stats <http_stats.en>`
A remap-based plugin that provides an HTTP interface to all |TS| statistics.
:doc:`Lua <lua.en>`
Allows plugins to be written in Lua instead of C code.
:doc:`Regex Remap <regex_remap.en>`
Configure remapping rules using regular expressions.
:doc:`Regex Revalidate <regex_revalidate.en>`
Configurable rules for forcing cache object revalidations using regular expressions.
:doc:`Stats over HTTP <stats_over_http.en>`
Provide an HTTP interface to all |TS| statistics.
:doc:`TCPInfo <tcpinfo.en>`
Log TCP metrics at various points of the HTTP processing pipeline.
:doc:`XDebug <xdebug.en>`
Allows HTTP clients to debug the operation of the Traffic Server cache using the X-Debug header.
Experimental plugins
====================
Plugins that are considered experimental are located in the
`plugins/experimental <https://git-wip-us.apache.org/repos/asf?p=trafficserver.git;a=tree;f=plugins/experimental;hb=HEAD>`_
directory of the |TS| source tree. Experimental plugins can be compiled by passing the
`--enable-experimental-plugins` option to `configure`::
$ autoconf -i
$ ./configure --enable-experimental-plugins
$ make
.. toctree::
:hidden:
Access Control <access_control.en>
Block Errors <block_errors.en>
Cache Fill <cache_fill.en>
Certifier <certifier.en>
Cert Reporting Tool <cert_reporting_tool.en>
Collapsed-Forwarding <collapsed_forwarding.en>
GeoIP ACL <geoip_acl.en>
FQ Pacing <fq_pacing.en>
Header Frequency <header_freq.en>
Hook Trace <hook-trace.en>
ICAP <icap.en>
JA3 Fingerprint <ja3_fingerprint.en>
Maxmind ACL <maxmind_acl.en>
Memcache <memcache.en>
Memory Profile <memory_profile.en>
Metalink <metalink.en>
Money Trace <money_trace.en>
MP4 <mp4.en>
Multiplexer <multiplexer.en>
MySQL Remap <mysql_remap.en>
OpenTelemetry Tracer <otel_tracer.en>
Parent Select <parent_select.en>
Rate Limit <rate_limit.en>
Remap Stats <remap_stats.en>
Static Hit <statichit.en>
URI Signing <uri_signing.en>
Legacy Signed URLs <url_sig.en>
Slice <slice.en>
SSL Headers <sslheaders.en>
SSL Session Reuse <ssl_session_reuse.en>
STEK Share <stek_share.en>
System Statistics <system_stats.en>
Traffic Dump <traffic_dump.en>
WebP Transform <webp_transform.en>
Prefetch <prefetch.en>
:doc:`Access Control <access_control.en>`
Access control plugin that handles various access control use-cases.
:doc:`Block Errors <block_errors.en>`
Blocks or downgrades new connections when the server receives too many errors from an IP address.
:doc:`Certifier <certifier.en>`
Manages and/or generates certificates for incoming HTTPS requests.
:doc:`Cert Reporting Tool <cert_reporting_tool.en>`
Examines and logs information on loaded certificates.
:doc:`Collapsed-Forwarding <collapsed_forwarding.en>`
Allows to Collapse multiple Concurrent requests by downloading once from the Origin and serving
all clients in parallel.
:doc:`FQ Pacing <fq_pacing.en>`
FQ Pacing: Rate Limit TCP connections using Linux's Fair Queuing queue discipline
:doc:`GeoIP ACL <geoip_acl.en>`
Deny or allow requests based on the source IP geo-location.
:doc:`Header Frequency <header_freq.en>`
Count the frequency of headers.
:doc:`ICAP <icap.en>`
Pass response data to external server for further processing using the ICAP protocol.
:doc:`JA3 Fingerprint <ja3_fingerprint.en>`
Calculates JA3 Fingerprints for incoming SSL traffic.
:doc:`MaxMind ACL <maxmind_acl.en>`
ACL based on the maxmind geo databases (GeoIP2 mmdb and libmaxminddb)
:doc:`Memcache <memcache.en>`
Implements the memcache protocol for cache contents.
:doc:`Metalink <metalink.en>`
Implements the Metalink download description format in order to try not to download the same file twice.
:doc:`Money Trace <money_trace.en>`
Allows Trafficserver to participate in a distributed tracing system based upon the Comcast Money library.
:doc:`MP4 <mp4.en>`
MP4 streaming media.
:doc:`Multiplexer <multiplexer.en>`
Multiplex inbound requests to multiple upstream destinations. This is useful for requests that
are beacons or other metric gathering requests, to report to multiple upstreams. Alternatively
this can be used to do A/B testing by sending a duplicated slice of inbound production traffic to
experimental upstreams.
:doc:`MySQL Remap <mysql_remap.en>`
Allows dynamic remaps from a MySQL database.
:doc:`OpenTelemetry Tracer <otel_tracer.en>`
Allows Trafficserver to participate in OpenTelemetry distributed tracing system
:doc:`Prefetch <prefetch.en>`
Pre-fetch objects based on the requested URL path pattern.
:doc:`Parent Select <parent_select.en>`
This remap plugin allows selection of parent proxies or origins during requests. This
provides the same functionality as the core :file:`parent.config` and :file:`strategies.yaml` config files.
:doc:`Rate Limit <rate_limit.en>`
Simple transaction rate limiting.
:doc:`Remap Stats <remap_stats.en>`
This global plugin adds remap stats to the stats.
:doc:`Remap Purge <remap_purge.en>`
This remap plugin allows the administrator to easily setup remotely
controlled ``PURGE`` for the content of an entire remap rule.
:doc:`Static Hit <statichit.en>`
Serve static content from proxy's local filesystem.
:doc:`URI Signing <uri_signing.en>`
Adds support for verifying URL signatures for incoming requests to either deny or redirect access,
implementing the IETF URI Signing draft RFC.
:doc:`Legacy Signed URLs <url_sig.en>`
Adds support for verifying URL signatures for incoming requests to either deny or redirect access.
.. note::
URL Sig is old and unlikely to be standardized. Prefer URI Signing.
:doc:`Slice <slice.en>`
Slice full file or range based requests into deterministic chunks, allowing large files to be
spread across multiple cache stripes. Allows arbitrary range requests to be satisfied by stitching
these chunks together.
:doc:`SSL Session Reuse <ssl_session_reuse.en>`
Coordinates Session ID and ticket based TLS session resumption between a group of ATS machines.
:doc:`SSL Headers <sslheaders.en>`
Populate request headers with SSL session information.
:doc:`STEK Share <stek_share.en>`
Coordinates STEK (Session Ticket Encryption Key) between ATS instances running in a group.
: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.
|