<!-- 
RSS generated by JIRA (6.1.4#6159-sha1:44eaedef2e4a625c6c7183698b2468d4719c20dc) at Mon Jun 15 14:12:07 EEST 2026

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 add field=key&field=summary to the URL of your request.
For example:
http://jira.mobinets.com/jira/si/jira.issueviews:issue-xml/ACE-5/ACE-5.xml?field=key&field=summary
-->
<rss version="0.92" >
<channel>
    <title>Mobinets-JIRA</title>
    <link>http://jira.mobinets.com/jira</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-us</language>    <build-info>
        <version>6.1.4</version>
        <build-number>6159</build-number>
        <build-date>19-11-2013</build-date>
    </build-info>

<item>
            <title>[ACE-5] Integrate NetXMS in ACE for the IT Inventory</title>
                <link>http://jira.mobinets.com/jira/browse/ACE-5</link>
                <project id="14100" key="ACE">ACE</project>
                    <description>&lt;p&gt;Ensure NetXMS is ready for integration with NEP. (in progress) :&lt;/p&gt;

&lt;p&gt;2. Propose an arrangement of the different IT asset categories in the IT inventory Module. &lt;/p&gt;

&lt;p&gt;1. Prepare template for  ESX servers/ Linux Machines / Windows Machine / Printers / &lt;/p&gt;</description>
                <environment></environment>
        <key id="123028">ACE-5</key>
            <summary>Integrate NetXMS in ACE for the IT Inventory</summary>
                <type id="3" iconUrl="http://jira.mobinets.com/jira/images/icons/issuetypes/task.png">Task</type>
                                            <priority id="10002" iconUrl="http://jira.mobinets.com/jira/images/icons/normal.png">Normal</priority>
                        <status id="10001" iconUrl="http://jira.mobinets.com/jira/images/icons/statuses/open.png">To Do</status>
                                    <resolution id="-1">Unresolved</resolution>
                                        <assignee username="mbayel">Mbaye Lo</assignee>
                                    <reporter username="mbayel">Mbaye Lo</reporter>
                        <labels>
                    </labels>
                <created>Fri, 5 Apr 2024 13:52:33 +0300</created>
                <updated>Wed, 17 Apr 2024 09:57:02 +0300</updated>
                                                                                <due>Fri, 12 Apr 2024 00:00:00 +0300</due>
                            <votes>0</votes>
                                    <watches>1</watches>
                                                                <comments>
                            <comment id="107997" author="mbayel" created="Mon, 15 Apr 2024 17:28:04 +0300"  >&lt;p&gt;The below script performs SNMP queries to retrieve information about memory usage, hardware details, processor usage, and virtual machines hosted on the ESXi host. Adjust SNMP community string and OID definitions as needed based on your environment.&lt;/p&gt;

&lt;p&gt;/* !/bin/bash&lt;/p&gt;

&lt;p&gt;/* Usage: ./vmware_inventory.sh &amp;lt;ESXi_host_IP&amp;gt;&lt;/p&gt;

&lt;p&gt;/* Check if IP address is provided&lt;br/&gt;
if [ -z &quot;$1&quot; ]; then&lt;br/&gt;
    echo &quot;Usage: $0 &amp;lt;ESXi_host_IP&amp;gt;&quot;&lt;br/&gt;
    exit 1&lt;br/&gt;
fi&lt;/p&gt;

&lt;p&gt;/* Define ESXi host IP address&lt;br/&gt;
ESXI_HOST=&quot;$1&quot;&lt;/p&gt;

&lt;p&gt;/* SNMP community string&lt;br/&gt;
SNMP_COMMUNITY=&quot;public&quot;&lt;/p&gt;

&lt;p&gt;/* SNMP OID definitions&lt;br/&gt;
MEMORY_USAGE_OID=&quot;HOST-RESOURCES-MIB::hrStorageUsed.1&quot;&lt;br/&gt;
HARDWARE_DETAILS_OID=&quot;VMWARE-MIB::vmwHwManufacturer.0&quot;&lt;br/&gt;
PROCESSOR_USAGE_OID=&quot;HOST-RESOURCES-MIB::hrProcessorLoad.1&quot;&lt;br/&gt;
VIRTUAL_MACHINES_OID=&quot;VMWARE-MIB::vmwVmName&quot;&lt;/p&gt;

&lt;p&gt;/* Function to perform SNMP query&lt;br/&gt;
snmp_query() {&lt;br/&gt;
    snmpwalk -v2c -c &quot;$SNMP_COMMUNITY&quot; &quot;$ESXI_HOST&quot; &quot;$1&quot; | awk -F &quot;: &quot; &apos;&lt;/p&gt;
{print $2}
&lt;p&gt;&apos;&lt;br/&gt;
}&lt;/p&gt;

&lt;p&gt;/* Retrieve memory usage&lt;br/&gt;
MEMORY_USAGE=$(snmp_query &quot;$MEMORY_USAGE_OID&quot;)&lt;/p&gt;

&lt;p&gt;/* Retrieve hardware details&lt;br/&gt;
HARDWARE_DETAILS=$(snmp_query &quot;$HARDWARE_DETAILS_OID&quot;)&lt;/p&gt;

&lt;p&gt;/* Retrieve processor usage&lt;br/&gt;
PROCESSOR_USAGE=$(snmp_query &quot;$PROCESSOR_USAGE_OID&quot;)&lt;/p&gt;

&lt;p&gt;/* Retrieve virtual machines&lt;br/&gt;
VIRTUAL_MACHINES=$(snmp_query &quot;$VIRTUAL_MACHINES_OID&quot;)&lt;/p&gt;

&lt;p&gt;/* Display gathered information&lt;br/&gt;
echo &quot;Memory Usage: $MEMORY_USAGE&quot;&lt;br/&gt;
echo &quot;Hardware Details: $HARDWARE_DETAILS&quot;&lt;br/&gt;
echo &quot;Processor Usage: $PROCESSOR_USAGE&quot;&lt;br/&gt;
echo &quot;Virtual Machines:&quot;&lt;br/&gt;
echo &quot;$VIRTUAL_MACHINES&quot;&lt;/p&gt;

&lt;p&gt;=======================================================================&lt;/p&gt;

&lt;p&gt;/*# Define SNMP community string&lt;br/&gt;
const SNMP_COMMUNITY = &quot;public&quot;;&lt;/p&gt;

&lt;p&gt;/*# Define SNMP OID definitions&lt;br/&gt;
const MEMORY_USAGE_OID = &quot;HOST-RESOURCES-MIB::hrStorageUsed.1&quot;;&lt;br/&gt;
const HARDWARE_DETAILS_OID = &quot;VMWARE-MIB::vmwHwManufacturer.0&quot;;&lt;br/&gt;
const PROCESSOR_USAGE_OID = &quot;HOST-RESOURCES-MIB::hrProcessorLoad.1&quot;;&lt;br/&gt;
const VIRTUAL_MACHINES_OID = &quot;VMWARE-MIB::vmwVmName&quot;;&lt;/p&gt;

&lt;p&gt;/*# Function to perform SNMP query&lt;br/&gt;
sub snmpQuery(host, oid) &lt;/p&gt;
{
    return SNMP::get(host, SNMP_COMMUNITY, oid);
}

&lt;p&gt;/*# Retrieve memory usage&lt;br/&gt;
const memoryUsage = snmpQuery(node.ipAddress, MEMORY_USAGE_OID);&lt;/p&gt;

&lt;p&gt;/*# Retrieve hardware details&lt;br/&gt;
const hardwareDetails = snmpQuery(node.ipAddress, HARDWARE_DETAILS_OID);&lt;/p&gt;

&lt;p&gt;/*# Retrieve processor usage&lt;br/&gt;
const processorUsage = snmpQuery(node.ipAddress, PROCESSOR_USAGE_OID);&lt;/p&gt;

&lt;p&gt;/*# Retrieve virtual machines&lt;br/&gt;
const virtualMachines = snmpQuery(node.ipAddress, VIRTUAL_MACHINES_OID);&lt;/p&gt;

&lt;p&gt;/*# Output gathered information&lt;br/&gt;
console.print(&quot;Memory Usage: &quot; + memoryUsage);&lt;br/&gt;
console.print(&quot;Hardware Details: &quot; + hardwareDetails);&lt;br/&gt;
console.print(&quot;Processor Usage: &quot; + processorUsage);&lt;br/&gt;
console.print(&quot;Virtual Machines: &quot; + virtualMachines);&lt;/p&gt;</comment>
                    </comments>
                    <attachments>
                            <attachment id="99732" name="IT_Asset_Inventory_Management_for_Server_&amp;_Software_Use_case_type_1_Product_Hero_-_hero_image.webp" size="47088" author="mbayel" created="Fri, 5 Apr 2024 13:52:33 +0300"/>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                                                                                                                                                                                            <customfield id="customfield_10200" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>Complexity</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10103"><![CDATA[High]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10201" key="com.atlassian.jira.plugin.system.customfieldtypes:multiselect">
                        <customfieldname>Customer</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10301"><![CDATA[NEP_3.X]]></customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_11009" key="com.innovalog.jmcf.jira-misc-custom-fields:calculated-text-field">
                        <customfieldname>Dev. Actual Duration</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue><![CDATA[0 minutes]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10800" key="com.capitalcityconsultants.jira.plugins.customfields.ccc-lastcomment:last-comment">
                        <customfieldname>Last Comment</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>&lt;p style=&quot;display:inline&quot;&gt;&lt;b&gt;Evaluation License Error:&lt;/b&gt; EXPIRED&lt;/p&gt;</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                            <customfield id="customfield_12500" key="com.atlassian.jira.toolkit:originalestimate">
                        <customfieldname>Original Estimate</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_11008" key="com.innovalog.jmcf.jira-misc-custom-fields:calculated-text-field">
                        <customfieldname>PDM Actual Duration</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue><![CDATA[0 minutes]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_10301" key="com.atlassian.jira.plugin.system.customfieldtypes:datetime">
                        <customfieldname>Planned End</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Fri, 19 Apr 2024 08:48:00 +0300</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10300" key="com.atlassian.jira.plugin.system.customfieldtypes:datetime">
                        <customfieldname>Planned Start</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Fri, 5 Apr 2024 08:48:00 +0300</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                            <customfield id="customfield_10901" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0|xti8ld:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10004" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>9223372036854775807</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                    <customfield id="customfield_11704" key="vivid.trace:VTDirections-custom-field-type">
                        <customfieldname>VTDirections</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                        </customfields>
    </item>
</channel>
</rss>