Skip to main content
Version: 10.2

EPLAN License Manager

Introduction

Open iT supports EPLAN usage reporting by collecting log files and converting them to Open iT format.

An Open iT Core Client is installed on your license server, and the license server does not create license usage history logs for this collection. The data collector initiates the raw data collector to request license usage history logs from the license manager every hour, triggering the data collection process. Once the logs are received, the raw data collector passes them to the data collector. The collected data is then sent to a data preprocessor for processing. After preprocessing, the final preprocessed data is sent and stored in the Core Server.


Log File Parsing Workflow with Raw Collector

Log File Parsing Workflow with Raw Collector


The following sections will guide you in setting up the necessary configuration to collect and send the required data to the server.

warning

Apply the configurations shown in the Open iT Core Client.

Requirements

  • EPLAN license manager version 2022.0.3.339

  • License server name

  • Full path to the ELM Monitor application, elmmonitor.exe

    warning

    Starting with EPLAN version 2025, make sure that you have installed the EPLAN license monitor.

  • Full path to the debug log file

  • An Open iT Core Client connected to an Open iT Core Server or a coexistent Open iT Core setup

Configuring Raw Data Collection

These are the required steps to obtain raw data from the EPLAN license manager.

  1. Open a command prompt with Administrator level privileges.

  2. Go to the bin directory, which is by default in C:\Program Files\OpeniT\Core\bin, run the command:

    Command Syntax
    cd $BIN_DIR
    Example
    cd C:\Program Files\OpeniT\Core\bin
  3. Once in the directory, activate the collection of raw EPLAN data, run the command:

    Command Syntax
    openit_oconfinit -u "collect_license_eplan-raw.root.scheduler.jobs.run_elmmonitor.general.active=true"
  4. Set the full path to the ELM monitor application and the EPLAN license server name. Run the command:

    Command Syntax
    openit_oconfinit -u "collect_license_eplan-raw.root.scheduler.jobs.run_elmmonitor.operations.arguments=--elmmonitor_path \"<elm_monitor_path>\" --servername <server_name> --xmlfile \"${OpeniT.directories.conf}/eplan-report.xml\" --outputdir \"${OpeniT.directories.temp}/Raw.EPLAN.Report\""

    where:

    • <elm_monitor_path> - path to the ELM monitor application
    • <server_name> - EPLAN license server name

    Example
    openit_oconfinit -u "collect_license_eplan-raw.root.scheduler.jobs.run_elmmonitor.operations.arguments=--elmmonitor_path \"C:/Program Files/EPLAN/ELM/ElmMonitor.exe\" --servername desktop123win --xmlfile \"${OpeniT.directories.conf}/eplan-report.xml\" --outputdir \"${OpeniT.directories.temp}/Raw.EPLAN.Report\""

    NOTE

    You can also include the data range of the data you want to collect by following the format --from "DD-MM-YYYY" --to "DD-MM-YYYY" (e.g., --from "01.01.2023" --to "26.09.2023").


    Example
    openit_oconfinit -u "collect_license_eplan-raw.root.scheduler.jobs.run_elmmonitor.operations.arguments=--elmmonitor_path \"C:/Program Files/EPLAN/ELM/ElmMonitor.exe\" --servername desktop123win --xmlfile \"${OpeniT.directories.conf}/eplan-report.xml\" --outputdir \"${OpeniT.directories.temp}/Raw.EPLAN.Report\" --from \"01.01.2023\" --to \"26.09.2023\"

The collection runs hourly by default. To configure, run the command:

Command Syntax
openit_oconfinit -u "collect_license_eplan-raw.root.scheduler.jobs.run_elmmonitor.scheduling.start-triggers.trigger#1.period=<time_span>

where <time_span> is the ELM monitor application run frequency in the ISO-8601 duration format PnDtnHnMn.nS

Example
openit_oconfinit -u "collect_license_eplan-raw.root.scheduler.jobs.run_elmmonitor.scheduling.start-triggers.trigger#1.period=P1D

EPLAN Events Log File Collection Configuration

This will produce the following aggregated data types used for historical reporting:

Activating Event Log Data Collection

These are the required steps to activate event log data collection.

  1. Open a command prompt with Administrator level privileges.

  2. Go to the bin directory, which is by default in C:\Program Files\OpeniT\Core\bin, run the command:

    Command Syntax
    cd $BIN_DIR
    Example
    cd C:\Program Files\OpeniT\Core\bin
  3. Once in the directory, activate the collection of EPLAN event log data, run the command:

    Command Syntax
    openit_oconfinit -u "collect_license_eplan-logs.root.scheduler.jobs.collect_eplan_licenselogs.general.active=true"
Advanced Configuration

The elmmonitor triggers this data collection. To configure the intervals, locate the instances attribute under collect_eplan_licenselogs, preprocess_eplan_licenselogs-events, or transfer_eplan_licenselogs in the same file and configure the attributes.

Refer to the EPLAN Event Log Job Scheduler Instances Configuration table to learn the attributes used to configure EPLAN events data collection and transfer.

Attribute NameAccepted ValueDescription
max-instancesUint (e.g., 5, 8, 9)The number of instances allowed to run the at the same time.
max-handlingString (end-oldest, end-all-old, or end-new)The action done upon reaching the maximum number of instances:
  • end-oldest - Specify this option to stop/kill the oldest instance and start a new one.
  • end-all-old - Specify this option to stop/kill all running instances before starting the new one.
  • end-new - Specify this option to prevent a new instance from starting.
end-timeoutTimespan (e.g., P30S, P5M, P1H)The maximum waiting time before terminating a running instance.
quarantineTimespan (e.g., P30S, P5M, P1H)The waiting time before starting a new instance after a previous one.
EPLAN Event Log Job Scheduler Instances Configuration

Modifying Feature Name and Bundle Number Separator for Event Log Data

These are the required steps to modify the feature name and bundle number separator for event log data if you don't want to use the default, ().

warning

The bundle number is required for record type to correctly determine the max available licenses.

  1. Go to the Configuration directory, which is by default in C:\Program Files\OpeniT\Core\Configuration, and open matchobjects-event-eplan.oconf.

  2. Locate the data-process11 node under the post-processing node and change [ and ].

    matchobjects-event-eplan.oconf
    data-process11
    {
    description=Presentation of feature name. Configurable. Prohibited character:"|"
    type=string
    value=feature=(feature!="" && bundle!="") ? feature + "[" + bundle + "]":feature
    }
    Sample Output
    EPLAN Electric P8. Professional[4]
    warning

    You can use any character except |.

    Example: matchobjects-event-eplan.oconf
    data-process11
    {
    description=Presentation of feature name. Configurable. Prohibited character:"|"
    type=string
    value=feature=(feature!="" && bundle!="") ? feature + "<" + bundle + ">":feature
    }
    Sample Output
    EPLAN Electric P8. Professional<4>
  3. Save the changes.

Verifying Event Log Data Collection

After configuration, you can verify that the data is collected and sent to the Core Server by following these steps:

  1. Open a command prompt with Administrator level privileges.

  2. Go to the bin directory, which is by default in C:\Program Files\OpeniT\Core\bin, run the command:

    Command Syntax
    cd $BIN_DIR
    Example
    cd C:\Program Files\OpeniT\Core\bin
  3. Run the command:

    Command Syntax
    openit_executor -r collect_license_eplan-logs
  4. Verify that there are archiver*.in files created in the Core Server's archiver directory, which is by default in C:\ProgramData\OpeniT\incoming\archiver.

EPLAN Records Log File Collection Configuration

This will produce the following aggregated data types used for historical reporting:

Activating Record Log Data Collection

These are the required steps to activate record log data collection.

  1. Open a command prompt with Administrator level privileges.

  2. Go to the bin directory, which is by default in C:\Program Files\OpeniT\Core\bin, run the command:

    Command Syntax
    cd $BIN_DIR
    Example
    cd C:\Program Files\OpeniT\Core\bin
  3. Once in the directory, activate the collection of EPLAN record log data, run the command:

    Command Syntax
    openit_oconfinit -u "collect_license_eplan-record-logs.root.scheduler.jobs.collect_eplan_licenselogs-records.general.active=true"
Advanced Configuration

The elmmonitor triggers this data collection. To configure the intervals, locate the instances attribute under collect_eplan_licenselogs-records, preprocess_eplan_licenselogs-records, or transfer_eplan_licenselogs in the same file and configure the attributes.

Refer to the EPLAN Record Log Job Scheduler Instances Configuration table to learn the attributes used to configure EPLAN records data collection and transfer.

Attribute NameAccepted ValueDescription
max-instancesUint (e.g., 5, 8, 9)The number of instances allowed to run the at the same time.
max-handlingString (end-oldest, end-all-old, or end-new)The action done upon reaching the maximum number of instances:
  • end-oldest - Specify this option to stop/kill the oldest instance and start a new one.
  • end-all-old - Specify this option to stop/kill all running instances before starting the new one.
  • end-new - Specify this option to prevent a new instance from starting.
end-timeoutTimespan (e.g., P30S, P5M, P1H)The maximum waiting time before terminating a running instance.
quarantineTimespan (e.g., P30S, P5M, P1H)The waiting time before starting a new instance after a previous one.
EPLAN Record Log Job Scheduler Instances Configuration

Modifying Feature Name and Bundle Name and Bundle Number Separator for Record Log Data

These are the required steps to modify the feature name and bundle number separator for record log data if you don't want to use the default, ().

warning

The bundle number is required for record type to correctly determine the max available licenses.

  1. Go to the Configuration directory, which is by default in C:\Program Files\OpeniT\Core\Configuration, and open matchobjects-record-eplan.oconf.

  2. Locate the data-process2 node under the post-processing node and change [ and ].

    matchobjects-record-eplan.oconf
    data-process2
    {
    description=Presentation of feature name. Configurable. Prohibited character:"|"
    type=string
    value=feature=(feature!="" && bundle!="") ? feature + "[" + bundle + "]":feature
    }
    Sample Output
    EPLAN Electric P8. Professional[4]
    warning

    You can use any character except |.

    Example: matchobjects-record-eplan.oconf
    data-process2
    {
    description=Presentation of feature name. Configurable. Prohibited character:"|"
    type=string
    value=feature=(feature!="" && bundle!="") ? feature + "<" + bundle + ">":feature
    }
    EPLAN Electric P8. Professional <4>
    EPLAN Electric P8. Professional <4>
  3. Save the changes.

Verifying Record Log Data Collection

After configuration, you can verify that the data is collected and sent to the Core Server by following these steps:

  1. Open a command prompt with Administrator level privileges.

  2. Go to the bin directory, which is by default in C:\Program Files\OpeniT\Core\bin, run the command:

    Command Syntax
    cd $BIN_DIR
    Example
    cd C:\Program Files\OpeniT\Core\bin
  3. Run the command:

    Command Syntax
    openit_executor -r collect_license_eplan-record-logs
  4. Verify that there are archiver*.in files created in the Core Server's archiver directory, which is by default in C:\ProgramData\OpeniT\Data\incoming\archiver.

Next Steps?