Changes between Version 1 and Version 2 of Software/eAM/aInventory/InventoryGathering


Ignore:
Timestamp:
Jan 2, 2013, 6:47:53 PM (11 years ago)
Author:
ssugrim
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Software/eAM/aInventory/InventoryGathering

    v1 v2  
    11= Inventory Gathering =
    22
    3  * [# Data Structure]
     3 * [#data Data Structure]
    44 * Node Image
    55 * Expirment details
    66
    7 == Data Structure ==
     7== Data Structure == #data
     8Our layout will try to capture the relationship between nodes (which for our current purposes means motherboards) and devices (any network/communication device). The relationship heirachy looks like this:
     9{{{
     10TESTBED -
     11         |
     12         -> Node -
     13            -INV_... -- Inventory Attributes (e.g. motherboard serial number, disk size, cpu type,...)
     14            -INF_... -- Infrastructure Attributes  (Control IP, Control interface,...)
     15            -CM_...  -- CM attributes (e.g. CM IP, CM Version, ...)
     16                 |
     17                 -> Device
     18                    -name = FQDNofContainingNode_dev_random#
     19                    -INV_if_name= "name the os thinks this device is. (e.g. eth0)"
     20                    -INV_dev_id = "xxxx:xxxx" where the x's are hex numbers that represent the device identifiers.
     21}}}
     22
     23At some point we'll make a complete map of these.