<!-- 
RSS generated by JIRA (9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66) at Thu Feb 08 03:01:32 UTC 2024

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary append 'field=key&field=summary' to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>MongoDB Jira</title>
    <link>https://jira.mongodb.org</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-us</language>    <build-info>
        <version>9.7.1</version>
        <build-number>970001</build-number>
        <build-date>13-04-2023</build-date>
    </build-info>


<item>
            <title>[SERVER-2911] native Ganglia support for monitoring MongoDB metrics</title>
                <link>https://jira.mongodb.org/browse/SERVER-2911</link>
                <project id="10000" key="SERVER">Core Server</project>
                    <description>&lt;p&gt;We&apos;re using MongoDBs in the several production environments (thanks for the product!). Of course, we need to monitor many metrics which mongostat can output.&lt;/p&gt;

&lt;p&gt;There&apos;re some way to do this, but basically need to write the plugin for each monitoring system.&lt;/p&gt;

&lt;p&gt;If MongoDB supports &lt;b&gt;recommended&lt;/b&gt; monitoring tool, and has the functionality to output the metrics natively, that would be nice for system administrators.&lt;/p&gt;

&lt;p&gt;Especially we&apos;re happy if it supports Ganglia, because we use it to monitor Hadoop systems co-located with MongoDB. Also, it has libganglia, and would be easy from C/C++ applications.&lt;/p&gt;</description>
                <environment></environment>
        <key id="15516">SERVER-2911</key>
            <summary>native Ganglia support for monitoring MongoDB metrics</summary>
                <type id="2" iconUrl="https://jira.mongodb.org/secure/viewavatar?size=xsmall&amp;avatarId=14711&amp;avatarType=issuetype">New Feature</type>
                                            <priority id="3" iconUrl="https://jira.mongodb.org/images/icons/priorities/major.svg">Major - P3</priority>
                        <status id="6" iconUrl="https://jira.mongodb.org/images/icons/statuses/closed.png" description="The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.">Closed</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="9">Done</resolution>
                                        <assignee username="backlog-server-platform">DO NOT USE - Backlog - Platform Team</assignee>
                                    <reporter username="kzk_mover">Kazuki Ohta</reporter>
                        <labels>
                    </labels>
                <created>Wed, 6 Apr 2011 18:30:47 +0000</created>
                <updated>Fri, 30 Jun 2017 16:29:42 +0000</updated>
                            <resolved>Fri, 30 Jun 2017 16:29:42 +0000</resolved>
                                                                    <component>Tools</component>
                                        <votes>0</votes>
                                    <watches>4</watches>
                                                                                                                <comments>
                            <comment id="1611572" author="acm" created="Fri, 30 Jun 2017 16:29:42 +0000"  >&lt;p&gt;Since the time this ticket was filed, MongoDB has greatly expanded the monitoring capabilities associated with the server, both through FTDC, SNMP, and our Ops Manager suite of products. Please feel free to re-open this ticket if none of those options will work for you, and we can discuss what more we would need to add to those facilities to meet your needs.&lt;/p&gt;</comment>
                            <comment id="31334" author="jthakrar" created="Fri, 6 May 2011 05:39:13 +0000"  >&lt;p&gt;I have developed a comprehensive MongoDB monitoring solution based on Zabbix (&lt;a href=&quot;http://www.zabbix.com&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://www.zabbix.com&lt;/a&gt;). Both Zabbix and my monitoring solution are open source. You can find details about it at &lt;a href=&quot;http://code.google.com/p/mikoomi/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://code.google.com/p/mikoomi/&lt;/a&gt;. In fact I am looking for volunteers to help with testing/feedback and can help people set it up.&lt;/p&gt;</comment>
                            <comment id="28048" author="kzk_mover" created="Thu, 7 Apr 2011 02:47:31 +0000"  >&lt;p&gt;Actually don&apos;t know C-based system. But hadoop/cassandra system (tends to be dozens of nodes) supports it.&lt;/p&gt;</comment>
                            <comment id="28046" author="eliot" created="Thu, 7 Apr 2011 02:35:27 +0000"  >&lt;p&gt;Do you know of any servers that do this natively?  mysql/apache/etc?&lt;/p&gt;</comment>
                            <comment id="28045" author="kzk_mover" created="Thu, 7 Apr 2011 02:33:53 +0000"  >&lt;p&gt;There&apos;s a command called &quot;gmetric&quot;. calling this cmd sends the custom metric into local &quot;gmond&quot; daemon. Then it sends the data into &quot;gmetad&quot; daemon, which actually collects all the data in the cluster.&lt;/p&gt;

&lt;p&gt;The approach below calls &quot;gmetric&quot; command, in the cron script. The metrics are retrieved by mongo serverStatus().&lt;/p&gt;

&lt;ul&gt;
	&lt;li&gt;&lt;a href=&quot;https://github.com/quiiver/mongodb-ganglia&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/quiiver/mongodb-ganglia&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;However, it&apos;s more convenient for mongodb to send the metric to local gmond. It can be done by using &quot;libganglia&quot; (actually SunRPC).&lt;/p&gt;

&lt;p&gt;gmetric sourcecode will be helpful.&lt;/p&gt;

&lt;ul&gt;
	&lt;li&gt;&lt;a href=&quot;http://sourceforge.net/apps/trac/ganglia/browser/trunk/monitor-core/gmetric/gmetric.c#L61&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://sourceforge.net/apps/trac/ganglia/browser/trunk/monitor-core/gmetric/gmetric.c#L61&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</comment>
                            <comment id="28010" author="eliot" created="Wed, 6 Apr 2011 20:22:07 +0000"  >&lt;p&gt;Can you link to exactly what the server would have to expose?&lt;br/&gt;
Is there a standard rest interface or the like?&lt;/p&gt;</comment>
                    </comments>
                    <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                <customfield id="customfield_10050" key="com.atlassian.jira.toolkit:comments">
                        <customfieldname># Replies</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>6.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <customfield id="customfield_10055" key="com.atlassian.jira.ext.charting:firstresponsedate">
                        <customfieldname>Date of 1st Reply</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Wed, 6 Apr 2011 20:22:07 +0000</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10052" key="com.atlassian.jira.toolkit:dayslastcommented">
                        <customfieldname>Days since reply</customfieldname>
                        <customfieldvalues>
                                        6 years, 32 weeks, 5 days ago
    
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_18254" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Dependencies</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue><![CDATA[]]></customfieldvalue>


                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_15850" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10057" key="com.atlassian.jira.toolkit:lastusercommented">
                        <customfieldname>Last comment by Customer</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>true</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10056" key="com.atlassian.jira.toolkit:lastupdaterorcommenter">
                        <customfieldname>Last commenter</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>andrew.morrow@mongodb.com</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_11151" key="com.atlassian.jira.toolkit:LastCommentDate">
                        <customfieldname>Last public comment date</customfieldname>
                        <customfieldvalues>
                            6 years, 32 weeks, 5 days ago
                        </customfieldvalues>
                    </customfield>
                                                                                                                        <customfield id="customfield_10000" key="com.atlassian.jira.plugin.system.customfieldtypes:radiobuttons">
                        <customfieldname>Old_Backport</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10000"><![CDATA[No]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_10051" key="com.atlassian.jira.toolkit:participants">
                        <customfieldname>Participants</customfieldname>
                        <customfieldvalues>
                                        <customfieldvalue>andrew.morrow@mongodb.com</customfieldvalue>
            <customfieldvalue>backlog-server-platform</customfieldvalue>
            <customfieldvalue>eliot</customfieldvalue>
            <customfieldvalue>jthakrar</customfieldvalue>
            <customfieldvalue>kzk_mover</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_14254" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Product Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hrp1qv:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_12550" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>2|hrfzef:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10558" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>6162</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_23361" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Requested By</customfieldname>
                        <customfieldvalues>
                                

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <customfield id="customfield_10053" key="com.atlassian.jira.ext.charting:timeinstatus">
                        <customfieldname>Time In Status</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_22870" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Triagers</customfieldname>
                        <customfieldvalues>
                                

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                    <customfield id="customfield_14350" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>serverRank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hszw6f:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                    </customfields>
    </item>
</channel>
</rss>