How to monitor RAC services and nodeapps in Grid Control

Hi,
I have created a number of RAC service names such as GL on a 2-node RAC and would like to use Grid control 10.2.0.2 to monitor the availability of those services and nodeapps. I was not able to find anything in Grid Control that would allow me to configure that. What are being monitored now are the listeners, database instances and nodes. Would it be possible to monitor more than just the RAC listeners, instances and nodes?
thanks.

I don´t think that there is an out-of-the-box metric. However, CRS monitors your services and Grid Control monitors CRS errors. If you need more granular monitoring, I have 2 suggestions:
1) user callouts:
[http://download.oracle.com/docs/cd/B28359_01/rac.111/b28254/hafeats.htm#RACAD7133]
2) extending oracle enterprise manager
I have written a paper on how to extend oem at [http://www.ora-solutions.net/web/papers/]
"Extending Oracle Enterprise Manager to collect HP-UX glance data"
You can follow the instructions to build a new target type called "RAC_SERVICE" and add your serivces as targets, e.g. S_BATCH, S_ONLINE, S_HR.
Best regards,
Martin Decker
www.ora-solutions.net
Edited by: mdecker on Jan 2, 2009 10:57 AM
Edited by: mdecker on Jan 2, 2009 10:59 AM

Similar Messages

  • How to Monitor RAC "Health" and how to Administer

    Now, we are using the RAC that we have setup... i am managing now 11.2.0.3 RAC on windows and 10.2.0.5 RAC on OEL...
    Can I ask, what are the things that needs to be checked in these setup...like what are the logs that I need to check.. how do i monitor well the Clusters...
    its like what are the things that I have to constantly monitor in RAC..sort of RAC "health" monitoring....
    thanks!

    Hi
    There are lots of options...
    Enterprise Manager Database Control/Enterprise Manager Grid Control
    CRSCTL Utility Reference
    http://docs.oracle.com/cd/E11882_01/rac.112/e16794/crsref.htm
    Database Health Reports
    AWR
    ADDM
    ASH
    Logs
    AlertLogs/ClusterLogs
    Cheers

  • Script fro monitoring RAC services when they failover or relocate to other

    when SERVICE relocate/failover to NODE1? how to catch this.? Do we have any monitoring for Services and where they are running?

    Hi,
    yes the Event Monitor of the clusterware will notify this.
    And you can react on these information (on the server) with the help of a FAN Callout:
    http://docs.oracle.com/cd/E11882_01/rac.112/e16795/hafeats.htm#RACAD7133
    You even could react on client side. In this case you would use ONS (Oracle Notification Service).
    http://www.oracle.com/technetwork/products/clustering/overview/awm11gr2-130711.pdf
    Regards
    Sebastian

  • Monitoring RAC services in Windows

    I have a 2 node RAC database installed on Win 2003. I've had the Database service go down a few times kind of "magically". I'm looking into the kind of magic that caused this (suspect it was a storage issue), but in the mean-time I need to send out an alert to someone if this goes down. Does anyone have a good way/tool to monitor OS services and send out an e-mail when one goes down?

    Aren't you using grid control?
    http://download.oracle.com/docs/cd/B19306_01/server.102/b25159/monitor.htm#i1006661

  • How can i include Services and Bindung in a generated WSDL file?

    Hi,
    i what to use a generated wsdl file from an erp system, to build a web service client with WSDL2Java (org.apache.axis.wsdl.WSDL2Java).
    I noticed, that services an bindings are missing, also a policy is included.
    How can i include services and bindings in the wsdl and exclude the policy?
    Thanks!

    well, I assume you have SOAMANAGER.
    choose your service & "Apply Selection" (very useless button btw)
    select a binding in the dropdown box or create on if you do not have one yet
    Click button "Show WSDL options" (actually they do not really look like buttons in WD; call it yellow blot)
    Some extra config area is thrown onto your screen (without any sense for usability or design); Change the radio button for WSDL format from "WS policy" to "Standard"; make sure the first radio button group is on "True" for monolithic
    Now click the link (why is this a link and no blot?) called "Display selected bindings WSDL URL"
    an extra text field is again thrown onto your screen somwhere between the dropdown and the WSDL option config area containing an URL (get out your glasses if you don't see the sub-10pt-letters)
    hope it helps,
    anton

  • How to monitor Alert file large in EM Grid

    Hello,
    In Enterprise Manager 9 we used to monitor Alert File Large.
    I am not able find this in Grid Control.
    Can anybody tell me how to monitor this metric in OEM 10 GRid?
    Best regards,
    Jvries

    You must to select the host target and metric and policy issues
    Select all metrics and search File or Directory size MB
    You can to add the file when you want to monitor the size and
    you must to enable a response action when the critical theshold appear
    The response action must be a shell script like this
    #/bin/ksh
    #if you want backup
    cp /directory/file.log /backup_destination/file.log.bak
    #for clean the file and his size was empth
    /directory/file.logRemember that you want enable the credentials for host and the owner of agent had rights of read and write in the location of file
    Regards

  • Urgent :  how to select the rows in the ALV Grid Control

    How to select the rows in the ALV Grid control,
    I am facing the situation where i need to select the row/rows in the Grid control and then to lock the entries,
    If anyone have the solution please help me out
    <b>Its very Urgent</b>

    Hi Bharath,
    Go through this hope u can understand.
    SEL_MODE. Selection mode, determines how rows can be selected. Can have the following values:
    A Multiple columns, multiple rows with selection buttons.
    B Simple selection, listbox, Single row/column
    C Multiple rows without buttons
    D Multiple rows with buttons and select all ICON
    Setting and getting selected rows (Columns) and read line contents
    You can read which rows of the grid that has been selected, and dynamic select rows of the grid using methods get_selected_rows and set_selected_rows. There are similar methods for columns.
    Note that the grid table always has the rows in the same sequence as displayed in the grid, thus you can use the index of the selected row(s) to read the information in the rows from the table. In the examples below the grid table is named gi_sflight.
    Data declaration:
    DATA:
    Internal table for indexes of selected rows
    gi_index_rows TYPE lvc_t_row,
    Information about 1 row
    g_selected_row LIKE lvc_s_row.
    Example 1: Reading index of selected row(s) and using it to read the grid table
      CALL METHOD go_grid->get_selected_rows
        IMPORTING
          et_index_rows = gi_index_rows.
      DESCRIBE TABLE gi_index_rows LINES l_lines.
      IF l_lines = 0.
        CALL FUNCTION 'POPUP_TO_DISPLAY_TEXT'
             EXPORTING
                  textline1 = 'You must choose a valid line'.
        EXIT.
      ENDIF.
      LOOP AT gi_index_rows INTO g_selected_row.
         READ TABLE gi_sflight INDEX g_selected_row-index INTO g_wa_sflight.
        ENDIF.
      ENDLOOP.
    Example 2: Set selected row(s).
      DESCRIBE TABLE gi_index_rows LINES l_lines.
      IF l_lines > 0.
        CALL METHOD go_grid->set_selected_rows
            exporting
              it_index_rows = gi_index_rows.
      ENDIF.
    Reward points if helpful.
    Thanks
    Naveen khan

  • Whats the functional difference between dbconole and using the Grid control.

    I know this may seem like a strange question, but I was wondering if I only have one instance on my server, would benefit would i gain if I installed and configured the grid control
    over the dbconsole that comes with the 11gr2?
    I know the Grid control can discover many databases, but what else can it do that the dbconsole cannot?
    thanks!

    Hi,
    Indeed good question.
    It depends on installation type you selected. But are responsible for user administration in terms of creating, deleting, updating and role assignment tasks to users and groups.
    --CUA is meant for ABAP Installation. CUA is responsible for entire landscape user administration works with RFC connection talking to all ABAP systems
    --UME is meant for Java installations, plus UME is responsible for handling communication between ABAP users and java users.
    UME
    For more details see below links all advantages and disadvantages of both systems and comparisons deliberately.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/d2/3e3842b23d690de10000000a155106/frameset.htm
    Thanks,
    Amit Lal
    P.S Please don't forget to reward pts.

  • How to monitor Radius services on ACS 5.4

    Hi All,
    I want to monitor  Radius services of ACS 5.4,  In case of failure any radius service on ACS.
    ACS should send alert to Syslogs  or email notification
    Is there any way to monitor Radius services ? Anyone have any idea how to monitor.
    Regards.

    Hi Narinder,
       I dont think so there is any particular way you can do that, Because ACS 5.x doesnt have any particluar Radius service.
    The services which are available and can be viewed through CLI and GUI are following:
    Database
    Management (ACS management subsystem)
    Ntpd
    Runtime (ACS runtime subsystem)
    View-alertmanager
    View-collector
    View-database
    View-jobmanager
    View-logprocessor
    htt    https://www.cisco.com/c/en/us/td/docs/net_mgmt/cisco_secure_access_control_system/5-ususer/guide/acsuserguide/viewer_sys_ops.html#pgfId-1052845
    Cheers 
    Minakshi

  • How to monitor Hyperion services

    Hi Experts,
    Some of the services stop working/not responding randomly which we come to know when user inform us.
    We find this is due to Hyperion services (like workspace and Planning) stop working.
    Is there any workaround (or better way to monitor) so that user continue access all features without any trouble?
    Normally we restart Hyperion services and everything again working normally.
    Regards
    Kumar

    Hi,
    Try this link below. It describes how to get alerted when a service stops.
    http://www.eggheadcafe.com/software/aspnet/31303233/you-will-need-to-create-a-bat-file-to-do-the-emailing-and-in-the-properties.aspx
    Cheers,
    Alp

  • How to start GSd service and ASM  (ADVM Driver Not found)

    Dear fellow
    Can any tell me how to start the GSD service and install ASM ADVM Driver.
    I can try with srvctl utility.

    Dear zekeriya
    I also check it but the gsd service is not running I try to start it with srvctl utility but did not start.
    fedb16# ./srvctl status nodeapps -n fedb16
    -n <node_name> option has been deprecated.
    VIP fedb16-vip is enabled
    VIP fedb16-vip is running on node: fedb16
    Network is enabled
    Network is running on node: fedb16
    GSD is enabled
    GSD is not running on node: fedb16
    ONS is enabled
    ONS daemon is running on node: fedb16
    eONS is enabled
    eONS daemon is running on node: fedb16
    fedb16#

  • How to monitor / shutdown processes and users?

    Hi,
    As you can see in my previous post i'm totally new to Arch and fairly new to Linux...
    Here's one thing that bothers me: I don't know how to keep track of all running processes (and end them if needed... I guess you need to 'kill' them but you first need to know their name, right...) and logged on users (even though that's only me, heh...)
    How can you do that in Linux? (something like task manager or another admin tool - or a command line version)
    Another thing... I think a wiki page 'securing the default Arch install' would be helpful...
    (flame me if there already is one, but I didn't find it )
    greetings,
    d.
    (I think Arch is going to be the one Linux distro to break the record of 1 month installation on my pc... woohoo!!!)

    Kern wrote:
    processes man ps
    Now only 2 questions are left: how to monitor logins, and how to secure Arch Wink
    Arch Wink, is this a subrelease of Arch? if so i've never heard of it. 
    I really don't know how that ended up in my post especially because I use semicolon, bracket instead of colon, wink, colon for my smiley...
    but as relates to securing Arch, of course I mean against network based attacks. The way you would try to secure Windows. I know how to own windows computers when I have physical access to them, and I guess it's the same thing with Linux pc's... but I want to feel secure that nobody from the internet is going to appropriate my box for illegal or other things, on those few occasions that i'm not behind a router/firewall (which I am not sure I trust either... it's a Linksys wireless/wired router with integrated firewall capability. How secure is that? I don't know!)
    Is there no way to deny all other pc's access to this pc? It's a laptop, not a server, so nobody has business accessing it remotely anyway... Actually, this is one of the reasons I had an eye on openBSD secure as hell...
    EDIT: since we're at it... another thing I don't find is how I can find out at what speed my cpu is running... is it going down to 600 MHz when Idle or isn't it? etc... That stuff is pretty easy to see in windows... must be feasible at least in Linux hey

  • How to lauch 'Toshiba services and Options'?

    When i try to Launch TOSHIBA Services and Options it launches a notepad file titled "index".
    How can i resolve this problem?
    Many thanks
    Robert Dawson

    Hi
    Seems you are a Satellite Pro A120 owner. Am I right?? I checked you another thread ;)
    Anyway, back to this posting. Im a little bit surprised and I wonder what Toshiba tools you mean????
    The TOSHIBA Services and Options are not known to me!!!
    Where did you find these tools or from where do you want to launch it???
    You can find most of the Toshiba tools and utilities in the Toshiba Assist.
    This is a reservoir for all preinstalled Tosh tools.
    But as far as I know there is nothing like TOSHIBA Services and Options

  • How to monitor Http Request and Response when load testing is going on

    Hi,
    can any one please let me know how to monitor http request sent and response received for each virtual ID when a load test is going on ?
    Thanks,

    You used to be able to see what the VUs "see" using the "VU Monitor" (it would only do a simple rendering of the HTML but it served it's purpose). However this was replaced (in v12 I think?) by the "VU Log". While this offers simlilar functionality, I have had problems getting to see the same level of detail. You may need to use the "debug" modes. Also check the "Content" tab within the VU Logs (it is the closest equivalent to the HTML you would see in the responses in the old VU Monitor).

  • How to change the height and width of a control?

    Dear all,
    is there anyway to change the height and width of a control?
     In the property nodes, i am just able to read the bound values but cudnt write to it.
    How can i set the bound values for a control?
    Thanks,
    Ritesh

    Not all controls can be sized this way. For example to change the vertical size of a simple numeric, you would need to change the font size.
    LabVIEW Champion . Do more with less code and in less time .

Maybe you are looking for

  • File information and folders

    How can I view the information on the file - name, size and type?  Metadata would be too much to ask for, I guess.  Also, can I upload folders of photos and keep that structure or do we have to upload files individually?

  • Temporary files created by SBO

    SBO 6.5 SP:01 EF:07 with the SDK UI/DI creates files in the temp folder ...\Local Settings\Temp\SM_OBS_DLL The subfolder "650097" contains multiple copies of a dll (2.4 MB), like "OBSdll080904070408.Dll" Another subfolder called "GUI" contains LRF fi

  • CreateJS fall back - graceful degradation

    I have just installed the CreateJS plug-in for Flash CS6 and I am wondering how you can include a fallback to a static GIF or JPG if they are using a browser that dosent support HTML5. Is there some javascript that someone can recomend... Thank you.

  • Address bar has disappeared

    Can't find address bar

  • HOW DO YOU STOP A DOWNLOAD IN A TAB?

    While enquiring about the same product from different sites, say, I decide on one site before all others have completed downloading their info. However, to ensure I do not cancel/lose all the sites being investigated, I desire to stop them downloadin