Scope of HTTP.request.line.limit ?

Does the property also include query parameters as a part of the request line calculations ?

Solved Solved
0 3 280
1 ACCEPTED SOLUTION

adas
Participant V

@Venkataraghavan Http request line usually refers to the first line of the Http Request. For example, consider the below curl command:

curl -v http://httpbin.org/get?query=test

The cli would show the following for this command:

*   Trying 54.175.222.246...

* Connected to httpbin.org (54.175.222.246) port 80 (#0)

> GET /get?query=test HTTP/1.1

> Host: httpbin.org

> User-Agent: curl/7.43.0

> Accept: */*

> 

< HTTP/1.1 200 OK

< Server: nginx

< Date: Tue, 29 Sep 2015 02:52:25 GMT

< Content-Type: application/json

< Content-Length: 220

< Connection: keep-alive

< Access-Control-Allow-Origin: *

< Access-Control-Allow-Credentials: true

< 

{

  "args": {

    "query": "test"

  }, 

  "headers": {

    "Accept": "*/*", 

    "Host": "httpbin.org", 

    "User-Agent": "curl/7.43.0"

  }, 

  "origin": "50.204.222.35", 

  "url": "http://httpbin.org/get?query=test"

}

In this example, the request line would be:

GET /get?query=test HTTP/1.1

View solution in original post

3 REPLIES 3

Not applicable

Hi @Venkataraghavan , yes it includes query parameters too .

Thanks @Maruti Chand

adas
Participant V

@Venkataraghavan Http request line usually refers to the first line of the Http Request. For example, consider the below curl command:

curl -v http://httpbin.org/get?query=test

The cli would show the following for this command:

*   Trying 54.175.222.246...

* Connected to httpbin.org (54.175.222.246) port 80 (#0)

> GET /get?query=test HTTP/1.1

> Host: httpbin.org

> User-Agent: curl/7.43.0

> Accept: */*

> 

< HTTP/1.1 200 OK

< Server: nginx

< Date: Tue, 29 Sep 2015 02:52:25 GMT

< Content-Type: application/json

< Content-Length: 220

< Connection: keep-alive

< Access-Control-Allow-Origin: *

< Access-Control-Allow-Credentials: true

< 

{

  "args": {

    "query": "test"

  }, 

  "headers": {

    "Accept": "*/*", 

    "Host": "httpbin.org", 

    "User-Agent": "curl/7.43.0"

  }, 

  "origin": "50.204.222.35", 

  "url": "http://httpbin.org/get?query=test"

}

In this example, the request line would be:

GET /get?query=test HTTP/1.1