Forum Discussion

Sukhwinder1011's avatar
Sukhwinder1011
Icon for Nimbostratus rankNimbostratus
Oct 17, 2020
Solved

Any tool to match and update date/time value inside uri request before passing it to backend pool ??

Hi Everyone,   So the thing is, we are getting a uri request hit from customer on f5 with some time and date format within the uri itself. Now we have this request to update the time 5 min before...
  • Yoann_Le_Corvi1's avatar
    Oct 17, 2020

    Hi

     

    A quick solution that should do the trick You'll just have to wrap around this code to replace the URI sent to the backend...

     

    set origTime "START_TIME:01:00HRS:17thOCT"
     
    log local0. "Original VALUE :  $origTime"
     
    regexp {(START_TIME:)(\d\d:\d\d)(.*)} $origTime  -> start middle end
     
    set origTimeSec [clock scan $resultVar]
    set newTimeSec [ expr { $s + 300 } ]
    set newTimeString [clock format $newdate -format {%H:%M}]
     
    log local0. "New VALUE : $start$newTimeString$end"
     

    Yoann