Forum Discussion
Tiaan_92076
Nimbostratus
Aug 18, 2009How to determine last segment in reaseembled TCP packet
I need to detach the load balancing decision after a transaction is completed on a member in the pool. The transaction occasionally spans multiple TCP segments causing the SERVER_DATA event to be rais...
hoolio
Cirrostratus
Feb 24, 2010As a test, you could try making each log message unique with a global counter. I wouldn't suggest using this in production as it's unnecessary overhead.
when SERVER_CONNECTED {
TCP::collect
}
when SERVER_DATA {
if {[info exists ::counter]}{
incr ::counter
} else {
set ::counter 1
}
log -noname local0. "iRule: Received Server Data $::counter"
TCP::collect
TCP::release
}
You might also try removing the -noname flag and see if that has any effect.
Aaron
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects