Extended Log Format

Does iPlanet v6 support the Extended Log format [http://www.w3.org/TR/WD-logfile.html]?
If so, would anyone recommend using the time-taken field to monitor page download times?

Web Server does not directly support the Extended Log Format. In most cases, however, the flex-log format that Web Server does support can be manipulated to log the same data in the same order as the Extended Log Format.
If you want to request time from Web Server then do this:
1) Enable Statistics Gathering in the server (see the Performance and Tuning Guide for details), and
2) Add \"%duration%\" to your flex-log init line in the magnus.conf (or via the Log Format Adming UI screen).
This will log the time taken for a request to be completed to the access log.

Similar Messages

  • Extended Logging Format

    Hi, I have been asked to log and report data that is application specific. Rather than maintaining yet another application log I was hoping to make use Extended Log Format and have all the information wriiten to my existing web logs.
    I was wondering if WLS 8.1 supports Extended Log Format and if so how would I go about configuring it.
    Thanks in advance.
    Lisa.

    Hello,
    WebLogic Server does support extended log file format, version 1.0, as defined by the W3C.
    All you have to do is add a few directives to the log file itself. For complete instructions see:
    http://e-docs.bea.com/wls/docs81/adminguide/web_server.html#113870
    (scroll down a bit)
    Cheers,
    Hoos

  • Extended Log Format Issue

    Hello,
    I am rather new to BEA, and I am experiencing a little bit of a problem here. I am trying to configure the access logs in order for them to generate output concerning Browser information. I have gone through and was successfully able to change the configuration to extended. The browser information is now displayed.
    I have one MAJOR problem. When using the common log format, the usernames are logged just fine. But when I changed to the extended format, I only get a value of '-'. I believe all of my configuration is correct according to w3c standards, as I am using 'cs-username' in the '#Fields' directive. I have been searching all over for information reguarding how this field can be documented, but I cannot find anything.
    I have even gone out and tried to configure our apache logs to read this field, and yet I get the same '-' value there as well.
    If anyone could PLEASE help me in this matter, I would greatly appreciate it, as I am going down a river without a paddle on this one.
    Thanks in advance,
    Garret

    <p>Hello,</p>
    <p>Have you read through common log format doc and Enabling and Configuring HTTP Access Logs? Oddly they don't mension cs-username in the supported field identifiers section. You could try the common log format field name: auth_user. Or a custom identifier. I would also raise a support case with BEA if you don't get anywhere to make sure they do actually support this field.</p>
    <p>
    Hussein Badakhchani</br>
    </p>

  • Activate extended log files

    Hi,
    Can anyone tell me where you activate extended log files for the webcache. At present we have common log files.
    We are using Portal 9.0.2.2.14a
    Oracle Appli. Server 9.0.2.0.1
    Many Thnaks,
    Karl

    Hi Karl,
    You can do so by selecting the different fields required for the extended log format. Essentially, you'd be customizing the "common" log file.

  • Using extended common log format

    Hello
    I wanted to set up access log file format to capture referer and user-agent info.
    After reading the docs I added the 2 variables via admin console.
    So HTTP Service ->Access Log -> Format contains following:
    %client.name% %auth-user-name% %datetime% %request% %status% %response.length% %header.referer% %header.user-agent%After saving and restarting the domain, I am still not getting the referrer and user agent.
    There is not even a "-" indicating that the info was unavailable....
    Any thoughts?
    Z....

    Can someone please help me with this issue.
    Our company needs extensive web metric reports and the only way to do so is by adding more info in the logs.
    Again, following is my Configuration->HTTP Service->Access Log setup from the admin console.
    Rotation: Enabled
    Rotation Policy: time
    Rotation Interval: 1440
    Rotation Suffix: %YYYY;%MM;%DD;-%hh;h%mm;m%ss;s
    Format: %client.name% %auth-user-name% %datetime% %request% %status% %response.length% %header.referer% %header.user-agent% %cookie.value%Again, the log does not record last 3 values....There are not even "-" indicating missing values.
    Much appreciated.
    Z

  • Weblog Log Format

    hi,
    can anybody tell me how i can change the log format in weblog5.1
    to NCSA format (extended)
    Regards,
    Bibin

    Looks like the bug CSCin07036.

  • Why do I need to reformat and erase backups on an external backup drive that I have been using for over a year, when I get this dialog box? The backup disk is not in Mac OS Extended (Journaled) format, which is required.

    The backup disk is not in Mac OS Extended (Journaled) format, which is required.

    Kappy's extensive hard drive formatting post - http://discussions.apple.com/thread.jspa?messageID=8340551 - note that instructions at end are for zeroing data.
    BDAqua's Formatting instructions - http://discussions.apple.com/message.jspa?messageID=8901255
    Pondini: Formatting,  Partitioning, Verifying,  and  Repairing  Disks... - http://pondini.org/OSX/Home.html

  • When running a BI session, what is "detailed/extended log" for?

    Hello all,
    I couldn't find any information about "detailed log" checkbox (forum, notes, online help, sap library, google).
    It is displayed in a popup when we run a BI session from SM35 transaction. It's also the LOGALL parameter ("extended log") of RSBDCSUB program.
    By debugging the system, I noticed that it was used only with All-screen and Error-only display modes. In No-screen mode, the BI session is run with detailed log on.
    In All-screen and Error-only modes, the message 00355 "Transaction was processed successfully" is not stored in the log if the detailed log option is off.
    Are there any other differences?
    Thx a lot

    Thx Harald, I missed it.
    But unfortunately, it doesn't work as described, or there is something I don't understand. You can try with the following code which changes FR 1234567890 bank name to sy-uzeit using FI02 transaction (please create the bank before running the program), and produces both S and W messages, whatever extended log is on or off. The only difference is about the message number 00355 as I stated previously.
    REPORT  zzysro_test6.
    PARAMETERS p_logall TYPE flag AS CHECKBOX.
    DATA ls_bdcdata TYPE bdcdata.
    DATA lt_bdcdata TYPE TABLE OF bdcdata.
    DEFINE d.
      clear ls_bdcdata.
      ls_bdcdata-program = '&1'.
      ls_bdcdata-dynpro  = '&2'.
      ls_bdcdata-dynbegin = '&3'.
      append ls_bdcdata to lt_bdcdata.
    END-OF-DEFINITION.
    DEFINE f.
      clear ls_bdcdata.
      ls_bdcdata-fnam = '&1'.
      ls_bdcdata-fval = '&2'.
      append ls_bdcdata to lt_bdcdata.
    END-OF-DEFINITION.
    DEFINE f2.
      clear ls_bdcdata.
      ls_bdcdata-fnam = '&1'.
      ls_bdcdata-fval = &2.
      append ls_bdcdata to lt_bdcdata.
    END-OF-DEFINITION.
    d sapmf02b  0100  x.
    f bdc_cursor  bnka-banks.
    f bdc_okcode  /00.
    f bnka-banks  fr.
    f bnka-bankl  1234567890.
    d sapmf02b  0110  x.
    f bdc_cursor  bnka-banka.
    f2 bnka-banka sy-uzeit.
    f bdc_okcode  =upda.
    DATA l_bi_qid TYPE apqi-qid.
    DATA l_group TYPE apqi-groupid VALUE 'ZSRO'.
    CALL FUNCTION 'BDC_OPEN_GROUP'
      EXPORTING
        group = l_group
        keep  = 'X'
        user  = sy-uname
      IMPORTING
        qid   = l_bi_qid.
    CALL FUNCTION 'BDC_INSERT'
      EXPORTING
        tcode      = 'FI02'
      TABLES
        dynprotab  = lt_bdcdata.
    CALL FUNCTION 'BDC_CLOSE_GROUP'.
    * now go to SM35 to start the session in A, E or N display mode
    * (N mode always use extended log on, whatever checkbox is ticked or not)
    * There are 2 messages issued by FI02: W210(BF00) (as the bank has been
    * flagged for deletion) and S207(BF00) ("bank modified")
    Edited by: Sandra Rossi on Jun 15, 2010 10:06 AM
    > In sample code above, I removed call to RSBDCSUB program so that we can choose the display mode in SM35 when we execute the BI session

  • Why don't my Mac OS Extended (Journaled) format FW drives appear in FCP?!

    When I connect my camera via FW and try to import large files, I can't get FCP to display my FW 3TB drive. It's Mac OS Extended (Journaled) formatted with just the one partition. My internal drive is partitioned into three and they are all shown as drives I can create events on. The 3TB ext is also one of my TimeMachine drives.
    I have another FW 2TB drive that is not a TimeMachine drive and also is Mac OS Extended (Journaled) format and it wont mount/display in FCP X either. They all mount and work fine in Finder.

    Okay I got back another drive which is exFAT format and FCP doesn't see it either. It doesn't have any of those kinds of folder names. All unquie names not generic.
    Doesn't it see it, like it didn't even formated as HFS+
    Directory Contents:
    862155
    drwxrwxrwx
    1
    aleith1
    staff
    131072
    5 May 2013
    $RECYCLE.BIN/
    851970
    drwxrwxrwx
    1
    aleith1
    staff
    131072
    5 May 2013
    Adobe Premiere Pro Auto-Save/
    2208800
    drwxrwxrwx
    1
    aleith1
    staff
    131072
    10 Aug 14:51
    BP Launch MELB/
    3538946
    drwxrwxrwx
    1
    aleith1
    staff
    131072
    15 Jul 13:22
    BZE_BuildingsPlan/
    3111732
    drwxrwxrwx
    1
    aleith1
    staff
    131072
    17 Aug 17:41
    FOUND.000/
    44
    drwxrwxrwx
    1
    aleith1
    staff
    131072
    24 Apr 2013
    Final Cut Events/
    2506231
    drwxrwxrwx
    1
    aleith1
    staff
    131072
    20 Apr 2013
    Final Cut Projects/
    27
    drwxrwxrwx
    1
    aleith1
    staff
    131072
    24 Feb 2013
    Media Express Captures/
    42
    drwxrwxrwx
    1
    aleith1
    staff
    131072
    21 May 2013
    e_Downloads/
    43
    drwxrwxrwx
    1
    aleith1
    staff
    131072
    21 May 2013
    iMovie Events.localized/
    935777
    -rwxrwxrwx@
    1
    aleith1
    staff
    2065077806
    24 Mar 2012
    thrive.mp4

  • How to convert case-sensitive to extended journal format

    I have two apple computers (extended journal format) that have been backed up via a time capsule. I have just noticed that the TC is formatted as case-sensitive. I do not know why case-sensitive. In an effort to ensure consistency of file format then I seek to somehow remove case-sensitive formatting. I presume no/minimal underlying case-sensitivity issues within file names as source data is not formatted in case-sensitive manner.
    I have tried SuperDuper to clone the TC to an external HDD but the application cloned the formatting in addition to the data.
    I have attempted use of Disk Utility to copy content from source (TC) to destination (HDD) but this yielded error messages that noted different file format types.
    It there a way to convert/remove case sensitive formatting from TC?
    I appreciate that I could simply reformat TC to extended journal format but this would presumably erase all my backup data.
    Any guidance most welcomed.

    RossM wrote:
    So I guess my choice is to "leave well alone" as Pondini suggests and accept the fact that cloning TC onto HDD has now formatted my new HDD as case-sensititive.
    Actually, you may have two choices, depending on how you're going to be backing-up to the new HD:
    Your best bet, by far, is to back up to it directly, rather than connecting it to the TC.  That's much faster and more reliable.  If so:
    * Leave the TC backups alone.  Reformat the HD as case-ignorant and let Time Machine start fresh on it.  You can always see and restore from the old ones via the Browse... option, per Time Machine - Frequently Asked Question #17.  
    * Format the HD as case-sensitive and copy the backups from the TC to it. But don't copy the whole sparse bundle; copy the Backups.backupdb folder from the sparse bundle to the top level of the HD.  (Sparse bundles are used only for network backups.)  See #18 in the FAQ; you'll need the 4th procedure (copy network backups to be used locally.
    But if you're going to connect the HD to the TC and back up to it that way, it doesn't matter how you format the HD, since the backups must be in a sparse bundle, that has its own format.  Two choices for that:
    * Leave the TC backups alone. Connect the HD to the TC and select it as the TM destination, and Let Time Machine start fresh on it.  You can always see and restore from the old ones via the Browse... option, as above.   (There is a way to speed up the first backup; see the blue box in #Q2 of Using Time Machine with a Time Capsule.)
    * Copy ("Archive") the TC's internal disk to the external HD, per the green box in #Q6 of the same article.  Then select the external as your Time Machine destination via Time Machine Preferences.
    Is this simply deferring a problem issue to another time (aagh)? Or to somehow try and remove this inconsistency and remove case-sensitive formatting from all tech items, even if this might mean reformatting and losing old backup data?
    No.  There's not really a problem, unless you change the case of file/folder names and try to restore the old ones to the same place via the TM browser, per the link in my earlier post.  That's the only possible downside.
    Does Time Machine require case-sensitive formatting on its destination drive?
    No.  It's the default, but case-ignorant is fine, unless you ever want to add a case-sensitive volume.  Then you're in a pickle.
    Or does Time Capsule only function witih case-sensitive formatting?
    No.  The TC's actual disk is case-ignorant; it's only the Time Machine sparse bundle that's case-sensitive by default.
    The benefit of case-sensitive formatting as Apple default seems rather unclear to me
    It's the default only for Time Machine backups.  Everything else defaults to case-ignorant.
    The advantage is, once you've been backing-up your internal HD for weeks, months, or years, and want to add a case-sensitive external HD to be backed-up, you can.   If the backups are case-ignorant, you can't. 

  • HT4906 The backup disk is not in Mac OS Extended (Journaled) format, which is required.

    Time Machine error!
    The backup disk is not in Mac OS Extended (Journaled) format, which is required.
    And what's Time Capsule?

    If you're trying to use Time Machine with an external hard drive the drive must be formatted OS X Extended (journaled);
    So use Disk Utility to reformat the EHD and then open Time Machine and select the drive again.
    OT

  • Archive Log Format Issues

    Hi DBAs,
    I have 2 Archive destination. My archive log format is ARC%S_%R.%T
    But In my 1 location E:\app\Administrator\product\11.1.0\db_1\RDBMS format shows ARC00025_0769191639.001
    2 location shows E:\app\Administrator\flash_recovery_area\BASKAR\ARCHIVELOG\2011_12_08\O1_MF_1_25_7G15PVYX_.ARC
    SQL> select destination from v$archive_dest;
    DESTINATION
    E:\app\Administrator\product\11.1.0\db_1\RDBMS
    USE_DB_RECOVERY_FILE_DEST
    My Question is that, I am using this format only ARC%S_%R.%T
    but it shows different format in each location. May i know what 's the reason behind this?
    Thanks in Advance

    If you are using other archive destination other than FRA it will creates as per LOG_ARCHIVE_FORMAT,
    and the FRA configured then the archive format for FRA is O1_MF_1_25_7G15PVYX_.ARC
    from your query it is clear that there are two destinations are configured, So if you dont want *.ARC* files, you have to disable FRA.
    But recommended to use FRA easy to manage.

  • Clarification on log format

    Hi all
    I have a confusion regarding the log format of cisco ASA.
    The format of log that I have is
    6|Mar 15 2013 12:01:25|109025: Authorization denied (acl=xxx) for user 'xxxx' from xxx.xx.xx6.53/137 to xxx.xx.xxx.255/137 on interface Outside using UDP
    but according to cisco reference the format should be
    May  2 23:07:23 10.160.205.10 %ASA-6-302015: Authorization denied (acl=xxx) for user 'xxxx' from xxx.xx.xx6.53/137 to xxx.xx.xxx.255/137 on interface Outside using UDP
    I just want to know why my log for mat differs from cisco specification.
    Can anybody please help me??
    thanks
    Bijay

    hi,
    U will find the Char format <BD> in char fomats along with Barcode format.
    if u don't find them there then reimport the script from client 000 and see.
    You can the find that in the Character formats radio button and there itself you can see the barcode option.
    reward if helpful
    regards,
    sravanthi

  • Setting IIS W3C Extended Log File settings via command line, registry or configuration file

    I am currently in need of a way to set IIS W3C Extended Log File settings via command line, registry or configuration file.  More specifically the 'Bytes Sent (sc-bytes)' and 'Bytes Received (cs-bytes)' settings that are not enabled by default. 
    If anyone knows where I can locate these setting (outside of the GUI) for all IIS versions that would be greatly appreciated.

    I believe I have found a valid solution. You must have the WebAdministration module loaded.  I hope this helps someone.
    Use the following syntax to view current W3C fields:
    Get-WebConfiguration -filter system.applicationhost/sites/sitedefaults/logfile | select-object -expandProperty logExtFileFlags
    Use the following syntax to set W3C fields:
    Set-WebConfigurationProperty -Filter System.Applicationhost/Sites/SiteDefaults/logfile -Name LogExtFileFlags -Value "Date,Time,ClientIP,UserName,SiteName,ComputerName,ServerIP,Method,UriStem,UriQuery,HttpStatus,Win32Status,BytesSent,BytesRecv,TimeTaken,ServerPort,UserAgent,Cookie,Referer,ProtocolVersion,Host,HttpSubStatus"}

  • How to set access.log format to "combined"

    Hello,
    I'm trying to get AWStats working on Solaris and have that working fine, but to get more information, I need to set the log format to "combined".
    Question is: is there a way to modify what is output in the access.log?

    SHOULD I RECOMPILE and specify the access method?
    Should i change line 1131 in db4.cpp to DBTYPE type = DB_QUEUE; ???

Maybe you are looking for

  • Folder in a folder

    is it possible to create a folder in a folder. for the photos ?

  • Kernel 2.6.18 and mkinitcpio coming soon

    phrakture wrote: This is an announcement for those of you still using mkinitrd to boot your machines. For some time now there has been a notice upon kernel install that mkinitrd will be replaced by mkinitcpio once the 2.6.18 series is released. That

  • Assigning User Exit for Substitution type 003 - OBBH

    Hi Gurus, I have created a Sustitution for the complete document i.e type 003 for replacing Assingment Field with PO number during MIRO. I have copied the standard program RGGB000 in to Z.. add my user eixt and have written the code. But i dont know

  • Jarsign passphrase -- Makefile help

    Hi folks, My question is more of a make question than a jarsign question. I have a make file that builds a jar and signs it. However, I don't want to have to pass the passphrase via the terminal after I call make. Is there a way to code the passphras

  • Create Contact Sheet II missing

    Hi, I'm trying to create a contact sheet in CS4 using <File><Automate><Create Contact Sheet II> The trouble is that <Create Contact Sheet II> is missing from the drop-down menu. This is the first time I've tried this since downloading and installing