Apr 3, 2018

Getting Groovy with Mongo Monitoring

MongoDB does something interesting that we aren’t used to in the Java world – if you use the MongoClient object, it manages the pooling for you on the server side. This is different than how most databases connect, which leaves pooling up to the application or the Java server.

Anyway, I was working with a Grails application that used MongoClient and the Mongos kept running out of memory. Therefore tickets were opened, words were said, and fingers were pointed. In the past, they had used Grails connection pooling for Mongo, ran into these problems, and switched to a single MongoClient. They said it was happening again but we developers needed evidence to show that (or, disprove it).

Doing some research showed that the Java Driver for Mongo has some good JMX endpoints to monitor. But the problem was that we needed to track these values over a long period of time – more than just what VisualVM would show. And I didn’t have access to the server but they did have the Grails console running inside the applications.

So I wrote a simple Groovy script that queries the Mongo’s JMX values every second and prints it out in something resembling a CSV file. I wrote this to run inside a Grails console, but there is no Grails in it – it’s pure Groovy. You may have to make minor changes to get it to run on the command line. Anyway, here is the Gist:

https://gist.github.com/squarepegsys/faff5dff8666ffddaa06cd0ea14752d8

About the Author

Object Partners profile.
Leave a Reply

Your email address will not be published.

Related Blog Posts
Natively Compiled Java on Google App Engine
Google App Engine is a platform-as-a-service product that is marketed as a way to get your applications into the cloud without necessarily knowing all of the infrastructure bits and pieces to do so. Google App […]
Building Better Data Visualization Experiences: Part 2 of 2
If you don't have a Ph.D. in data science, the raw data might be difficult to comprehend. This is where data visualization comes in.
Unleashing Feature Flags onto Kafka Consumers
Feature flags are a tool to strategically enable or disable functionality at runtime. They are often used to drive different user experiences but can also be useful in real-time data systems. In this post, we’ll […]
A security model for developers
Software security is more important than ever, but developing secure applications is more confusing than ever. TLS, mTLS, RBAC, SAML, OAUTH, OWASP, GDPR, SASL, RSA, JWT, cookie, attack vector, DDoS, firewall, VPN, security groups, exploit, […]