<!-- 
RSS generated by JIRA (9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66) at Thu Feb 08 03:45:50 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-17862] Unify stats reporting for log/profiler across CRUD operations</title>
                <link>https://jira.mongodb.org/browse/SERVER-17862</link>
                <project id="10000" key="SERVER">Core Server</project>
                    <description>&lt;div class=&quot;panel&quot; style=&quot;background-color: #EEEEEE;border-color: #ccc;border-width: 1px;&quot;&gt;&lt;div class=&quot;panelHeader&quot; style=&quot;border-bottom-width: 1px;border-bottom-color: #ccc;background-color: #6CB33F;&quot;&gt;&lt;b&gt;Issue Status as of Jun 08, 2016&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;panelContent&quot; style=&quot;background-color: #EEEEEE;&quot;&gt;
&lt;p&gt;&lt;b&gt;ISSUE SUMMARY&lt;/b&gt;&lt;br/&gt;
This project improves the existing MongoDB diagnostics facilities by ensuring that the same diagnostic information is available across all operations.&lt;/p&gt;

&lt;h5&gt;&lt;a name=&quot;Consistentreportingofmetricsacrossuseroperations&quot;&gt;&lt;/a&gt;Consistent reporting of metrics across user operations&lt;/h5&gt;

&lt;p&gt;All relevant metrics are supported for each command and operation (with a small list of exceptions below). These metrics are available in the slow diagnostic log, the profiler and db.currentOp().&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Operations included&lt;/b&gt;&lt;/p&gt;
&lt;ol&gt;
	&lt;li&gt;count&lt;/li&gt;
	&lt;li&gt;distinct&lt;/li&gt;
	&lt;li&gt;find (command + OP_QUERY)&lt;/li&gt;
	&lt;li&gt;findAndModify&lt;/li&gt;
	&lt;li&gt;getMore (command + OP_GET_MORE)&lt;/li&gt;
	&lt;li&gt;geoNear&lt;/li&gt;
	&lt;li&gt;group&lt;/li&gt;
	&lt;li&gt;mapReduce&lt;/li&gt;
	&lt;li&gt;delete (command + OP_DELETE)&lt;/li&gt;
	&lt;li&gt;update (command + OP_UPDATE)&lt;/li&gt;
&lt;/ol&gt;


&lt;p&gt;&lt;b&gt;Metrics covered&lt;/b&gt;&lt;/p&gt;
&lt;ol&gt;
	&lt;li&gt;keysExamined&lt;/li&gt;
	&lt;li&gt;docsExamined&lt;/li&gt;
	&lt;li&gt;reslen&lt;/li&gt;
	&lt;li&gt;nreturned&lt;/li&gt;
	&lt;li&gt;ntoreturn&lt;/li&gt;
	&lt;li&gt;batchSize&lt;/li&gt;
	&lt;li&gt;numYields&lt;/li&gt;
	&lt;li&gt;cursorExhausted&lt;/li&gt;
	&lt;li&gt;planSummary&lt;/li&gt;
	&lt;li&gt;cursorid&lt;/li&gt;
	&lt;li&gt;writeConflicts&lt;/li&gt;
	&lt;li&gt;hasSortStage&lt;/li&gt;
	&lt;li&gt;fromMultiPlanner&lt;/li&gt;
	&lt;li&gt;replanned&lt;/li&gt;
	&lt;li&gt;locks&lt;/li&gt;
	&lt;li&gt;protocol&lt;/li&gt;
	&lt;li&gt;millis&lt;/li&gt;
	&lt;li&gt;ninserted (or &apos;upsert&apos; for updates that result in an insert)&lt;/li&gt;
	&lt;li&gt;multi&lt;/li&gt;
	&lt;li&gt;nMatched&lt;/li&gt;
	&lt;li&gt;nModified&lt;/li&gt;
	&lt;li&gt;ndeleted&lt;/li&gt;
	&lt;li&gt;ntoskip&lt;/li&gt;
	&lt;li&gt;exhaust&lt;/li&gt;
	&lt;li&gt;nmoved&lt;/li&gt;
	&lt;li&gt;upsert&lt;/li&gt;
	&lt;li&gt;execStats&lt;/li&gt;
&lt;/ol&gt;


&lt;p&gt;&lt;b&gt;Exceptions&lt;/b&gt;&lt;/p&gt;
&lt;ol&gt;
	&lt;li&gt;execStats is only available in the profiler output. It is not available in the slow diagnostics log or db.currentOp().&lt;/li&gt;
	&lt;li&gt;execStats is not available for the &lt;tt&gt;aggregate&lt;/tt&gt; command.&lt;/li&gt;
&lt;/ol&gt;


&lt;h5&gt;&lt;a name=&quot;Introductionofnewmetrics&quot;&gt;&lt;/a&gt;Introduction of new metrics&lt;/h5&gt;

&lt;p&gt;This project introduces 2 new metrics, &apos;keysInserted&apos; and &apos;keysDeleted&apos;. These metrics report the number of index keys inserted and deleted for all write operations. This replaces &apos;keyUpdates&apos; which was not previously covered across write commands and is potentially misleading. &lt;/p&gt;

&lt;h5&gt;&lt;a name=&quot;Removedmetrics&quot;&gt;&lt;/a&gt;Removed metrics&lt;/h5&gt;

&lt;p&gt;This project removes the following metrics:&lt;/p&gt;
&lt;ol&gt;
	&lt;li&gt;fastmod: replaced by &apos;keysInserted&apos;, &apos;keysDeleted&apos; and &apos;nmoved&apos;, which in combination can be used to derive this metric in a more granular, easy to understand manner.&lt;/li&gt;
	&lt;li&gt;keyUpdates: replaced by &apos;keysInserted&apos; and &apos;keysDeleted&apos;.&lt;/li&gt;
	&lt;li&gt;idhack:  replaced by &apos;planSummary&apos;, which will report when the IDHACK stage is used.&lt;/li&gt;
	&lt;li&gt;moved:  obsoleted by the &apos;nmoved&apos; metric.&lt;/li&gt;
&lt;/ol&gt;


&lt;p&gt;See &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-23272&quot; title=&quot;Remove misleading/not useful diagnostic metrics&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-23272&quot;&gt;&lt;del&gt;SERVER-23272&lt;/del&gt;&lt;/a&gt; for the rationale behind this removal.&lt;/p&gt;

&lt;h5&gt;&lt;a name=&quot;Deprecatedmetrics&quot;&gt;&lt;/a&gt;Deprecated metrics&lt;/h5&gt;
&lt;ol&gt;
	&lt;li&gt;fastmodinsert:  not considered generally useful for performance analysis.&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;h6&gt;&lt;a name=&quot;Originaldescription&quot;&gt;&lt;/a&gt;Original description&lt;/h6&gt;

&lt;h5&gt;&lt;a name=&quot;Goals&quot;&gt;&lt;/a&gt;Goals&lt;/h5&gt;
&lt;ul&gt;
	&lt;li&gt;Improve existing diagnostics by ensuring that the same information is available across operations (e.g. we don&apos;t report planSummary for all operations).&lt;/li&gt;
	&lt;li&gt;In other words, expose existing debug information more consistently.&lt;/li&gt;
&lt;/ul&gt;


&lt;h5&gt;&lt;a name=&quot;Nongoals&quot;&gt;&lt;/a&gt;Non-goals&lt;/h5&gt;
&lt;ul&gt;
	&lt;li&gt;Collect additional debug information which we don&apos;t already collect.&lt;/li&gt;
	&lt;li&gt;Major infrastructural changes to CurOp, the profiler, or the slow query log.&lt;/li&gt;
&lt;/ul&gt;


&lt;h5&gt;&lt;a name=&quot;How&quot;&gt;&lt;/a&gt;How&lt;/h5&gt;

&lt;p&gt;Part of the work for &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-10448&quot; title=&quot;Revamp explain() formatting&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-10448&quot;&gt;&lt;del&gt;SERVER-10448&lt;/del&gt;&lt;/a&gt; (a.k.a. &quot;new explain&quot;), completed for version 3.0, was to add a suite of functions capable of pulling summary statistics and debug information out of PlanExecutor (see &lt;a href=&quot;https://github.com/mongodb/mongo/blob/r3.1.1/src/mongo/db/query/explain.h&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;explain.h&lt;/a&gt;). However, we use these functions in only a few places instead of uniformly populating CurOp with the available debug information. Using explain functionality to add the same stats to CurOp everywhere should be an easy win for diagnosability.&lt;/p&gt;

&lt;h5&gt;&lt;a name=&quot;Details&quot;&gt;&lt;/a&gt;Details&lt;/h5&gt;

&lt;p&gt;This includes work for the following operations:&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;count&lt;/li&gt;
	&lt;li&gt;delete&lt;/li&gt;
	&lt;li&gt;distinct&lt;/li&gt;
	&lt;li&gt;find (OP_QUERY and command)&lt;/li&gt;
	&lt;li&gt;findAndModify&lt;/li&gt;
	&lt;li&gt;geoNear&lt;/li&gt;
	&lt;li&gt;getMore (OP_GET_MORE and command)&lt;/li&gt;
	&lt;li&gt;group&lt;/li&gt;
	&lt;li&gt;update&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;The following fields will be added to CurOp for every operation once the operation completes:&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;docsExamined&lt;/li&gt;
	&lt;li&gt;hasBlockingSort&lt;/li&gt;
	&lt;li&gt;idhack&lt;/li&gt;
	&lt;li&gt;keysExamined&lt;/li&gt;
	&lt;li&gt;nReturned&lt;/li&gt;
	&lt;li&gt;planSummary&lt;/li&gt;
&lt;/ul&gt;
</description>
                <environment></environment>
        <key id="193721">SERVER-17862</key>
            <summary>Unify stats reporting for log/profiler across CRUD operations</summary>
                <type id="4" iconUrl="https://jira.mongodb.org/secure/viewavatar?size=xsmall&amp;avatarId=14710&amp;avatarType=issuetype">Improvement</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="james.wahlin@mongodb.com">James Wahlin</assignee>
                                    <reporter username="ian@mongodb.com">Ian Whalen</reporter>
                        <labels>
                    </labels>
                <created>Thu, 2 Apr 2015 16:34:15 +0000</created>
                <updated>Tue, 18 Jul 2017 18:33:03 +0000</updated>
                            <resolved>Thu, 9 Jun 2016 17:16:52 +0000</resolved>
                                                    <fixVersion>3.3.9</fixVersion>
                                    <component>Diagnostics</component>
                    <component>Logging</component>
                                        <votes>2</votes>
                                    <watches>12</watches>
                                                                                                                <comments>
                            <comment id="1207774" author="xgen-internal-githook" created="Fri, 18 Mar 2016 12:56:07 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;jameswahlin&apos;, u&apos;name&apos;: u&apos;James Wahlin&apos;, u&apos;email&apos;: u&apos;james.wahlin@10gen.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-17862&quot; title=&quot;Unify stats reporting for log/profiler across CRUD operations&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-17862&quot;&gt;&lt;del&gt;SERVER-17862&lt;/del&gt;&lt;/a&gt; Log keyUpdates &amp;amp; writeConflicts only when meaningful&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/7e8d5536f8a94fc5fd74b3b2027a9d045929117c&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/7e8d5536f8a94fc5fd74b3b2027a9d045929117c&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="940890" author="rassi@10gen.com" created="Mon, 15 Jun 2015 19:24:53 +0000"  >&lt;p&gt;And, &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-8912&quot; title=&quot;Metric &amp;quot;document.scanned&amp;quot; is not the same as nscannedObjects (from explain)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-8912&quot;&gt;&lt;del&gt;SERVER-8912&lt;/del&gt;&lt;/a&gt; as well.&lt;/p&gt;</comment>
                            <comment id="905374" author="rassi@10gen.com" created="Tue, 5 May 2015 14:51:10 +0000"  >&lt;p&gt;I suggest we pull &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-3129&quot; title=&quot;Include projection in the slow query logs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-3129&quot;&gt;&lt;del&gt;SERVER-3129&lt;/del&gt;&lt;/a&gt; into this ticket. &#160;Linking as related.&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10011">
                    <name>Depends</name>
                                            <outwardlinks description="depends on">
                                                        </outwardlinks>
                                                                <inwardlinks description="is depended on by">
                                                        </inwardlinks>
                                    </issuelinktype>
                            <issuelinktype id="10320">
                    <name>Documented</name>
                                                                <inwardlinks description="is documented by">
                                        <issuelink>
            <issuekey id="405697">DOCS-10545</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                            <issuelinktype id="10010">
                    <name>Duplicate</name>
                                                                <inwardlinks description="is duplicated by">
                                        <issuelink>
            <issuekey id="309541">SERVER-25657</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="19715">SERVER-3444</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                            <issuelinktype id="10012">
                    <name>Related</name>
                                            <outwardlinks description="related to">
                                        <issuelink>
            <issuekey id="243368">SERVER-21855</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="67770">SERVER-8912</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="157934">SERVER-15239</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="157935">SERVER-15240</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="168469">SERVER-16071</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="270906">SERVER-23009</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="273960">SERVER-23255</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="271774">SERVER-23081</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="155688">SERVER-15102</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="117522">SERVER-13034</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="278505">SERVER-23620</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="281560">SERVER-23861</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="17395">SERVER-3129</issuekey>
        </issuelink>
                            </outwardlinks>
                                                                <inwardlinks description="is related to">
                                        <issuelink>
            <issuekey id="259760">SERVER-22250</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="259773">SERVER-22252</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="275168">SERVER-23357</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="128585">SERVER-13419</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="21126">SERVER-3638</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="145179">SERVER-14432</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="38508">SERVER-5830</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="32618">SERVER-5271</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="38584">SERVER-5834</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="58955">SERVER-7903</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="170639">SERVER-16265</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="178682">SERVER-16847</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="184153">SERVER-17275</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="112888">SERVER-12823</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="239491">SERVER-21470</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                    </issuelinks>
                <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                <customfield id="customfield_10050" key="com.atlassian.jira.toolkit:comments">
                        <customfieldname># Replies</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>3.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_18555" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname># of Sprints</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>2.0</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                            <customfield id="customfield_10011" key="com.atlassian.jira.plugin.system.customfieldtypes:radiobuttons">
                        <customfieldname>Backwards Compatibility</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10012"><![CDATA[Major Change]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                            <customfield id="customfield_10055" key="com.atlassian.jira.ext.charting:firstresponsedate">
                        <customfieldname>Date of 1st Reply</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Mon, 13 Apr 2015 19:27:13 +0000</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10052" key="com.atlassian.jira.toolkit:dayslastcommented">
                        <customfieldname>Days since reply</customfieldname>
                        <customfieldvalues>
                                        7 years, 47 weeks, 5 days ago
    
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_18254" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Dependencies</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue><![CDATA[<s><a href='https://jira.mongodb.org/browse/WRITING-1596'>WRITING-1596</a></s>]]></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_10857" key="com.pyxis.greenhopper.jira:gh-epic-link">
                        <customfieldname>Epic Link</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>PM-278</customfieldvalue>
                        </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>emily.hall</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_11151" key="com.atlassian.jira.toolkit:LastCommentDate">
                        <customfieldname>Last public comment date</customfieldname>
                        <customfieldvalues>
                            7 years, 47 weeks, 5 days ago
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                    <customfield id="customfield_10051" key="com.atlassian.jira.toolkit:participants">
                        <customfieldname>Participants</customfieldname>
                        <customfieldvalues>
                                        <customfieldvalue>xgen-internal-githook</customfieldvalue>
            <customfieldvalue>ian@mongodb.com</customfieldvalue>
            <customfieldvalue>james.wahlin@mongodb.com</customfieldvalue>
            <customfieldvalue>rassi</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_14254" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Product Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hrl99j:</customfieldvalue>

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

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10558" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>9223372036854775807</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_10557" key="com.pyxis.greenhopper.jira:gh-sprint">
                        <customfieldname>Sprint</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue id="1084">Query 15 (06/03/16)</customfieldvalue>
    <customfieldvalue id="1088">Query 16 (06/24/16)</customfieldvalue>

                        </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_11861" key="com.atlassian.jira.plugin.system.customfieldtypes:radiobuttons">
                        <customfieldname>User Summary</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="11858"><![CDATA[Completed]]></customfieldvalue>

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

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