Access Oracle GoldenGate JAgent XML from browser
There are many different ways of monitoirng Oracle GoldenGate; I have posted about many of these in earlier blog posts. Additionally, I have talked about the different ways of monitoring Oracle GoldenGate at a few conferences as well. (The slides can be found on my slideshare site if wanted). In both my blog and presentations I highlight many different approaches; yet I forgot one that I think is really cool! This one was shown to me by an Oracle Product Manager before Oracle Open World 2014 back in October (yes, I’m just now getting around to writing about it).
This approach is using the Oracle GoldenGate Manager (port) to view a user friendly version of the XML that is passed by the Oracle Monitor Agent (JAgent) to monitoring tools like Oracle Enterprise Manager or Oracle GoldenGate Director. This approach will not work with older versions of the JAgent.
Note: The Oracle Monitor Agent (JAgent) used in this approach is version 12.1.3.0. It can be found here.
Note: There is a license requirement to use this approach since this is part of the Management Pack for Oracle GoldenGate. Contact you local sales rep for more info.
After the Oracle Monitor Agent (JAgent) is configured for your environment, the XML can be accessed via any web browser. Within my test enviornment, I have servers named OEL and FRED. The URLs needed to to view this cool feature are:
OEL:
http://oel.acme.com:15000/groups
FRED:
http://fred.acme.com:15000/groups
As you can see, by using the port number (15000) of the Manager process, I can directly tap into the information being feed to the management tools for monitoring. The “groups” directory places you at the top level of the monitoring stack. By clicking on a process groups, this will take you down into the process group and show additional items being monitored by the JAgent.
In this example, you are looking at the next level down for the process EXT on OEL. At this point, you can see what is available: monitoring points, messages, status changes and associated files for the extract process.
OEL:
http://oel.acme.com:15000/groups/EXT
Digging further into the stack, you can see what files are associated with the process. (This is an easy way to identify parameter files without having to go directly to the command line).
OEL:
http://oel.acme.com:15000/groups/EXT/files
OEL:
http://oel.acme.com:15000/groups/EXT/files/dirprm
As you can see, the new Oracle Monitor Agent (JAgent) provides you another way of viewing your Oracle GoldenGate environment without needing direct access to the server. Although this is a cool way of looking at a Oracle GoldenGate environment, it does not replace traditionall monitoring approaches.
Cool Tip: The OS tool “curl” can be used to dump similar XML output to a file (showed to me by the product team).
$ curl --silent http://oel.acme.com:15000/registry | xmllint --format - <?xml version="1.0"?> <?xml-stylesheet type="text/xsl" href="/style/registry.xsl"?> <registry xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://oel.acme.com:15000/schema/registry.xsd"> <process name="PMP" type="4" status="3"/> <process name="EXT" type="2" mode="1" status="3"/> <process name="MGR" type="1" status="3"/> </registry>
In my opinion, many of the complants about the original version of the JAgent have been addressed with the latest release of the Oracle Monitor Agent (JAgent). Give it a try!
Enjoy!
about.me: http://about.me/dbasolved
Current Oracle Certs
Bobby Curtis
I’m Bobby Curtis and I’m just your normal average guy who has been working in the technology field for awhile (started when I was 18 with the US Army). The goal of this blog has changed a bit over the years. Initially, it was a general blog where I wrote thoughts down. Then it changed to focus on the Oracle Database, Oracle Enterprise Manager, and eventually Oracle GoldenGate.
If you want to follow me on a more timely manner, I can be followed on twitter at @dbasolved or on LinkedIn under “Bobby Curtis MBA”.