DataScript: avi.http.set_reqvar
DataScript
Function | avi.http.set_reqvar() |
Description | Sets (write) arbitrary data from an HTTP request event into a variable. These variables have scope across the HTTP_REQ and HTTP_RESP events. Their lifetime is limited to that of the HTTP request/response transaction, so it does not need to be manually unset. Any Lua value can be stored within this variable.
This variable type may be used by other components within Avi Vantage, not just DataScripts.
Avi supports three levels of storing data in variables.
|
Events | HTTP_REQ HTTP_RESP |
Parameter | Name: Specify the name of the variable to be declared. The name is a string and must be in quotation marks. Value: Set the value of the newly declared variable. This may be string or integer. |
Returns | None |
Version | 17.1+ |
Related | avi.http.get_reqvar() Retrieves the stored variable from the avi.http.set_reqvar function |
Example | HTTP_REQ event:
avi.http.set_reqvar("foo", 10)HTTP_RESP event: if avi.http.get_reqvar("foo") > 5 then avi.vs.log("Foo=" .. avi.http.get_reqvar("foo")) end |
Note: This API is not supported in the events SSL_PRECONNECT
, SSL_CLIENTHELLO
, and SSL_HANDSHAKE_DONE
.