Missed event monitor with event reset

I have pretty simple request for Scom monitoring, but I don’t know how to do it. My application generates an event in custom log with name Mpis. Event level is Informational, Event ID is 10 and source is Mpis. This event is created every
5 minutes. If application failed, event isn’t created. I have a need to create an alert, if event isn’t created more than one hour and monitor must go into unhealthy state (red). If same event come back, monitor must resolve itself and go back to healthy (green).
I try doing this with missed event monitor with event reset, but they don’t work as I expected, probably because I use the same event for trigger an alert and resolve an alert. Any idea ?

There must be something misconfigured. Missed Event Detection -> Windows Event Reset is the correct one.
Use Event ID 10 and Source Mpis as expression in both Simple Event Expression and Missing Event Expression. in Missing Event Detection, use "Based on fixed simple recurring Schedule" and choose 60 minutes/1 hour.
I have configured this in my environment, and this works perfectly; if no events are logged within an hour, i get an alert. If i then create the event, the alert Closes.
www.coretech.dk - blog.coretech.dk

Similar Messages

  • How to define an event-pair by checking event description to create an event reset monitor?

    Hi there,
    We have one application which check connection status with sub component. If the connection is failed, an event will be created like the following
    ID: 53428
    Description: Connection to xxxx failed.
    xxxx is the name of the components. There are about 20 components in total.
    If the connection is restored, then another event will be created similar to the following
    ID: 53429
    Description: Successfully connected with xxxx.
    I want to create an event reset type monitor. The issue I am having now is the unhealthy and healthy event are not just simply paired by the event ID but also the component name in the event description. The monitor should trigger the alert when event
    53428 is detected, however the alert should only reset if event 53429 with the same component name is found.
    How to do this?
    I know this can be accomplished by using script. But is any SCOM native windows event monitor can handle this?
    Thanks!

    Thanks Roger. Your suggestion is also an option however it is not feasible. There are 15 servers in my case and each have about 20 components installed. In my first post, I just put the component names as illustration but in the reality, except the
    component name, the event message also contains the link name like ServerName1 connection to ServerName2. The pair of event has to match both component name and also the link name. If I create one monitor for each possible combination, it would end up
    as many as 300 monitors.
    Script monitor is one for sure working. I just want to confirm whether any native SCOM windows event monitor is capable to do this.

  • Query for missing events/heart beat

    Hello Everyone,
    I am trying to monitor network packets I send to a certain specific ip address and also check if I have sent packets for that particular ip at regular intervals(something like a heartbeat). I am forwarding the network output from wireshark to a csv file and reading it at OCEP using csv adapter.
    In order to check for missing events/heart beat (this is used to check if a server responds to ping once every hour) I followed this link
    Re: CEP Timer for Non-Event and
    [http://docs.oracle.com/cd/E21764_01/doc.1111/e14476/examples.htm]
    I have configured the OCEP. This is the query I am firing
    SELECT Packets.ipdst AS ipdst,Packets.ipsrc AS ipsrc,Packets.framelen AS framelen,"Error-Missing Event" AS alertType
    from FilterNetworkPackets
    MATCH_RECOGNIZE (
    PARTITION BY ipdst
    MEASURES Ipdst_Packets.ipdst AS ipdst,
    Ipdst_Packets.ipsrc AS ipsrc,
    Ipdst_Packets.framelen AS framelen
    ALL MATCHES
    include timer events
    PATTERN( Ipdst_Packets*)
    DURATION 10 DEFINE Ipdst_Packets AS ipdst = "xx.xx.xx.xx")
    AS Packets
    I have configured heartbeat(10000) on the input channel as well.
    I get output in which some packets are repeated. I dont know how to get notification for missing events after the duration has elapsed, please help me.
    Thanks in advance
    Shilpa

    Thanks a lot for the reply Unmesh. Really appreciate it.
    ipsrc ipdst framelen/seq
    192.168.0.11     173.194.5.140     3
    192.168.0.9     239.255.255.250 4
    192.168.0.10     173.194.5.140     5
    192.168.0.9     239.255.255.250 6
    192.168.0.9     173.194.41.161     7
    192.168.0.9     173.194.41.161     8
    192.168.0.9     173.194.41.161     9
    192.168.0.9     239.255.255.25 10
    192.168.0.9     90.192.176.67     11
    192.168.0.9     87.112.197.250     12
    192.168.0.9     173.194.41.166     13
    192.168.0.9     173.194.41.166     14
    192.168.0.9     173.194.41.181     15
    192.168.0.11     173.194.5.140     16
    192.168.0.9     173.194.41.181     17
    192.168.0.9     90.192.176.67     18
    192.168.0.9     173.194.41.181     19
    192.168.0.19     173.194.5.140     20
    192.168.0.9     173.194.41.181     21
    192.168.0.9     194.168.8.100     22
    192.168.0.9     173.194.41.181     23
    This is part of the test data which consists of ipsrc,ipdst,framelen. Currently I have set framelen to sequence number for checking. I run the loadgen.cmd on this csv file. I need to check if a packet with ipdst = "173.194.5.140" arrives once every 10 sec. Give some warning if it does not arrive.
    My config file is:
    <query id="FilterCriteria"><![CDATA[
    SELECT Packets.ipdst AS ipdst, Packets.ipsrc AS ipsrc, Packets.framelen AS framelen, "Error-Missing Event" AS alertType
    from FilterNetworkPackets
    MATCH_RECOGNIZE ( PARTITION BY ipdst
    MEASURES Ipdst_Packets.ipdst AS ipdst, Ipdst_Packets.ipsrc AS ipsrc, Ipdst_Packets.framelen AS framelen
    include timer events
    PATTERN( Ipdst_Packets) DURATION 10
    DEFINE Ipdst_Packets AS ipdst = "173.194.5.140") AS Packets
    ]]></query>
    </rules>
    </processor>
    <channel>
    <name>FilterNetworkPackets</name>
    <heartbeat>100000000</heartbeat>
    </channel>
    <http-pub-sub-adapter>
              <name>alertadapter</name>
              <server-context-path>/pubsub</server-context-path>
              <channel>/packetalert</channel>
         </http-pub-sub-adapter>
    If I maintain the entry for channel, I get error from the server
    Error encountered while initializing configuration object. The configuration name, FilterNetworkPackets, is used multiple times, but configuration names must be unique within the same configuration file or application.>
    I set the heartbeat value via the visualiser. Is this wrong?
    This is the output
    {"ipsrc":"192.168.0.10","alertType":"Error-Missing Event","framelen":5,"ipdst":"173.194.5.140"}
    {"ipsrc":"192.168.0.10","alertType":"Error-Missing Event","framelen":5,"ipdst":"173.194.5.140"}
    {"ipsrc":"192.168.0.10","alertType":"Error-Missing Event","framelen":5,"ipdst":"173.194.5.140"}
    {"ipsrc":"192.168.0.19","alertType":"Error-Missing Event","framelen":20,"ipdst":"173.194.5.140"}
    {"ipsrc":"192.168.0.19","alertType":"Error-Missing Event","framelen":20,"ipdst":"173.194.5.140"}
    {"ipsrc":"192.168.0.19","alertType":"Error-Missing Event","framelen":20,"ipdst":"173.194.5.140"}
    {"ipsrc":"192.168.0.9","alertType":"Error-Missing Event","framelen":64,"ipdst":"173.194.5.140"}
    {"ipsrc":"192.168.0.9","alertType":"Error-Missing Event","framelen":64,"ipdst":"173.194.5.140"}
    {"ipsrc":"192.168.0.9","alertType":"Error-Missing Event","framelen":64,"ipdst":"173.194.5.140"}
    Sometimes it repeats the packets and sometimes it does not.
    It did not display packet 3,16 which also follows the criteria. Also for the next iterations of ten seconds when the criteria fails it does not do anything. Is it possible to perform some action or notification that there was no event within that time interval?
    Thanks
    Shilpa
    Edited by: 919141 on 29-Mar-2012 07:28
    Edited by: 919141 on 29-Mar-2012 08:07

  • ICloud on the web is missing events on iCal, iPhone and iPad

    I am using iCloud to sync 3 calendars between my Mac, iPhone and iPad. Bizarrely, all of the events are perfect in iCal on my Mac as well as on the iPad and iPhone. However, when using iCloud's Calendar app on the web it is a patchwork of random events missing. There seems to be no rhyme or reason to it.
    Also, with iCal running on the Mac, my Calendar app of choice, Fantastical, displays all of the events perfectly. Once I quit iCal, I get the same random missing events as the web app. Yet, Calendar, Fantastical and any other calendar apps on both my iPhone and iPad always display all the events properly.
    This has been driving me crazy. I tried exporting all of my calendars locally, deleting everything on iCloud, creating new calendars and merging in the old data. I got the same end result. I also tried importing the old calendars as completely new ones (not merged) and got the same missing events.
    If anyone has any suggestions of something I may have missed, I would be eternally grateful. I can't afford to lose any of my calendar data.

    Sign into your account on icloud.com, click on your name, then click on Time Zone.  Check that it is the correct time zone and the selected citiy is near your location.

  • Compound clips showing as missing events

    I started a project on Macpro tower, then copied that project with all it's events and media to a portable hard drive to work on it with my Macbook Pro.  I did not import anything into the event for this project while working on the Macbook, but I did create some compound clips.  After working on the Macbook, plugged the portable drive into my Macpro tower and copied the project back to the hard drive in the Mac Pro.  I performed the copy via drag and drop withinn Final Cut Pro X. I then began to work on the project.  I did not re-copy the events and clips back to the Mac Pro tower, because they are all there already.
    Now, I find that when I eject the portable drive from the Mac Pro tower, the compound clips show up as a missing event, even though the clips within those compound clips are in the current project.  I've tried to re-link the media, but there doesn't seem to be a way to re-link the compound clip.  I could just trash the new project, but I've done some work on it that I don't want to lose.  Any help would be appreciated.

    Scott Odgers wrote:
    now I know to re-import everything back even if nothing has really changed.
    I am glad you got it working. But something did change. You created compound clips in the Event Library when you added them to your project on the MBPro. When you opened the project on your tower there were no compound clips in the event library without the portable drive connected. Once you copied the new events onto the tower event library FCP was happy and all you need to do is replace the old compounds in the timeline with the new ones.

  • Missing events

    I apparently deleted something by accident when I was trying to clean up my internal HD before installing an new external HD. Many of my events are now mising (everything after 2007). However, all the photos seem to be present in the Photos folder.
    However, I discovered that the Photos folder in the Pictures folder contains no photos. All my photos are in a Photos folder in another folder that I keep on my descktop where I put stuff I'm working on and want to get at easily.
    I don't remember moving the Photos folder there, but it was there before the events went away. And iPhoto worked fine like that.
    I do have a Time Machine back up, and a copy of iPhoto Manager.
    What I want to do is 1) restore my events, 2) move my iPhoto photo files to the new external HD, 3) fix the Photo folder location problem ( 2 folder with this name) on the internal drive (if it is a problem) and then remove duplicate photos.

    If the photos are in the Photos sections they will be in an event.  First select one of the photos in the Photos section, Control (right) cliick on it and select Show Event from the Contextual menu.
    That will take you to the Event that the photo is in. 
    While in the Events mode go to the View menu and set the options as shown in the screenshot below:
    Then check for the missing events according to date. 
    OT

  • Missing Event on FCP X

    Heyy Guys! At school I was editing a project on Final Cut Pro X on the school's iMAC and I saved all of my files onto my Glyph Drive. Now that school is over I would like to edit that project more on my Mac book pro laptop. Once I plugged my Glyph Drive onto the Mac pro, My Final cut on the laptop says "missing event" on the project that was done on the school's iMac. I think the problem is that I didnt back up the file? But im not sure how to do that. All I did was save the files on my hard drive. So my question is why does it say missing event and how do I back up files so Final Cut can recognize my files that was done in a different location
    Thank You!!!!!
    -Christine

    So I tried a few more random things - this is just to potentially save other people some time trying useless random ideas to fix this stupid issue:
    - I copied the iMovie Library from my USB drive to my internal hard drive.
    - I made sure that I did not have any more symlinks pointing outside the Library. I had some JPEGs on my NAS which were used in the project and just symlinked into the Library (no Idea, why). I did this by "consolidating"* the iMovie media from iMovie - right click on events.
    - I tried two more projects
    - I disabled AppNap for iMovie AND Final Cut Pro X
    None of these actions changed anything.
    This is incredibly annoying!
    I am now trying to find out, how I could automate the process of hitting Shift-F for every single clip in my project using Apple Script (i.e. fixing the Events in the end). Unfortunately I can not find any useful information on how to script the FCP X interface.
    Another option would potentially be to play around with the Events themselves (i.e. the CurrentVersion.fcpevent files). They are SQLite database but I have not figured out the structure yet. Any information if someone has already reverse engineered the structure of these databases would be very helpful!
    *this might be called differently. I am on a German system so I don't know exactly how this translates into the english version.

  • E6 - no SMS sound, no missed event widget

    Hi,
    at first - welcome everyone.
    I've recently switched my E66 for a brand new E6-00. As an E66 user, I'm not used to having problems with my phone. Everything changed on the second day of using E6.
    First, I've noticed, that missed event widget stopped working (with no config changes). Reinstalling the newest software solved the problem. Let's say partly, because "contact search" stopped working (also after turning it off and on again). This time, restoring phone to factory deffaults helped.
    I've had no problems for astonishing 4 days, when my missed event widget dissapeard again. Luckily, I knew how to repair it. It's enough to download 170MB of software and reinstall it.
    But it shew up, that my E6 doesn't want to bore me with the same issues. Today, I lost sound on incoming SMSes. I've tried everything, there is in settings with no effect.
    Please let me know, if you have any suggestions. I'm a Nokia fan, since I have never had any problems witch any of my Nokias. But this E6 cools down my enthusiasm. My friends laugh at me for buing Nokia instead of some android-based smartphone and I have to hide from them, because I really have no strong argument (like reliability used to be) in that discussion.
    Regards
    Michal Pajak

    Have you by any chance set the application Font Magnifier above 115% or somethimg like that?
    I discovered this phenomina a couple a months ago but it disappeared...cant tell if the mangifier had anything to with missed events...try it anyhow.
    Nokia 808 again (delight Belle), Nokia E7 and X7 ( again, all on Delight Belle...after some time on Nokia Lumia 925 (retired), 1020 (not that great)and Lumia 820 (Replaced my router at home, great for internet sharing).., N9 The best device ever (use it as much as Lumia 1020), Nokia 700 (Sport Phone/My Love :-) ) Nokia 701, Nokia E6 (Should have a follow-up from Nokia among with larger screen, NFC, Autofocus), Lumia 800 (Retired After 6 weeks), -Sports Tracker-Nokia Internet Radio-Handy Safe-Skype-Bambuser-Screenshot app pro-fMobi-ComingNext-Manual TaskSwitcher-jagiTimer-Easy StopWatch-Boldbeast-Equalizer-Financial Calculator-WiMP Music-YTasks-Davi-Thumbnail Folders-BizCalendar-Tiny7-Situations-nn reeder-Sport Timer-CameraLover-CameraPro-GrabRadio-LiveScore-Poddi-Gravity-SkyFilesPro

  • Ideas to improve Nokia 701 - Missed Events remindi...

    Hi from Czech Republic,
    I'm proud owner of Nokia 701.
    I've got two Ideas to help using Nokia for more peoples, then me.
    1/ Missed Events reminder
    Is it not possible to use phonedisplay as missed event reminder? (blink once per 5sec or something like that)
    This little reminder light is not strong enough, to remind user during a day even in low lighted room. But it is sure enough to provide remindering at the night.
    I suggest, this function could be enabled/disabled for every profile or it can be automatically done through light sensor.
    2/ FM transmitter
    What is the Reason for FM spectrum 88,1 - 107,9 ? Standard in EU is 87,8 - 108,0. I had used 108FM on my old FM transmitter, while there was no broadcast and i could hear music without interference.
    Many thanks,

    Hi, 
    Welcome to the forum!
    Thank you for the feedback. You can share this idea with the proper department. You can reach them through here: https://ideasproject.com
    For your second concern, it's used for US TV channel (87.9 MHz) and aviation navigation frequencies (107.9 MHz).
    Hope this helps. 

  • Suggestion : C3-00 missed events lights

    Hi,
    Here's a suggestion for the next firmware update - why not include the option for "notification of missed events" by having the feature of a blinking keypad + screen like the one implemented in the Nokia 3110 Classic?   I find that feature extremely useful.

    This seems to be a bug in version 3.17.x of the kernel (see https://bugs.archlinux.org/task/42353 ) that can be fixed by patching the source with a patch that is linked to in the bug report, or by downgrading to version 16.

  • "missing events" in storyline?

    I have upgraded to Mountain Lion (not sure if this is the trigger but seems around the same time) and now when opening my recent Final Cut Pro 10 project I see that:
    a) in Storyline the video graphics are missing and replaced by red "missing event" alerts
    b) the single video file they come from is missing from the Event Library event I created for it
    I tried re-assigning the video to the event (in Event Library) which worked, but the various video clips in the Storyline didn't pick it up obviously as it's source video.
    Any ideas?   How can I find out what the various clips in the Storyline (all bits and pieces from the one video file) require me to do to get things working for the project again?

    Typically this is due to a date problem with the photos or a sort problem with events
    Check the dates on the "missing" events - and check the event sort under the view meny ==> sort events
    If the events are there in photos they are there in events - you just are not finding them
    LN

  • I'm using a viewsonic 19" LCD monitor with a powermac 7100/66.  The only resolution available in the monitor control panel is 640x480.  The viewsonic gives me a message to use 1440x900.  The mac specs state it's capable of 1152x870 @ 8 bit. Help!

    I'm using a viewsonic 19" LCD monitor with a powermac 7100/66 running Mac OS 7.6.1.  The only resolution available in the monitor control panel is 640x480.  The viewsonic gives me a message to use 1440x900.  The mac specs state it's capable of 1152x870 @ 8 bit.  How can I get a higher resolution?

    For unsupported resolutions, one may need to see if there are any software
    solutions; maybe the minimum specs of the display are not met by an 8-bit
    color specification of the video card in the computer.
    Does the display support two kinds of connections, another one, plus VGA?
    Could be the display needs some other support for it to work. Drivers?
    VRAM? A different control panel and (third-party) software?
    The limits may vary due to the VRAM on the card. With enough there, and
    with a VGA connection (or supported converter to/from older Mac DB-15)
    and the video graphics card with minimal supported specs will show that.
    Been several years since I've run any PowerMac, & only used a variety of
    Apple CRT color displays with them. Most times, they were very adequate.
    A wider array of original choices appeared in the Displays control panel...
    So I suspect the lack of video support in the graphics card or VRAM, to be
    a player in this resolution limit you see in the control panel. A later CPU/GPU
    and better hardware, later Mac OS, offered greater support for newer driver
    along with better results.
    There may not be a workable upgrade to a different graphic video card for
    that old a vintage computer; or if there was one, to locate that now may be
    a next-to-impossible mission. Was there any hints in the web site for older
    Macs, the LowEndMac site, or others? Some are no longer current sites.
    In any event...
    Good luck & happy computing!

  • System Monitoring with Solution Manager Ehp1

    Hi,
    I'm Tomas Piqueres, and I'm working in a VAR SAP with Solution Manager.
    Recently, we installed Solution Manager Ehp1 and we are trying to configure it for System Monitoring. When I worked with Solution Manager SP17 I used to go to transaction RZ21 to add the system I wanted to monitoring and then put the SID and RFCs of the system.
    Now with Solution Manager Ehp1, when I create the system in transaction RZ21, first I have to set the Component Type to Be Monitored and then the SID, Message Server Logon Group, the client and user are set automatically, and the password I've set to user CSMREG.
    when I fill all the entries, I can see the RFCs used for the monitoring of the system. Those RFCs are set automatically:
    <SID>_RZ20_COLLECT
    <SID>_RZ20_ANALYZE
    I can't edit those RFCs, so I have to create it manually. I check that RFCs destination works fine and both pass the authorization test, so when I try to save the system at transaction RZ21, I see the following errors:
    <SID>_RZ20_COLLECT_123539Error when opening an RFC connection
    Error during remote call of SAL_MS_GET_LOCAL_MS_INFO function: Error when opening an RFC connection
    Error during remote call of SALC function: Error when opening an RFC connection
    Error during remote call of RFC1 function: Error when opening an RFC connection
    I've been looking for information about those errors and how to monitoring with Solution Manager Ehp1, but I haven't found anything usefull.
    Please, Could you help me?
    Thanks and regards,
    Tomas.

    Tomas,
    I need to configure EWA from my Solman system and I completed the steps (defining and creation of RFC destinations to the target systems from my Solman system).  I downloaded the lates ccmsagent file from the market place based my target system configurations.
    Herewith attaching the logs while I'm trying to check the profile parameter.
    tqaadm@saptqa01:/usr/sap/TQA/SYS/exe/run 5> sappfpar check pf=/usr/sap/TQA/SYS/profile/TQA_DVEBMGS30_saptqa01
    ================================================================================
    ==   Checking profile:     /usr/sap/TQA/SYS/profile/TQA_DVEBMGS30_saptqa01
    ================================================================================
    ***WARNING: Unexpected parameter: DIR_EPS =/usr/sap/trans/EPS/----
    ***WARNING: Unexpected parameter: SAPSECULIB =/usr/sap/TQA/SYS/exe/run/libsapsecu.o
    ***WARNING: Unexpected parameter: abap/buffersize_part1 =1200000
    ***WARNING: Unexpected parameter: auth/auth_number_in_userbuffer =5000
    ***WARNING: Unexpected parameter: dbs/io_buf_size =100000
    ***WARNING: Unexpected parameter: rsau/local/file =/usr/sap/TQA/DVEBMGS30/log/audit/audit_++++++++
    ***WARNING: Unexpected parameter: rsau/selector1/class =35
    ***WARNING: Unexpected parameter: rsau/selector1/severity =2
    ***WARNING: Unexpected parameter: rsdb/rclu/cachelimt =0
    ***ERROR: Size of shared memory pool 40 too small
    ================================================================
    SOLUTIONS: (1) Locate shared memory segments outside of pool 40
                   with parameters like: ipc/shm_psize_<key> =0
    SOLUTION: Increase size of shared memory pool 40
              with parameter: ipc/shm_psize_40 =1472000000
    Shared memory disposition overview
    ================================================================
    Shared memory pools
    Key:   10  Pool
                Size configured.....:   642000000 ( 612.3 MB)
                Size min. estimated.:   637597428 ( 608.1 MB)
                Advised Size........:   640000000 ( 610.4 MB)
    Key:   40  Pool for database buffers
                Size configured.....:  1048000000 ( 999.4 MB)
                Size min. estimated.:  1468229308 (1400.2 MB)
                Advised Size........:  1472000000 (1403.8 MB)
    Shared memories inside of pool 10
    Key:        1  Size:        2500 (   0.0 MB) System administration
    Key:        4  Size:      523648 (   0.5 MB) statistic area
    Key:        7  Size:       14838 (   0.0 MB) Update task administration
    Key:        8  Size:    67108964 (  64.0 MB) Paging buffer
    Key:        9  Size:   134217828 ( 128.0 MB) Roll buffer
    Key:       11  Size:      500000 (   0.5 MB) Factory calender buffer
    Key:       12  Size:     6000000 (   5.7 MB) TemSe Char-Code convert Buf.
    Key:       13  Size:   200500000 ( 191.2 MB) Alert Area
    Key:       16  Size:       22400 (   0.0 MB) Semaphore activity monitoring
    Key:       17  Size:     2672386 (   2.5 MB) Roll administration
    Key:       30  Size:       37888 (   0.0 MB) Taskhandler runtime admin.
    Key:       31  Size:     4806000 (   4.6 MB) Dispatcher request queue
    Key:       33  Size:    39936000 (  38.1 MB) Table buffer, part.buffering
    Key:       34  Size:    20480000 (  19.5 MB) Enqueue table
    Key:       51  Size:     3200000 (   3.1 MB) Extended memory admin.
    Key:       52  Size:       40000 (   0.0 MB) Message Server buffer
    Key:       54  Size:    20488192 (  19.5 MB) Export/Import buffer
    Key:       55  Size:        8192 (   0.0 MB) Spool local printer+joblist
    Key:       57  Size:     1048576 (   1.0 MB) Profilparameter in shared mem
    Key:       58  Size:        4096 (   0.0 MB) Enqueue ID for reset
    Key:       62  Size:    85983232 (  82.0 MB) Memory pipes
    Shared memories inside of pool 40
    Key:        2  Size:    31168040 (  29.7 MB) Disp. administration tables
    Key:        3  Size:   114048000 ( 108.8 MB) Disp. communication areas
    Key:        6  Size:  1064960000 (1015.6 MB) ABAP program buffer
    Key:       14  Size:    28600000 (  27.3 MB) Presentation buffer
    Key:       19  Size:    90000000 (  85.8 MB) Table-buffer
    Key:       42  Size:    13920992 (  13.3 MB) DB TTAB buffer
    Key:       43  Size:    43422392 (  41.4 MB) DB FTAB buffer
    Key:       44  Size:     8606392 (   8.2 MB) DB IREC buffer
    Key:       45  Size:     6558392 (   6.3 MB) DB short nametab buffer
    Key:       46  Size:       20480 (   0.0 MB) DB sync table
    Key:       47  Size:    13313024 (  12.7 MB) DB CUA buffer
    Key:       48  Size:      300000 (   0.3 MB) Number range buffer
    Key:       49  Size:     3309932 (   3.2 MB) Spool admin (SpoolWP+DiaWP)
    Shared memories outside of pools
    Key:       18  Size:     1792100 (   1.7 MB) Paging adminitration
    Key:       41  Size:    25010000 (  23.9 MB) DB statistics buffer
    Key:       63  Size:      409600 (   0.4 MB) ICMAN shared memory
    Key:       64  Size:     4202496 (   4.0 MB) Online Text Repository Buf.
    Key:       65  Size:     4202496 (   4.0 MB) Export/Import Shared Memory
    Key:     1002  Size:      400000 (   0.4 MB) Performance monitoring V01.0
    Key: 58900130  Size:        4096 (   0.0 MB) SCSA area
    Nr of operating system shared memory segments: 9
    Shared memory resource requirements estimated
    ================================================================
    Nr of shared memory descriptors required for
    Extended Memory Management (unnamed mapped file).: 64
    Total Nr of shared segments required.....:         73
    System-imposed number of shared memories.:       1000
    Shared memory segment size required min..: 1472000000 (1403.8 MB)
    System-imposed maximum segment size......: 35184372088832 (33554432.0 MB)
    Swap space requirements estimated
    ================================================
    Shared memory....................: 2050.4 MB
    ..in pool 10  608.1 MB,   99% used
    ..in pool 40  999.4 MB,  140% used !!
    ..not in pool:   34.4 MB
    Processes........................:  716.8 MB
    Extended Memory .................: 8192.0 MB
    Total, minimum requirement.......: 10959.2 MB
    Process local heaps, worst case..: 1907.3 MB
    Total, worst case requirement....: 12866.5 MB
    Errors detected..................:    1
    Warnings detected................:    9
    After checking the profile parameter I tried to run sapccm4x in /run directory but got the below error and I'm not able tomove further.
    Pls have a look at these two and let me know what could I do to proceed further.
    tqaadm@saptqa01:/usr/sap/TQA/SYS/exe/run 5> sapccm4x -R pf=/usr/sap/TQA/SYS/profile/TQA_DVEBMGS30_saptqa01
    INFO: CCMS agent sapccm4x working directory is /usr/sap/TQA/DVEBMGS30/log/sapccm4x
    INFO: CCMS agent sapccm4x config file is /usr/sap/TQA/DVEBMGS30/log/sapccm4x/csmconf
    INFO: Central Monitoring System is [SMP]. (found in config file)
          additional CENTRAL system y/[n] ?   :
    INFO: found ini file /usr/sap/TQA/DVEBMGS30/log/sapccm4x/sapccmsr.ini.
    INFO:
          CCMS version  20040229, 64 bit, multithreaded, Non-Unicode
          compiled at   Jun 28 2010
          systemid      324 (IBM RS/6000 with AIX)
          relno         6400
          patch text    patch collection 2010/1, OSS note 1304480
          patchno       335
    INFO Runtime:
          running on    saptqa01 AIX 3 5 00069A8FD600
          running with profile   /usr/sap/TQA/SYS/profile/TQA_DVEBMGS30_saptqa01
    INFO profile parameters:
          alert/MONI_SEGM_SIZE = 200000000
          alert/TRACE          = 1
          SAPSYSTEM            = 30
          SAPSYSTEMNAME        = TQA
          SAPLOCALHOST         = saptqa01
          DIR_CCMS             = /usr/sap/ccms
          DIR_LOGGING          = /usr/sap/TQA/DVEBMGS30/log
          DIR_PERF             = /usr/sap/tmp
    INFO:
          pid           4165682
    INFO: Attached to Shared Memory Key 13 (size 200141728) in pool 10
    INFO: Connected to Monitoring Segment [CCMS Monitoring Segment for application server saptqa01_TQA_30, created with version CCMS version 20040229, 64 bit single threaded, compiled at Oct  3 2008,  kernel 6400_20020600_254,  platform 324 (IBM RS/6000 with AIX)]
            segment status     ENABLED
            segment started at Tue Sep 14 09:35:56 2010
            segment version    20040229
    ERROR: Shared Memory misconfiguration ==> can not monitor SAP application server saptqa01_TQA_30
           Dispatcher Admin Shared Memory (Key 01) and CCMS Shared Memory (Key 13) both in pool 10.
           Please change configuration with profile parameters
               ipc/shm_psize_01 = -<different pool nr>
           xor
               ipc/shm_psize_13 = -<different pool nr>
    EXITING with code 1

  • Dual External Monitors with 15" MacBook Pro (Late 2011)

    I'm looking for suggestions for using dual external monitors with new MacBook Pro's.  The company I work for has started to puchase these for certain employees and we are looking for any good suggestions.
    It appears that the display/thunderbolt port should be able to support many devices but I have not seen any way to hook up multiple displays.  The idea is that these employees would be working with the macbook pro screen closed while in the office and use dual displays.  The only option that I can find is to use a usb device to output video to a second display.  I don't really like that because my experience with these devices is that they usally present a display lag and I know our graphic designers would never go for that.
    One employee suggested that he use the VGA adapter and then get a VGA splitter.  I'm not exacty certain that would work though. Wouldn't that just mirror the display on two screens instead of allowing an extended desktop?  Also it looks like expensive Apple displays have ports so that you can daisy chain thunderbolt devices out of those monitors but this company will not go for the cost of those displays.
    Am I missing anything?  Any suggestions would be helpful.
    Thanks!

    Look into the Matrox Dualhead2Go DP Edition. If it works with Thunderbolt Macs, it will support two identical 1920 x 1080 DVI monitors as one extended desktop. Verify with Matrox that it is Thunderbolt-compatible and will suit your purposes before ordering.

  • Viewing on external monitor with ADVC-100 and s video

    I am trying to view my canvas on a external monitor. I have a canopus ADVC-100 and i am using the firewire input and the s video as the output in the back. When I try to set it up and i select view all frames, but when i go to the video output menu it says my firewire device is missing. Any hints or tips on what i am doing wrong. I am using the s-video because the monitor only has a components input available, the RCA's are already occupied.

    Is the ADVC powered? When you connect firewire to the back of the unit, it gets powered by that connector, but the firewire jack on the front is only 4-pin and doesn't support power.
    If you have a 6-pin to 6-pin firewire cable, try connecting it to the back of the ADVC110 and then the front of the box should light up, indicating power.
    I'm having a similar issue. I can print to tape via the Canopus box, but I want to be able to drive a monitor with it just so I can have an NTSC monitor while I'm editing. I can't seem to make it work. Any ideas?

Maybe you are looking for

  • Create Cost Centre with out co code

    Hello spa gurus, can you tell me is it possible to create a cost center with out co code, looks like co code is mandatory in cost centre master data. I want to create a general cost centre where i can use on all the co codes. is this possible? if yes

  • Optimization build with Intel C++ 10.1

    I am trying to compile a Pro*C (C++) file with optimizations turned on (-O2). I am doing this with Oracle 10.2 and Intel C++ 10.1 on RHEL 5. My problem is that at link I get a duplicate library error (libirc_s.a (intel_stubs.o)) and libirc.a (ia32_me

  • Error when trying use the Maintenance Optimizer Transaction

    I have finally gotten through a major headache setting up a SM box, but now when I try to use the maintenance Optimizer, i get the following messages and it won't go any further. Information Procedure 8000000051 Saved Warning Status was reset by syst

  • Installed yosemite and my macbook is running slow

    My macbook pro is running really slow i have yosemite installed but I've had it for about a week and my computer just started running slow. It takes about 30-60 seconds to load anything or copy anything. I also ran etrecheck and these were the result

  • Why can't I hide the menu in Flash CS5 projector files?

    I'm making some executable / projector files in Flash CS5. Using CS4 I was able to stop the menu appearing by using flash.system.fscommand("showmenu", "false"); It doesn't work in CS5.  Is it a bug? Or a feature?  It's incredibly annoying - how do I