What is the maximum field size for the ‘Gateway Flow ID’ attribute?

In addition, I would also like to know if the Gateway Flow ID is generated as a sequential id, or random ID ?n

Solved Solved
1 2 163
1 ACCEPTED SOLUTION

Not applicable

In nginx router, Gateway flow ID has been set to following dynamic values

$hostname-$pid-$connection-$connection_requests

where,

hostname = Router hostname

pid = Router process ID

connection = Connnection serial ID

connection_requests = Current number of requests made through a connection

Reference: http://nginx.org/en/docs/http/ngx_http_log_module.html

View solution in original post

2 REPLIES 2

Not applicable

In nginx router, Gateway flow ID has been set to following dynamic values

$hostname-$pid-$connection-$connection_requests

where,

hostname = Router hostname

pid = Router process ID

connection = Connnection serial ID

connection_requests = Current number of requests made through a connection

Reference: http://nginx.org/en/docs/http/ngx_http_log_module.html

@tskumar@apigee.com,

Thanks for your answer.