As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.
Join the TIBCO Community TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.
From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
Request access to the private WebFOCUS User Group (login required) to network with fellow members.
Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.
01/05/2010 20:43:02 accepting cmrpip027758 tcp=139.51.76.101:61245 01/05/2010 20:43:02 request by cmrpip027758 for explicit connect to agent (DEFAULT) 01/05/2010 20:43:02 connecting cmrpip027758 tscomid=306,sesid=27477 01/05/2010 20:43:02 processing cmrpip027758 u=udwfadmn,g=webfocus,l=USR 01/05/2010 20:43:02 request by t3rp835616 to notify disconnect of sesid=27477 01/05/2010 20:43:02 disconnect cmrpip027758 tscomid=306,sesid=27477
Here is a series from edaprint.log that shows the life of a session. You should be able to tell from this pattern what you need to extract to determine start/stop. I would suggest the 'connecting' and the 'disconnect' lines. Please bear in mind that there may be intervening lines for other sessions so you'll probably have to hold the sorted output before doing any kind of meaningful report.
I defined the edaprint file in the master file instead of the fex... probably not the best way to do this but it's the only way I could get the synonym to produce some data when doing a sample data...
And when I try to define the file in a fex, it gets worse... It refuses to parse FILEDEF... But I'm just starting on this and got not much training.
WFS/FFS/DM 7.6.4 / WFS/FFS/DM 7.6.8 / WFS/FFS/DM 7.6.9 / AS400 V5R4M0 / HTML / iSM 5.5sp2
FILEDEF MAS DISK EDAPRINT.MAS FILEDEF EDAPRINT DISK C:\ibi\DevStudio76\srv76\wfs\EDAPRINT.LOG -RUN -WRITE MAS FILENAME=EDAPRINT , SUFFIX=FIX , $ -WRITE MAS SEGMENT=EDAPRINT, SEGTYPE=S0, $ -WRITE MAS FIELDNAME=LOGTIME, ALIAS=LOGTIME, USAGE=A19, ACTUAL=A20, $ -WRITE MAS FIELDNAME=LOGDATA, ALIAS=LOGDATA, USAGE=A80, ACTUAL=A80, $ DEFINE FILE EDAPRINT USER /A7= IF LOGDATA CONTAINS 'processing' THEN EDIT(LOGDATA,'$$$$$$$$$$$$$$$$$$$$$$$$$$9999999'); START/A19=IF LOGDATA CONTAINS 'connecting' THEN LOGTIME ELSE ''; ENDTIME/A19=IF LOGDATA CONTAINS 'disconnect' THEN LOGTIME ELSE ''; CRMPIP/A12=EDIT(LOGDATA,'$$$$$$$$$$$999999999999'); END TABLE FILE EDAPRINT SUM USER MAX.START MAX.ENDTIME BY CRMPIP WHERE LOGDATA EQ 'connecting$*' OR 'disconnect$*' OR 'processing$*' END