<!-- 
RSS generated by JIRA (9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66) at Thu Feb 08 02:55:22 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-857] add get_timestamp method to ObjectId representation in the server&apos;s embedded interpreter </title>
                <link>https://jira.mongodb.org/browse/SERVER-857</link>
                <project id="10000" key="SERVER">Core Server</project>
                    <description>&lt;p&gt;See emails below for an example:&lt;/p&gt;

&lt;p&gt;I don&apos;t think the ObjectId representation in the server&apos;s embedded&lt;br/&gt;
interpreter has a method to extract the timestamp currently. Could&lt;br/&gt;
open a separate JIRA for that as well.&lt;/p&gt;
&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;Hide quoted text -&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;On Wed, Mar 31, 2010 at 3:19 PM, Andrew Burrows &amp;lt;burrowsa@gmail.com&amp;gt; wrote:&lt;br/&gt;
&amp;gt; Yes thank you. That makes perfect sense now. What about grouping by time&lt;br/&gt;
&amp;gt; stamp is that possible?&lt;br/&gt;
&amp;gt;&lt;br/&gt;
&amp;gt; On 31 March 2010 20:04, Michael Dirolf &amp;lt;mike@10gen.com&amp;gt; wrote:&lt;br/&gt;
&amp;gt;&amp;gt;&lt;br/&gt;
&amp;gt;&amp;gt; You would do it the way you did in your example:&lt;br/&gt;
&amp;gt;&amp;gt;&lt;br/&gt;
&amp;gt;&amp;gt; {&quot;_id&quot;: {&quot;$gt&quot;: dummy_id}}&lt;br/&gt;
&amp;gt;&amp;gt;&lt;br/&gt;
&amp;gt;&amp;gt; Where dummy_id has been manually created from a timestamp or created&lt;br/&gt;
&amp;gt;&amp;gt; using a helper if we add one. Make more sense?&lt;br/&gt;
&amp;gt;&amp;gt;&lt;br/&gt;
&amp;gt;&amp;gt; On Wed, Mar 31, 2010 at 2:58 PM, Andrew Burrows &amp;lt;burrowsa@gmail.com&amp;gt;&lt;br/&gt;
&amp;gt;&amp;gt; wrote:&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt; sorry, I don&apos;t understand you. If I could create a dummy_id (or you add&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt; the&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt; function you mentioned) how would I do the query?&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt; On 31 March 2010 19:13, Michael Dirolf &amp;lt;mike@10gen.com&amp;gt; wrote:&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt;&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; Right now you&apos;d need to manually create a dummy _id value w/ the right&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; timestamp and use that to sort on. We could probably add an&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; ObjectId.from_datetime() method to make that a bit nicer. Mind filing&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; a JIRA for this?&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt;&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; On Wed, Mar 31, 2010 at 2:04 PM, Andrew Burrows &amp;lt;burrowsa@gmail.com&amp;gt;&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; wrote:&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Hi&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; I&apos;m currently developing an application on top of mongo. At the&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; moment&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; I have a time stamp field in my documents which allows me to query&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; documents created in the last 24 hours and do a group by where I&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; group&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; into 5 minute buckets. I&apos;ve just been reading that the _id field&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; contains a time stamp and thought I could just use this and drop my&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; extra field. Is this possible? How to I refer to the time stamp part&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; of _id in my query?&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Here is some example python of the kind of thing I&apos;m doing:&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; # just a function to get me the time as seconds since epoc&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; def ts(dt):&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;  return int(mktime(dt.timetuple()))&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; # here is an insert&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; db.box.insert(dict(ts=ts(datetime.now()),  x=randint(0, 500),&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; y=randint(0, 100)))&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; # here is a query&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; db.box.group(key       = &apos;function(obj){ return &lt;/p&gt;
{ ts : 300 *
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; parseInt(obj.ts/300) }
&lt;p&gt;; }&apos;,&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;                      condition = dict(ts=&lt;/p&gt;
{&apos;$gt&apos;: ts(datetime.now() -
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; timedelta(hours=24)) }
&lt;p&gt;),&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;                      initial   =  dict( xmax=0, ysum=0, count=0 ),&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;                      reduce    = &apos;function(obj,prev) &lt;/p&gt;
{ prev.xmax =
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Math.max(prev.xmax, obj.x); prev.ysum += obj.y; prev.count++; }&apos;,&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;                      finalize  = &apos;function(out){ out.yavg =
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; out.ysum / out.count }&apos;)&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Ideally I&apos;d replace it with something like:&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; # here is an insert - look no ts&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; db.box.insert(dict(x=randint(0, 500), y=randint(0, 100)))&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; # here is a query&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; db.box.group(key       = &apos;function(obj){ return { ts : 300 *
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; parseInt(obj._id.timestamp/300) }; }&apos;,&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;                      condition = {&apos;_id.timestamp&apos; : {&apos;$gt&apos;:&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; ts(datetime.now() - timedelta(hours=24)) }},&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;                      initial   =  dict( xmax=0, ysum=0, count=0 ),&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;                      reduce    = &apos;function(obj,prev) { prev.xmax =&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Math.max(prev.xmax, obj.x); prev.ysum += obj.y; prev.count++; }
&lt;p&gt;&apos;,&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;                      finalize  = &apos;function(out)&lt;/p&gt;
{ out.yavg =
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; out.ysum / out.count }
&lt;p&gt;&apos;)&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Is this kind of thing possible? what property/method do I need to use&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; on _id?&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Thanks&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Andy&lt;br/&gt;
&amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&lt;/p&gt;</description>
                <environment></environment>
        <key id="11664">SERVER-857</key>
            <summary>add get_timestamp method to ObjectId representation in the server&apos;s embedded interpreter </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="aaron">Aaron Staple</assignee>
                                    <reporter username="burrowsa@gmail.com">Andrew Burrows</reporter>
                        <labels>
                    </labels>
                <created>Wed, 31 Mar 2010 15:46:01 +0000</created>
                <updated>Tue, 12 Jul 2016 00:28:46 +0000</updated>
                            <resolved>Tue, 15 Jun 2010 21:29:03 +0000</resolved>
                                                    <fixVersion>1.5.3</fixVersion>
                                    <component>Querying</component>
                                        <votes>4</votes>
                                    <watches>4</watches>
                                                                                                                <comments>
                            <comment id="14816" author="auto" created="Wed, 16 Jun 2010 04:21:20 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;login&apos;: &apos;astaple&apos;, &apos;name&apos;: &apos;Aaron&apos;, &apos;email&apos;: &apos;aaron@10gen.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-857&quot; title=&quot;add get_timestamp method to ObjectId representation in the server&amp;#39;s embedded interpreter &quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-857&quot;&gt;&lt;del&gt;SERVER-857&lt;/del&gt;&lt;/a&gt; test&lt;br/&gt;
&lt;a href=&quot;http://github.com/mongodb/mongo/commit/bbc51275c0ecf6e9bbfb11a167355a572a42b9c3&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://github.com/mongodb/mongo/commit/bbc51275c0ecf6e9bbfb11a167355a572a42b9c3&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="14806" author="auto" created="Tue, 15 Jun 2010 21:29:29 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;login&apos;: &apos;erh&apos;, &apos;name&apos;: &apos;Eliot Horowitz&apos;, &apos;email&apos;: &apos;eliot@10gen.com&apos;}
&lt;p&gt;Message: more tests for &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-857&quot; title=&quot;add get_timestamp method to ObjectId representation in the server&amp;#39;s embedded interpreter &quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-857&quot;&gt;&lt;del&gt;SERVER-857&lt;/del&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href=&quot;http://github.com/mongodb/mongo/commit/c5d975b2b52fb093922c2ee5f4661f82b3ffa2cc&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://github.com/mongodb/mongo/commit/c5d975b2b52fb093922c2ee5f4661f82b3ffa2cc&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="14805" author="auto" created="Tue, 15 Jun 2010 21:19:03 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;login&apos;: &apos;&apos;, &apos;name&apos;: &apos;Van Nguyen&apos;, &apos;email&apos;: &apos;van@metamoki.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-857&quot; title=&quot;add get_timestamp method to ObjectId representation in the server&amp;#39;s embedded interpreter &quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-857&quot;&gt;&lt;del&gt;SERVER-857&lt;/del&gt;&lt;/a&gt; shell ObjectId.getTimestamp() support&lt;br/&gt;
&lt;a href=&quot;http://github.com/mongodb/mongo/commit/0b780fdcda3f6a7fd1093e610f43b9356e8f680a&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://github.com/mongodb/mongo/commit/0b780fdcda3f6a7fd1093e610f43b9356e8f680a&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="14739" author="van" created="Mon, 14 Jun 2010 14:37:36 +0000"  >&lt;p&gt;From within a js shell map function, it is easy to get the date:&lt;/p&gt;

&lt;p&gt;var d = new Date(parseInt(this._id.toString().slice(0,8), 16)*1000),&lt;br/&gt;
      date_str = &lt;span class=&quot;error&quot;&gt;&amp;#91;d.getMonth(), d.getDate(), d.getFullYear()&amp;#93;&lt;/span&gt;.join(&quot;/&quot;);&lt;/p&gt;

&lt;p&gt;date_str is also easy to customize so you can use it however you need it.  If you want this functionality outside of a mapReduce setting, just replace &quot;this._id&quot; with code to access a document&apos;s _id field.  &lt;/p&gt;</comment>
                            <comment id="14730" author="zippy1981" created="Mon, 14 Jun 2010 12:30:12 +0000"  >&lt;p&gt;I was looking for a way to do this from the mongo shell this morning. It would be really useful.&lt;/p&gt;

&lt;p&gt;It would be similarly beneficial to be able to get timestamp and mac address for a UUID from the shell, but thats a separate ticket..&lt;/p&gt;</comment>
                            <comment id="13650" author="redbeard0531" created="Wed, 14 Apr 2010 19:57:36 +0000"  >&lt;p&gt;Aaron, could you add this to the JS API?&lt;/p&gt;</comment>
                            <comment id="13649" author="auto" created="Wed, 14 Apr 2010 19:56:24 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;login&apos;: &apos;RedBeard0531&apos;, &apos;name&apos;: &apos;Mathias Stearn&apos;, &apos;email&apos;: &apos;mathias@10gen.com&apos;}
&lt;p&gt;Message: ObjectID from Date_t &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-857&quot; title=&quot;add get_timestamp method to ObjectId representation in the server&amp;#39;s embedded interpreter &quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-857&quot;&gt;&lt;del&gt;SERVER-857&lt;/del&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href=&quot;http://github.com/mongodb/mongo/commit/7e25fdb8e8fd9e080e62a6a86c1804699f3119f7&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://github.com/mongodb/mongo/commit/7e25fdb8e8fd9e080e62a6a86c1804699f3119f7&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="13648" author="auto" created="Wed, 14 Apr 2010 19:56:23 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;login&apos;: &apos;RedBeard0531&apos;, &apos;name&apos;: &apos;Mathias Stearn&apos;, &apos;email&apos;: &apos;mathias@10gen.com&apos;}
&lt;p&gt;Message: Convert OID to datetimes &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-857&quot; title=&quot;add get_timestamp method to ObjectId representation in the server&amp;#39;s embedded interpreter &quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-857&quot;&gt;&lt;del&gt;SERVER-857&lt;/del&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href=&quot;http://github.com/mongodb/mongo/commit/0cae84589ef3c20a8c2ffbf09a5e1fe27ebbb3e9&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://github.com/mongodb/mongo/commit/0cae84589ef3c20a8c2ffbf09a5e1fe27ebbb3e9&lt;/a&gt;&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>8.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <customfield id="customfield_10055" key="com.atlassian.jira.ext.charting:firstresponsedate">
                        <customfieldname>Date of 1st Reply</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Wed, 14 Apr 2010 19:56:23 +0000</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10052" key="com.atlassian.jira.toolkit:dayslastcommented">
                        <customfieldname>Days since reply</customfieldname>
                        <customfieldvalues>
                                        13 years, 36 weeks 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>ramon.fernandez@mongodb.com</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_11151" key="com.atlassian.jira.toolkit:LastCommentDate">
                        <customfieldname>Last public comment date</customfieldname>
                        <customfieldvalues>
                            13 years, 36 weeks 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>aaron</customfieldvalue>
            <customfieldvalue>burrowsa@gmail.com</customfieldvalue>
            <customfieldvalue>auto</customfieldvalue>
            <customfieldvalue>zippy1981</customfieldvalue>
            <customfieldvalue>mathias@mongodb.com</customfieldvalue>
            <customfieldvalue>van</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_14254" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Product Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hrpplz:</customfieldvalue>

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

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10558" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>22619</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|ht0jjb:</customfieldvalue>

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