<!-- 
RSS generated by JIRA (9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66) at Thu Feb 08 03:29:41 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-12816] Support dates before 1970 on Windows</title>
                <link>https://jira.mongodb.org/browse/SERVER-12816</link>
                <project id="10000" key="SERVER">Core Server</project>
                    <description>&lt;p&gt;Several users have reported issues on Stack Overflow with &quot;gmtime failed&quot; errors when dealing with dates before 1970 on Windows environments. Additionally, it was stated that there wasn&apos;t an existing JIRA issue to track the problem, so I wanted to create this.&lt;/p&gt;

&lt;p&gt;See:&lt;/p&gt;

&lt;ul&gt;
	&lt;li&gt;&lt;a href=&quot;http://stackoverflow.com/questions/13903687&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://stackoverflow.com/questions/13903687&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;http://stackoverflow.com/questions/21869602&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://stackoverflow.com/questions/21869602&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
                <environment></environment>
        <key id="112671">SERVER-12816</key>
            <summary>Support dates before 1970 on Windows</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="derick">Derick Rethans</assignee>
                                    <reporter username="jmikola@mongodb.com">Jeremy Mikola</reporter>
                        <labels>
                            <label>Windows</label>
                            <label>community-team</label>
                    </labels>
                <created>Fri, 21 Feb 2014 03:49:47 +0000</created>
                <updated>Wed, 6 Dec 2017 21:16:08 +0000</updated>
                            <resolved>Tue, 15 Aug 2017 14:45:56 +0000</resolved>
                                    <version>2.4.9</version>
                                    <fixVersion>3.5.11</fixVersion>
                                    <component>Internal Code</component>
                                        <votes>7</votes>
                                    <watches>16</watches>
                                                                                                                <comments>
                            <comment id="1630953" author="derick" created="Tue, 25 Jul 2017 10:43:17 +0000"  >&lt;p&gt;I believe this got fixed through &lt;a href=&quot;https://github.com/mongodb/mongo/commit/9822df6e71b0c5793676f9358e5d212c103c19a7&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/9822df6e71b0c5793676f9358e5d212c103c19a7&lt;/a&gt; as part of &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-28611&quot; title=&quot;Add the tzExpression argument to the date extraction functions&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-28611&quot;&gt;&lt;del&gt;SERVER-28611&lt;/del&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Although it does look like &lt;a href=&quot;https://jira.mongodb.org/secure/ViewProfile.jspa?name=charlie.swanson&quot; class=&quot;user-hover&quot; rel=&quot;charlie.swanson&quot;&gt;charlie.swanson&lt;/a&gt;&apos;s comment at &lt;a href=&quot;https://github.com/mongodb/mongo/commit/9822df6e71b0c5793676f9358e5d212c103c19a7#diff-95abc574b79f05301d8807add70d6961R60&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/9822df6e71b0c5793676f9358e5d212c103c19a7#diff-95abc574b79f05301d8807add70d6961R60&lt;/a&gt; is no longer correct as coerceToTM is gone totally.&lt;/p&gt;</comment>
                            <comment id="957030" author="joefeser" created="Thu, 2 Jul 2015 18:05:20 +0000"  >&lt;p&gt;This bug still exists in v3.0.3 on Windows 64 Bit.&lt;/p&gt;

&lt;p&gt;Why is this not a priority to fix?&lt;/p&gt;

&lt;p&gt;&amp;gt; db.user.aggregate( [ { $project: { month: {$month : &quot;$dateOfBirth&quot;}  }} ] )&lt;br/&gt;
assert: command failed: &lt;/p&gt;
{
        &quot;errmsg&quot; : &quot;exception: gmtime failed - your system doesn&apos;t support dates before 1970&quot;,
        &quot;code&quot; : 16422,
        &quot;ok&quot; : 0
}
&lt;p&gt; : aggregate failed&lt;br/&gt;
Error: command failed: &lt;/p&gt;
{
        &quot;errmsg&quot; : &quot;exception: gmtime failed - your system doesn&apos;t support dates before 1970&quot;,
        &quot;code&quot; : 16422,
        &quot;ok&quot; : 0
}
&lt;p&gt; : aggregate failed&lt;br/&gt;
    at Error (&amp;lt;anonymous&amp;gt;)&lt;br/&gt;
    at doassert (src/mongo/shell/assert.js:11:14)&lt;br/&gt;
    at Function.assert.commandWorked (src/mongo/shell/assert.js:254:5)&lt;br/&gt;
    at DBCollection.aggregate (src/mongo/shell/collection.js:1278:12)&lt;br/&gt;
    at (shell):1:9&lt;br/&gt;
2015-07-02T13:59:58.373-0400 E QUERY    Error: command failed: &lt;/p&gt;
{
        &quot;errmsg&quot; : &quot;exception: gmtime failed - your system doesn&apos;t support dates before 1970&quot;,
        &quot;code&quot; : 16422,
        &quot;ok&quot; : 0
}
&lt;p&gt; : aggregate failed&lt;br/&gt;
    at Error (&amp;lt;anonymous&amp;gt;)&lt;br/&gt;
    at doassert (src/mongo/shell/assert.js:11:14)&lt;br/&gt;
    at Function.assert.commandWorked (src/mongo/shell/assert.js:254:5)&lt;br/&gt;
    at DBCollection.aggregate (src/mongo/shell/collection.js:1278:12)&lt;br/&gt;
    at (shell):1:9 at src/mongo/shell/assert.js:13&lt;br/&gt;
&amp;gt;&lt;/p&gt;</comment>
                            <comment id="801849" author="mimkorn" created="Sat, 10 Jan 2015 21:26:36 +0000"  >&lt;p&gt;This is happening to me too. I do have a Windows machine, but I do not even have dates that would reach under 1970. All that is necessary is to have a date like this: 1970-01-01 00:00:00.000Z &lt;br/&gt;
It does not fail, when I use roboMongo to execute the query, but does happen when I use NetBeans to run a code that executes it with mongo driver.&lt;/p&gt;

&lt;p&gt;The query is &lt;/p&gt;
&lt;p/&gt;
&lt;div id=&quot;syntaxplugin&quot; class=&quot;syntaxplugin&quot; style=&quot;border: 1px dashed #bbb; border-radius: 5px !important; overflow: auto; max-height: 30em;&quot;&gt;
&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; width=&quot;100%&quot; style=&quot;font-size: 1em; line-height: 1.4em !important; font-weight: normal; font-style: normal; color: black;&quot;&gt;
		&lt;thead&gt;
			&lt;tr id=&quot;syntaxplugin_title&quot;&gt;
			&lt;td bgcolor=&quot;#f5f5f5&quot; style=&quot;font-family: Arial,sans-serif; color: #333; border-bottom: 1px solid #bbb; background-color: #f5f5f5 !important; font-weight: bold; line-height: 1em;&quot; &gt;
				&lt;p style=&quot;margin: 5px 10px; padding: 0;&quot;&gt;Query&lt;/p&gt;
			&lt;/td&gt;
		&lt;/tr&gt;
			&lt;/thead&gt;
		&lt;tbody &gt;
				&lt;tr id=&quot;syntaxplugin_code_and_gutter&quot;&gt;
						&lt;td  style=&quot; line-height: 1.4em !important; padding: 0em; vertical-align: top;&quot;&gt;
					&lt;pre style=&quot;font-size: 1em; margin: 0 10px;  margin-top: 10px;   margin-bottom: 10px;  width: auto; padding: 0;&quot;&gt;&lt;span style=&quot;color: black; font-family: &apos;Consolas&apos;, &apos;Bitstream Vera Sans Mono&apos;, &apos;Courier New&apos;, Courier, monospace !important;&quot;&gt;db.record.aggregate([{ &quot;$match&quot; : { &quot;creationDate&quot; : { &quot;$exists&quot; : true} , &quot;recordType&quot; : { &quot;$exists&quot; : true}}}, { &quot;$project&quot; : { &quot;_id&quot; : 0 , &quot;osyear0&quot; : { &quot;$year&quot; : &quot;$creationDate&quot;} , &quot;osdayOfYear0&quot; : { &quot;$dayOfYear&quot; : &quot;$creationDate&quot;} , &quot;os1&quot; : &quot;$recordType&quot;}}, { &quot;$group&quot; : { &quot;_id&quot; : { &quot;osyear0&quot; : &quot;$osyear0&quot; , &quot;osdayOfYear0&quot; : &quot;$osdayOfYear0&quot; , &quot;os1&quot; : &quot;$os1&quot;} , &quot;count&quot; : { &quot;$sum&quot; : 1}}}])&lt;/span&gt;&lt;/pre&gt;
			&lt;/td&gt;
		&lt;/tr&gt;
			&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;p/&gt;
&lt;p&gt;The same through code returns the error. Exception in thread &quot;main&quot; com.mongodb.CommandFailureException: &lt;/p&gt;
{ &quot;serverUsed&quot; : &quot;localhost:27017&quot; , &quot;errmsg&quot; : &quot;exception: gmtime failed - your system doesn&apos;t support dates before 1970&quot; , &quot;code&quot; : 16422 , &quot;ok&quot; : 0.0}</comment>
                            <comment id="597329" author="kev_bite" created="Tue, 27 May 2014 10:57:56 +0000"  >&lt;p&gt;Reproduction Steps for mongoexport.exe (CSV):&lt;br/&gt;
Setup:&lt;br/&gt;
Windows 7 Pro - Service Pack 1 (x64)&lt;br/&gt;
MongoDB Version 6.0.0&lt;br/&gt;
&amp;gt; version()&lt;br/&gt;
2.6.0&lt;br/&gt;
&amp;gt; use test&lt;br/&gt;
switched to db test&lt;br/&gt;
&amp;gt; db.testCol.save(&lt;/p&gt;
{firstName: &quot;Weeble&quot;, lastName: &quot;Bob&quot;, dob: new Date(&quot;October 13, 1965&quot;)}
&lt;p&gt;)&lt;br/&gt;
WriteResult(&lt;/p&gt;
{ &quot;nInserted&quot; : 1 }
&lt;p&gt;)&lt;/p&gt;

&lt;p&gt;c:\mongodb\bin&amp;gt;mongoexport.exe -d test -c testCol -f dob --csv -o output.csv&lt;br/&gt;
connected to: 127.0.0.1&lt;br/&gt;
2014-05-27T11:57:07.246+0100 Assertion failure (long long)millis &amp;gt;= 0 src\mongo\util\time_support.cpp 627&lt;br/&gt;
2014-05-27T11:57:07.273+0100 mongoexport.exe    mongo::parseNumberFromStringWithBase&amp;lt;unsigned char&amp;gt;+0x71ca83&lt;br/&gt;
2014-05-27T11:57:07.273+0100 mongoexport.exe    mongo::parseNumberFromStringWithBase&amp;lt;unsigned char&amp;gt;+0x6c764c&lt;br/&gt;
2014-05-27T11:57:07.274+0100 mongoexport.exe    mongo::parseNumberFromStringWithBase&amp;lt;unsigned char&amp;gt;+0x6b373a&lt;br/&gt;
2014-05-27T11:57:07.277+0100 mongoexport.exe    mongo::parseNumberFromStringWithBase&amp;lt;unsigned char&amp;gt;+0x71f555&lt;br/&gt;
2014-05-27T11:57:07.280+0100 mongoexport.exe    mongo::parseNumberFromStringWithBase&amp;lt;unsigned char&amp;gt;+0x7201dd&lt;br/&gt;
2014-05-27T11:57:07.283+0100 mongoexport.exe    mongo::parseNumberFromStringWithBase&amp;lt;unsigned char&amp;gt;+0x7203e9&lt;br/&gt;
2014-05-27T11:57:07.287+0100 mongoexport.exe    mongo::parseNumberFromStringWithBase&amp;lt;unsigned char&amp;gt;+0xae25ac&lt;br/&gt;
2014-05-27T11:57:07.289+0100 mongoexport.exe    mongo::parseNumberFromStringWithBase&amp;lt;unsigned char&amp;gt;+0xae3591&lt;br/&gt;
2014-05-27T11:57:07.292+0100 mongoexport.exe    mongo::parseNumberFromStringWithBase&amp;lt;unsigned char&amp;gt;+0x6ad0b3&lt;br/&gt;
2014-05-27T11:57:07.294+0100 mongoexport.exe    mongo::parseNumberFromStringWithBase&amp;lt;unsigned char&amp;gt;+0x6ad19b&lt;br/&gt;
2014-05-27T11:57:07.297+0100 mongoexport.exe    mongo::parseNumberFromStringWithBase&amp;lt;unsigned char&amp;gt;+0xb185a3&lt;br/&gt;
2014-05-27T11:57:07.301+0100 kernel32.dll       BaseThreadInitThunk+0xd&lt;br/&gt;
2014-05-27T11:57:07.303+0100&lt;br/&gt;
assertion: 0 assertion src\mongo\util\time_support.cpp:627&lt;/p&gt;</comment>
                            <comment id="597270" author="kev_bite" created="Tue, 27 May 2014 09:05:23 +0000"  >&lt;p&gt;Reproduction Steps for aggregation framework:&lt;br/&gt;
Setup:&lt;br/&gt;
Windows 7 Pro - Service Pack 1 (x64)&lt;br/&gt;
MongoDB Version 6.0.0&lt;/p&gt;

&lt;p&gt;&amp;gt; version()&lt;br/&gt;
2.6.0&lt;br/&gt;
&amp;gt; use test&lt;br/&gt;
switched to db test&lt;br/&gt;
&amp;gt; db.testCol.save(&lt;/p&gt;
{firstName: &quot;Weeble&quot;, lastName: &quot;Bob&quot;, dob: new Date(&quot;October 13, 1965&quot;)}
&lt;p&gt;)&lt;br/&gt;
WriteResult(&lt;/p&gt;
{ &quot;nInserted&quot; : 1 }
&lt;p&gt;)&lt;/p&gt;

&lt;p&gt;&amp;gt; db.testCol.aggregate( { $project : { dobYear : {$year : &quot;$dob&quot;}, dobMonth : {$month : &quot;$dob&quot;} }} )&lt;/p&gt;

&lt;p&gt;assert: command failed: {&lt;br/&gt;
        &quot;errmsg&quot; : &quot;exception: gmtime failed - your system doesn&apos;t support dates before 1970&quot;,&lt;br/&gt;
        &quot;code&quot; : 16422,&lt;br/&gt;
        &quot;ok&quot; : 0&lt;br/&gt;
} : aggregate failed&lt;br/&gt;
Error: command failed: {&lt;br/&gt;
        &quot;errmsg&quot; : &quot;exception: gmtime failed - your system doesn&apos;t support dates before 1970&quot;,&lt;br/&gt;
        &quot;code&quot; : 16422,&lt;br/&gt;
        &quot;ok&quot; : 0&lt;br/&gt;
} : aggregate failed&lt;br/&gt;
    at Error (&amp;lt;anonymous&amp;gt;)&lt;br/&gt;
    at doassert (src/mongo/shell/assert.js:11:14)&lt;br/&gt;
    at Function.assert.commandWorked (src/mongo/shell/assert.js:244:5)&lt;br/&gt;
    at DBCollection.aggregate (src/mongo/shell/collection.js:1149:12)&lt;br/&gt;
    at (shell):1:12&lt;br/&gt;
2014-05-27T10:02:14.364+0100 Error: command failed: {&lt;br/&gt;
        &quot;errmsg&quot; : &quot;exception: gmtime failed - your system doesn&apos;t support dates before 1970&quot;,&lt;br/&gt;
        &quot;code&quot; : 16422,&lt;br/&gt;
        &quot;ok&quot; : 0&lt;br/&gt;
} : aggregate failed at src/mongo/shell/assert.js:13&lt;/p&gt;


</comment>
                            <comment id="502856" author="jmikola@gmail.com" created="Fri, 21 Feb 2014 03:52:44 +0000"  >&lt;p&gt;According to &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-11254&quot; title=&quot;Check return value of time library functions in time_support.cpp&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-11254&quot;&gt;&lt;del&gt;SERVER-11254&lt;/del&gt;&lt;/a&gt;, this may not be limited to the aggregation framework. In fact, the aggregation framework may just be one of the few places where we are checking return values for errors and raising exceptions. Feel free to adjust the server component as necessary.&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10320">
                    <name>Documented</name>
                                                                <inwardlinks description="is documented by">
                                        <issuelink>
            <issuekey id="417230">DOCS-10687</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                            <issuelinktype id="10010">
                    <name>Duplicate</name>
                                                                <inwardlinks description="is duplicated by">
                                        <issuelink>
            <issuekey id="94878">SERVER-11273</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                            <issuelinktype id="10012">
                    <name>Related</name>
                                                                <inwardlinks description="is related to">
                                        <issuelink>
            <issuekey id="94716">SERVER-11254</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>6.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10011" key="com.atlassian.jira.plugin.system.customfieldtypes:radiobuttons">
                        <customfieldname>Backwards Compatibility</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10038"><![CDATA[Fully Compatible]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                            <customfield id="customfield_10055" key="com.atlassian.jira.ext.charting:firstresponsedate">
                        <customfieldname>Date of 1st Reply</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Tue, 27 May 2014 09:05:23 +0000</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10052" key="com.atlassian.jira.toolkit:dayslastcommented">
                        <customfieldname>Days since reply</customfieldname>
                        <customfieldvalues>
                                        6 years, 29 weeks, 1 day 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>
                            6 years, 29 weeks, 1 day 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>derick</customfieldvalue>
            <customfieldvalue>mimkorn</customfieldvalue>
            <customfieldvalue>jmikola@mongodb.com</customfieldvalue>
            <customfieldvalue>joefeser</customfieldvalue>
            <customfieldvalue>kev_bite</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_14254" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Product Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hrm13r:</customfieldvalue>

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

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

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