Want a log file in LMS 3.1 for Link down

I want to have an external logfile which should write "DEVICEName & respective Interface" at the event when this port goes down. Actually i want to monitor all uplink ports in this way.

There is no such log file. The DFM Alerts and Activities Display does show you all of the events for all your devices, but this is not written to a flat file. You could, however, create a DFM notification group matching only on the OperationallyDown event (under DFM > Notification Services > Notification Group). Then, create a syslog subscription for this group, and send all of the notifications to a dedicated syslog server. The messages will be written to a flat file by the syslog daemon.

Similar Messages

  • Filled redo log files are available to LGWR for reuse

    Hi,
    Oracle version:
    Oracle Database 10g Release 10.2.0.4.0 -
    OS:Windows XP
    In oracle documentation it is mentioned that:
    Filled redo log files are available to LGWR for reuse depending on whether archiving is enabled.
    *> If archiving is disabled (the database is in NOARCHIVELOG mode), a filled redo log file is available after the changes recorded in it have been written to the datafiles*.
    Link for Documentation is:
    http://docs.oracle.com/cd/B28359_01/server.111/b28310/onlineredo001.htm
    My doubt is:
    Redo Records are written to datafiles also??

    user12141893 wrote:
    Does it mean:
    Suppose:
    Online redo log files contains some redo entries and database buffer cache contains some data and this data belong to redo entries of redo log files.
    Now this redo log file can't be reused until those (related) blocks of database buffer cache are written into datafiles.
    This is sort of correct. If the log file would be filled up , LGWR would switch over to the next log group and would initiate a Log Switch which would further trigger DBWR to start checkpointing the content protected by this log group to the data file. By the time this operation would be going on, the Log group's members would have the status of Active and once it would be complete, the status would be marked to Inactive which means that this log group and its members can be reused by LGWR.
    HTH
    Aman....

  • Do we need to format data and log files with 64k cluster size for sql server 2012?

    Do we need to format data and log files with 64k cluster size for sql server 2012?
    Does this best practice still applies to sql server 2012 & 2014?

    Yes.  The extent size of SQL Server data files, and the max log block size have not changed with the new versions, so the guidance should remain the same.
    Microsoft SQL Server Storage Engine PM

  • How to create the log file?

    Hi,
    I am working with the transcation f-30, But this question is on technical area.
    So after complition of BDC program excution, if you go for this screen in ALL DISPLAY MODE , you will get one list of documents, which are POSTED or SIMULATED.
    So Now my question is,
    I want to save this records as a LOG FILE to application server. For this I am having selection screen parameter too.
    But how can I Transfer this list to the output file?
    Thanks,
    Naveen Inuganti

    Hi
    U need to "write" the log in the file instead of in the list.
    See the help for OPEN DATASET, TRANSFER DATASET statament
    Max

  • Log File Creation Confusion

    SQL*Plus: Release 10.2.0.3.0 - Production on Mon Mar 11 11:42:45 2013
    Copyright (c) 1982, 2006, Oracle.  All Rights Reserved.There are some initialization parameters that decide the location of the online redo log files in general.These initialization parameters are
    - DB_CREATE_ONLINE_LOG_DEST_n
    - DB_RECOVERY_FILE_DEST
    - DB_CREATE_FILE_DEST
    I could not understand the level of precedence of these parameters if you set each of them for creating online logfile, if i set all these parameter then creating online log file always goes to the path which define in parameter DB_CREATE_ONLINE_LOG_DEST_n and ignores the others parameter (DB_RECOVERY_FILE_DEST,DB_CREATE_FILE_DEST).
    If i just set the last two parameter (DB_RECOVERY_FILE_DEST,DB_CREATE_FILE_DEST) and do not set the DB_CREATE_ONLINE_LOG_DEST_n the logfile created in both location DB_RECOVERY_FILE_DEST,DB_CREATE_FILE_DEST) with mirrored mechanisim.
    SQL> select name,value
      2    from v$parameter
      3   where upper(name) in ('DB_CREATE_ONLINE_LOG_DEST_1','DB_RECOVERY_FILE_DEST','DB_CREATE_FILE_DEST')
      4  /
    NAME                                                                             VALUE
    db_create_file_dest                                                              D:\ORACLE\PRODUCT\10.2.0\DB_1\dbfile
    db_create_online_log_dest_1
    db_recovery_file_dest                                                            D:\oracle\product\10.2.0\db_1\flash_recovery_area
    SQL> select * from v$logfile
      2  /
        GROUP# STATUS  TYPE    MEMBER                                                                              
             3         ONLINE  D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\REDO03.LOG                                    
             2         ONLINE  D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\REDO02.LOG                                    
             1 STALE   ONLINE  D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\REDO01.LOG                                    
    SQL> alter database add logfile
      2  /
    Database altered.
    SQL> select * from v$logfile
      2  /
        GROUP# STATUS  TYPE    MEMBER                                                                                      
             3         ONLINE  D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\REDO03.LOG                                            
             2         ONLINE  D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\REDO02.LOG                                            
             1 STALE   ONLINE  D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\REDO01.LOG                                            
             4         ONLINE  D:\ORACLE\PRODUCT\10.2.0\DB_1\DBFILE\ORCL\ONLINELOG\O1_MF_4_8MTHLWTJ_.LOG                   
             4         ONLINE  D:\ORACLE\PRODUCT\10.2.0\DB_1\FLASH_RECOVERY_AREA\ORCL\ONLINELOG\O1_MF_4_8MTHLZB8_.LOGAs you can see above result , creating a logfile adhere defining parameters DB_RECOVERY_FILE_DEST,DB_CREATE_FILE_DEST) , when i define the parameter DB_CREATE_ONLINE_LOG_DEST_1 , logfile creation will goes to only defining within parameter DB_CREATE_ONLINE_LOG_DEST_1 no matter what you define for DB_RECOVERY_FILE_DEST,DB_CREATE_FILE_DEST).Here you go.
    SQL> alter database drop logfile group 4
      2  /
    Database altered.
    SQL> select * from v$logfile
      2  /
        GROUP# STATUS  TYPE    MEMBER                                                                      
             3         ONLINE  D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\REDO03.LOG                            
             2         ONLINE  D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\REDO02.LOG                            
             1 STALE   ONLINE  D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\REDO01.LOG                            
    SQL> alter system set db_create_online_log_dest_1='D:\oracle' scope=both
      2  /
    System altered.
    SQL> select name,value
      2    from v$parameter
      3   where upper(name) in ('DB_CREATE_ONLINE_LOG_DEST_1','DB_RECOVERY_FILE_DEST','DB_CREATE_FILE_DEST')
      4  /
    NAME                                                                             VALUE
    db_create_file_dest                                                              D:\ORACLE\PRODUCT\10.2.0\DB_1\dbfile
    db_create_online_log_dest_1                                                      D:\oracle
    db_recovery_file_dest                                                            D:\oracle\product\10.2.0\db_1\flash_recovery_area
    SQL> alter database add logfile
      2  /
    Database altered.
    SQL> select * from v$logfile
      2  /
        GROUP# STATUS  TYPE    MEMBER                                                                              
             3         ONLINE  D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\REDO03.LOG                                    
             2         ONLINE  D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\REDO02.LOG                                    
             1 STALE   ONLINE  D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\REDO01.LOG                                    
             4         ONLINE  D:\ORACLE\ORCL\ONLINELOG\O1_MF_4_8MTJ10B8_.LOG                                       My confusion is here why the mechanisim of (DB_RECOVERY_FILE_DEST,DB_CREATE_FILE_DEST) is same while the same with both of them becomes differ when you define
    'DB_CREATE_ONLINE_LOG_DEST_n'?

    DB_CREATE_FILE_DEST is used if DB_CREATE_ONLINE_LOG_DEST_n is not defined.
    DB_RECOVERY_FILE_DEST is used for multiplexed log files.
    Thus, if Oracle uses DB_CREATE_FILE_DEST (because DB_CREATE_ONLINE_LOG_DEST_n is not defined), it multiplexes the log file to DB_RECOVERY_FILE_DEST if DB_RECOVERY_FILE_DEST is also defined.
    If, however, DB_CREATE_ONLINE_LOG_DEST_1 is used, Oracle expects you to define DB_CREATE_ONLINE_LOG_DEST_2 as well for multiplexing the log file; else it assumes that you do not want the log file multiplexed. The fact that the parameter ends with an n means that Oracle uses the n=2 f or the multiplexed location if defined.
    Hemant K Chitale

  • Where can I file the log file generate by RMAN using EM 10g.

    Hi
    I trying to find the log file that is generated using RMAN invoked from EM.
    I can only see the file using Internet Explorer with the URL:
    em/console/database/rec/bkpMgmt?skey=257&type=oracle_database&target=isatprod.dla_dns.com&event=showJobDe
    But I need to find where the log files are located in the filesystem because in other server I will not have EM with OC4J.
    Thanks.
    Juan.

    When use OEM for 10g and choose the option / Maintance/Backup Reports
    I can see information of all my backups, that includes:
    Backup Name - Start Time - Time Taken - Status - Type- Output Devices - Input Size .....
    When I click on Status field I can see the log file of this Backup.
    (whe click in status one URL will be invoked ,something like below URL)
    http://10.5.0.86:1158/em/console/database/rec/bkpMgmt?skey=259&type=oracle_database&target=isatprod.dla_dns.com&event=showJobDet&objType=jobDtl
    So the log file exist in any place for every backup made , the problem that I can not find it.
    The log has approximately 500 lines, if you want I can send you by email the log.
    Currently I don't have a repository catalog, I use a control file as repository.
    I think that 500 lines of log is not include in any dynamic performance views.
    Thanks
    Juan

  • Shrink Transaction log file - - - SAP BPC NW

    HI friends,
    We want to shrink the transaction log files in SAP BPC NW 7.0, how can we achieve thsi
    Please can you throw some light on this
    why we thought of ghrinking the file ?
    we are getting "out of memory " error when ever we do any activity. so we thought of shrinking the file (this is not a production server - FYI)
    example of an activity where the out of memeory issueee appears
    SAP BPC excel >>> etools >>> client options >>> refresh dimension members >>> this leads to a pop-up screen stating that "out of memory"
    so we thought of shrinking the file.
    Please any suggestions
    Thank you and Kindest Regards
    Srikaanth

    HI Poonam,
    Not only the excel is throwing this kind of message (out of memory) - the SAP note is helpful, if we have error in excel alone
    But we are facing this error every where
    We have also found out that our Hard disk capacity as run out of space.
    we want to empty the log files and make some space for us.
    our hard disk is now having only few MegaBytes now
    we want to clear our all test data, log files, and other stuffs
    Please can you recommed us some way
    Thank you and Kindest regards
    Srikaanth

  • OC4J LOG FILES

    OC4J:
    If I have multiple applications app1 and app2 on single OC4J server instance bound to diffrent urls How do I create diffrent log files (STDOUT and STDERR )separate for each application
    to log messages .
    Satish Juware

    As per my knowledge you cannot specify different STDOUT and STDERR for each application. it's one per the server. however you can specify a log file for each deployed application and it registers all events, exceptions in that log file. this log file is by default created in the $J2EE_HOME/j2ee/home/application-deployments/<application-name> directory.
    If you want different STDERR and STDOUT for each application may be you can create different instances of Oc4J for each application.
    regards
    Debu

  • J2ee1.4 and log file problem

    Hello all,
    I am running J2ee1.4 on Win 2000 Pro. I have 2 problems:
    1) The server.log file becomes too big even I set its size. Seem like it does not rotate when the limit size is reached. (I set it for 2MB)
    2) Under Logging tab, I enabled the option "Log messages to standard error", but when I restart the server It cannot start the server1 instance.
    Can anyone please help me on this. I would like to see messages on standard output screen and I do not want the log file take all my hardrive space. Thank you so much!

    Thank you for responding. When I enable the option "Log messages to standard error" and restart the j2ee1.4 server I got the following message:
    Starting Domain domain1, please wait.
    Log redirected to C:\Sun\AppServer\domains\domain1\logs\server.log
    Subprocess timed out after 600000mS
    CLI156 Could not start the domain domain1
    Press any key to countinue...
    When I look at processes under Window Task Manager, java.exe and javaw.exe is running. At the end, I cannot start it in "verbose" mode. Is there any other thing I need to do beside enable the "Log messages to standard error" ?
    I am appreciated any help.

  • Referrer log file?

    Is there any way to change the log format for the access log to include the referrer? Or to add a separate referrer log file? I know I can do this and much more with a filter or other programmatic technique, but I was looking to do some quick and dirty log file analysis. This is for Sun Application Server 1.4.
    Thanks in advance.

    Unfortunatly, the Access Log API is not public, so yoiu can't do what you want. I will file an RFE and see if I can add this feature for the next release.
    Thanks
    -- Jeanfrancois

  • 56GB Console Log file?!

    Does anyone know why my computer would have created a Console Log file that is 56gigs? It ate my computer's (74gig) hard drive, so i can't even view the log file to see what it contains. I'd like to delete it but fear some computational retribution. Any thoughts, insights, suggestions? Many thanks.

    Hi cornelius,
    Thanks for catching the bad link. I could have sworn I tested it (I usually do so that I can edit it if need be) but I am getting a little older these days and well you know.....)))
    Here's the topic I was trying to link to above "Self-expanding console log files".
    Sorry to all for the bad link....
    regards,
    littleshoulders
    Message was edited by: littleshoulders
    edit again: Now this is weird, it did it again. I'm sure I pasted the url into my html correctly but now this second link does the same thing....returns you to this topic thread.
    I'll post the raw url and see if it pastes correctly:
    http://discussions.apple.com/thread.jspa?messageID=5015682&#5015682
    let's see if that works?
    edit yet again: Now that works! I'm stump with what I could have done wrong. I have to do some testing with my code and my copy/paste to make sure all is ok. Hope it's not another bug with the latest round of Discussions changes.....I really don't want to go in "that" direction....lol.
    Message was edited by: littleshoulders
    edit again: I checked the html code for the link in this post above and it is correct. I dont know why it is returning to this topic and not the intended thread? Weird.....I guess I'm going to have to be a lot more careful in the future till I figure out what's going on with it.

  • WEBlogic webserver LOG file examples

    Does anyone have a sample Weblogic webserver log file sample ia can use for a test
    on another application i am creating?
    I am also looking for a portal log file as well . Any help is appreciated. Trying
    to create a some reports based on these outputs.
    Thanks
    Travis Giffin

    No, not as I know of. If you are experiencing some problems and you really want to
    find more information about a problematic installation, you may do the following to
    generate the debug output and you can send that debug info to me:
    Windows: pressing down control key at the beginning of the installation until a
    debug console window pops up.
    Unix Installer ( .bin files): set LAXDEBUG=true in your environment before starting
    your installation. tee or script the output to a file:
    export LAXDEBUG=true
    sh weblogic610.bin -i console 2>&1 | tee buildlog
    Pure java installer (.zip file):
    touch ia_debug
    $JAVA_HOME/java -cp weblogic610.zip -i console 2>&1 | tee buildlog
    The upgrade installer should have a clear log to tell you what went wrong in a
    installation or uninstallation process. And the installation/uninstallation process
    would be rolled back if anything went wrong. The exception is that if you manually
    stoped it in some way, which way may catch and process later.
    -Dan
    Ashique wrote:
    Yes, I am trying to do a full installation (in silent mode).
    Every software has an installation log. Is that not pretty much standard?
    How come weblogic does not have log? If something goes wrong during silent
    installation, I would like to see a log file.
    Are you sure that there is absolutely no log file for a full installation?
    Dan Bai <[email protected]> wrote:
    There is no log file for a full installer installation.
    The log file for an servicepack upgrade installation lives under $BEA_HOME/logs.
    Look into the directory corresponding to that servicepack.
    Are you experiencing any problems with the full installer?
    -Dan
    Ashique wrote:
    Where is the installation log file after WebLogic installation?
    I am installing WebLogic6.1. Can I specify where the installation logfile should
    go? Where is it anyway?
    I searched few directories do not see where it placed the installationlo file.

  • Data Services Designer 14 - Large Log files

    Hello,
    we're running several jobs with the Data Services Designer 14, all works fine.
    But today a problem occur:
    The Data Designer on a client produces after finishing a big job a very large log file in the Data Services Designer folder with 8 GB.
    Is it possible to delete these log files automatically or restrict the maximum size of the created log files in the designer?
    What's the best way?
    Thanks!

    You can set to automatically delete the log files based on number of days.
    I have done this in XI 3.2, but as per the document, this is how it can be done in DS 14.0.
    In DS 14.0, this is handled in CMC.
    1. Log into the Central Management Console (CMC) as a user with administrative rights to the Data Services application.
    2. Go to the u201CApplicationsu201D management area of the CMC. The u201CApplicationsu201D dialog box appears.
    3. Right-click the Data Services application and select Settings. The u201CSettingsu201D dialog box appears.
    4. In the Job Server Log Retention Period box, enter the number of days that you want to retain the following:
    u2022 Historical batch job error, trace, and monitor logs
    u2022 Current service provider trace and error logs
    u2022 Current and historical Access Server logs
    The software deletes all log files beyond this period. For example:
    u2022 If you enter 1, then the software displays the logs for today only. After 12:00 AM, these logs clear and the software begins saving logs for the next day.
    u2022 If you enter 0, then no logs are maintained.
    u2022 If you enter -1, then no logs are deleted.
    Regards,
    Suneer.

  • Bizzare error message requests me "Select a log file" for .vi

    Hi
    I am getting a very strange pop-up with my vi that requests me to select a log file for the VI.
    If I hit cancel I get the pop-up "Cannot log front panel of vi. there is no log file associated with the vi"
    I don't want a log file. 
    There must be some background setting in the VI that is not in the actually Lab-VIEW code.
    Does anybody know how I can switch this off?
    Many thanks
    Ashley

    Off the top of my head I can only think of one setting that may cause this.  You can set a VI to log its front panel data automatically.  Go to Operate>>Data Logging and check the settings there.    Also look at Operate>>Log at Completion.
    It may also be that you have this set on a subVI, and if so you will see a yellow "halo" around one of your subVIs, meaning you have turned on database access.  You can look in the help for Logging Data>> On the front panel that discusses this behavior.
    If you wrote the VIs and have no idea what I am talking about with the Database Access that is fine, it is not a commonly used feature.
    If none of these help can you attach the VI so we can all see it.

  • Application log files of IP IVR

    Dear All,
    We developed a self service demo application using CCX-IP IVR. The call flow works fine, however I want to see the application log (detailed log file - step-by-step execution) for this.
    I checked under following directories but application steps are not being captured.
    C:\Program Files\wfavvid\log\EMS
    C:\Program Files\wfavvid\log\JTAPI
    C:\Program Files\wfavvid\log\MADM
    C:\Program Files\wfavvid\log\MCVD
    C:\Program Files\wfavvid\log\MEDT
    C:\Program Files\wfavvid\log\MIVR
    C:\Program Files\wfavvid\log\Purge_Sch
    C:\Program Files\wfavvid\log\RepLogs
    In the CCX administration screen, under (System->Tracing->Cisco Unified CCX Engine->Trace Configuration->Steps) we enabled both Alarm Tracing and Debugging.
    Even then application logs are not being captured. Could anyone working on IP IVR advise me how to get detailed application logs?
    Many thanks in advance,
    Sujin

    Dear All,
    Application logs are getting logged in the following directory.
    C:\Program Files\wfavvid\log\MIVR
    Thanks,
    Sujin

Maybe you are looking for