IBM License Metric Tool (ILMT) and BigFix Inventory transform maps for v1 APIs

  • Release version: Xanadu
  • Updated August 1, 2024
  • 4 minutes to read
  • Summarize
    Summarized using AI
    This content was generated using new OpenAI-powered functionality. Results are provided on an as is basis and are not guaranteed to be accurate or complete.

    Summary of IBM License Metric Tool (ILMT) and BigFix Inventory transform maps for v1 APIs

    This documentation explains how ServiceNow processes data imported from IBM License Metric Tool (ILMT) and BigFix Inventory using version 1 of their integration APIs. ServiceNow uses predefined transform maps to convert incoming data into appropriate ServiceNow tables, enabling you to manage and reconcile IBM software installations and license usage effectively.

    Show full answer Show less

    Default ILMT and BigFix Inventory transform maps

    ServiceNow provides out-of-the-box transform maps that handle different data types from ILMT and BigFix Inventory APIs:

    • ILMT Computer Identity V1: Transforms identification data of virtual machines (VMs) and hosts from the source Computer table to the ServiceNow CMDB computer table. It uses the CMDB Identification and Reconciliation Engine (IRE) API to create Configuration Item (CI) records, ensuring only one CI per hardware serial number is created (host prioritized over VM). Note that hardware serial numbers containing periods are not supported.
    • ILMT Software Instance: Converts software component and product installation data into the IBM Peak Consumption table. Software components represent individual units of software, while software products are licenseable collections of components. The transform map treats software products as installations to facilitate license tracking and reconciliation.
    • ILMT Software License Usage: Processes license usage data on physical hosts (not VMs) to help verify compliance and reconcile licenses. It updates existing records or creates new ones in the IBM Peak Consumption table, marking unreported versions accordingly.

    Data processing details for transform maps

    • ILMT Computer Identity V1 transform map: Utilizes field maps and an onAfter transform script to map source fields such as IP address, DNS name, CPU count, CPU brand, and serial number into corresponding CMDB fields. The transform script further refines data processing after each record import.
    • ILMT Software Instance transform map: Uses an onComplete transform script that executes at the end of each import to finalize processing of software installation data into the IBM Peak Consumption table.
    • ILMT Software License Usage transform map: Employs an onStart transform script that runs at the beginning of each import to handle license usage data appropriately.

    Key benefits for ServiceNow customers

    • Automates the ingestion and normalization of IBM software and hardware data into ServiceNow CMDB and license management tables.
    • Supports accurate reconciliation and compliance tracking of IBM software licenses based on physical host usage.
    • Leverages ServiceNow’s CMDB IRE API for smart CI creation, avoiding duplication especially between VMs and hosts.
    • Provides extensibility points through transform map scripts to customize data processing as needed.

    When you import data from the IBM License Metric Tool (ILMT) or BigFix Inventory using version 1 of the ILMT and BigFix Inventory integration APIs, your ServiceNow instance uses transform maps to process this data into ServiceNow tables.

    Default ILMT and BigFix Inventory transform maps

    By default, ServiceNow provides the following transform maps for ILMT and BigFix Inventory data when you are using version 1 of the ILMT and BigFix Inventory APIs:

    Table 1. Default ILMT and BigFix Inventory transform maps
    Transform Map Source Table Target Table Description
    ILMT Computer Identity V1 Computer [imp_samp_ilmt_computer_system] Computer [cmdb_ci_computer]

    Processes identification data for your virtual machines (VMs) and hosts.

    The ILMT Computer Identity V1 transform map uses the CMDB IRE API to create a configuration item (CI) record for each VM or host in the Computer [cmdb_ci_computer] table. If a VM uses the same hardware serial number as its host, the transform map creates a CI record for only the host. For more information on the CMDB IRE API, see Identification and Reconciliation engine (IRE).

    Note:
    ServiceNow does not support hardware serial numbers containing periods (.).
    ILMT Software Instance ILMT Software Instance [imp_samp_ilmt_sw_instance] Global [global]

    Processes installation data for each IBM software component and product on your VMs and hosts.

    Software components are the independent units of software that you install or run on a VM. You can identify but not license software components individually. Software products are the units of software packaging on a host that can comprise of a collection of software components. You can license the software product as a whole. For more information on software components and products, refer to the IBM Knowledge Center.

    The ILMT Software Instance transform map creates a record for each IBM software component and product installation in the IBM Peak Consumption [samp_ilmt_sw_install] table.

    Note:
    Although software products are not actual software installations, the transform map treats them as installations so that you can update and track license usage against each software product for reconciliation and compliance purposes.
    ILMT Software License Usage License Consumption [imp_samp_ilmt_license_usage] Global [global]

    Processes license usage data for your IBM software products. You can use this data to reconcile your IBM software products and verify compliance.

    Note:
    License usage data is reported against physical hosts only, as IBM software products are licensed based on physical host usage and not virtual machine (VM) usage.

    The ILMT Software License Usage transform map updates license usage data on corresponding records in the IBM Peak Consumption [samp_ilmt_sw_install] table. If a corresponding record does not exist, the transform map creates a record for your license usage data with the version set to Not reported.

    ILMT and BigFix Inventory data processing

    Each ILMT and BigFix Inventory transform map processes data using field maps or transform map scripts.

    ILMT Computer Identity V1 transform map

    The ILMT Computer Identity V1 transform map processes data from the source Computer [imp_samp_ilmt_computer_system] table to the target Computer [cmdb_ci_computer] table using both field maps and a transform map script.

    By default, the ILMT Computer Identity V1 transform map includes the following field maps:

    Table 2. Default field maps
    Source Field Target Field Description
    u_ip_address ip_address IP address of the host or virtual machine.
    u_dns_name dns_domain Domain name of the host or virtual machine.
    u_server_processors cpu_count Number of CPUs or virtual CPUs (vCPUs) on the host or virtual machine.
    u_host_name name Name of the host or virtual machine.
    u_processor_brand_string cpu_name Brand name of the CPU or vCPU on the host or virtual machine (for example, IBM).
    u_server_cores cpu_core_count Number of CPU or vCPU cores on the host or virtual machine.
    [Script] discovery_source Discovery source that pulls in IBM software installation data. Possible values are ILMT or BigFix Inventory.
    [Script] virtual Option indicating whether a machine is virtual.
    u_processor_brand cpu_type Type of CPU or vCPU on the host or virtual machine (for example, dual core CPU).
    u_hardware_serial_number serial_number Serial number that identifies the host.

    In addition to using field maps, the transform map processes data using the onAfter transform map script, which is an event script that processes at the end of each row transformation. For more information on this transform map script, see Map with transformation event scripts.

    ILMT Software Instance transform map

    The ILMT Software Instance transform map processes data from the source ILMT Software Instance [imp_samp_ilmt_sw_instance] table to the target IBM Peak Consumption [samp_ilmt_sw_install] table using the onComplete transform map script. The onComplete transform map script is an event script that processes at the end of an import. For more information on this transform map script, see Map with transformation event scripts.

    ILMT Software License Usage transform map

    The ILMT Software License Usage transform map processes data from the source License Consumption [imp_samp_ilmt_license_usage] table to the target IBM Peak Consumption [samp_ilmt_sw_install] table using the onStart transform map script. The onStart transform map script is an event script that processes at the beginning of an import. For more information on this transform map script, see Map with transformation event scripts.