Skip to main content

Process Mining Service WSGI for Auto-Twin

Project description

PyPI - License PyPI - Python Version PyPI - Version

Processing Mining Service (PMS) WSGI for Auto-Twin

The processing mining service (PMS) WSGI implements a RESTful API that invokes different system discovery modules to automatically create, update and delete graph models, Petri nets and automata in a system knowledge graph (SKG).

Installation

To facilitate installation, the PMS WSGI is released as a Python module, autotwin_pmswsgi, in the PyPI repository. autotwin_pmswsgi implicitly depends on pygraphviz. This dependency however cannot be resolved automatically by pip. As a preparation, you need to install pygraphviz manually, following instructions provided here. Whenever pygraphviz is available, the latest version of autotwin_pmswsgi can be easily installed with pip.

pip install autotwin_pmswsgi

Deployment

The PMS WSGI is almost ready to be deployed for production use once autotwin_pmswsgi is installed successfully. Four environment variables are additionally required to specify the Neo4j instance that holds the SKG of the system under consideration.

Name Description
NEO4J_URI URI of the Neo4j instance, e.g. neo4j://localhost:7687
NEO4J_USERNAME Username for the Neo4j instance, e.g. neo4j
NEO4J_PASSWORD Password for the Neo4j instance, e.g. 12345678
NEO4J_DATABASE Database where the SKG is stored, e.g. neo4j

After setting the above environment variables, you can start up the PMS WSGI on a Waitress server by executing

waitress-serve autotwin_pmswsgi:wsgi

Containerization

To enable containerization, the PMS WSGI is also released as a Docker image, ghcr.io/autotwineu/proc-mining-serv, in the GHCR registry. Suppose that a Docker engine is running on your machine. Deploying the PMS WSGI on a Docker container named proc-mining-serv can be done via a single command.

docker run --detach --env NEO4J_URI=<NEO4J_URI> --env NEO4J_USERNAME=<NEO4J_USERNAME> --env NEO4J_PASSWORD=<NEO4J_PASSWORD> --env NEO4J_DATABASE=<NEO4J_DATABASE> --name proc-mining-serv --pull always ghcr.io/autotwineu/proc-mining-serv

<NEO4J_URI>, <NEO4J_USERNAME>, <NEO4J_PASSWORD> and <NEO4J_DATABASE> correspond to the values of the four environment variables required by the PMS WSGI (see Deployment).

RESTful API

The PMS WSGI listens HTTP requests on port 8080 and is accessible through a RESTful API that exposes the following endpoints for different types of models. The content types of the request and response for each API endpoint are both application/json.


API Endpoints for Graph Models

POST /graph-model (create a graph model in the SKG)

Parameters

None

Body

Definition

Name Type Default Description
name string "System" Name of the system to be discovered
version string "" Version of the system to be discovered
neo4j:interval array[number|string] [0.0, 0.0] Interval of the event log to be used
model:time_unit string "s" Unified time unit of algorithm and model parameters
model:operation:io_ratio number 1.5 Minimum ratio of input to output for an ATTACH/COMPOSE operation
model:operation:co_ratio number 0.5 Minimum ratio of cross to output for an ATTACH/ORDINARY operation
model:operation:oi_ratio number 1.5 Minimum ratio of output to input for a DETACH/DECOMPOSE operation
model:operation:ci_ratio number 0.5 Minimum ratio of cross to input for a DETACH/ORDINARY operation
model:formula:ratio number 0.0 Minimum ratio of a formula to the primary one
model:delays:seize number|string 0.0 Maximum delay in seizing a queued part
model:delays:release number|string 0.0 Maximum delay in releasing a blocked part
model:cdf:points number 100 Maximum number of points in a CDF

Example

{
    "name": "Pizza Line",
    "version": "V4",
    "neo4j": {
        "interval": [0, 500000000]
    },
    "model": {
        "time_unit": "ms",
        "operation": {
            "io_ratio": 1.5,
            "co_ratio": 0.5,
            "oi_ratio": 1.5,
            "ci_ratio": 0.5
        },
        "formula": {
            "ratio": 0.06
        },
        "delays": {
            "seize": 30000,
            "release": 0
        },
        "cdf": {
            "points": 100
        }
    }
}

Response

Code: 201

Definition

Name Type Description
model_id string ID of the generated graph model

Example

{
    "model_id": "4:d44864fe-b050-4f74-8157-60d999e3580b:273316"
}

API Endpoints for Petri Nets

POST /petri-net (create a Petri net in the SKG)

Parameters

None

Body

None

Response

Code: 501

Definition

Name Type Description
code string Code of the HTTP error
name string Name of the HTTP error
description string Description of the HTTP error

Example

{
    "code": 501,
    "name": "Not Implemented",
    "description": "The server does not support the action requested by the browser."
}

API Endpoints for Automata

POST /automaton (create an automaton in the SKG)

Parameters

None

Body

None

Response

Code: 501

Definition

Name Type Description
code string Code of the HTTP error
name string Name of the HTTP error
description string Description of the HTTP error

Example

{
    "code": 501,
    "name": "Not Implemented",
    "description": "The server does not support the action requested by the browser."
}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

autotwin_pmswsgi-0.1.7.tar.gz (5.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

autotwin_pmswsgi-0.1.7-py3-none-any.whl (5.7 kB view details)

Uploaded Python 3

File details

Details for the file autotwin_pmswsgi-0.1.7.tar.gz.

File metadata

  • Download URL: autotwin_pmswsgi-0.1.7.tar.gz
  • Upload date:
  • Size: 5.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.10.15 Linux/6.5.0-1025-azure

File hashes

Hashes for autotwin_pmswsgi-0.1.7.tar.gz
Algorithm Hash digest
SHA256 c1a9878815cd060dddb05be1eabcf79eadf064b39ee81d6605888b1df54e712b
MD5 18cbcd2631ae1ebe8f45b682ac71d3cb
BLAKE2b-256 bb3680b58b8fa780152cf4c417912d2133ea2dfe0ab8b8ec84181f6170eedf64

See more details on using hashes here.

File details

Details for the file autotwin_pmswsgi-0.1.7-py3-none-any.whl.

File metadata

  • Download URL: autotwin_pmswsgi-0.1.7-py3-none-any.whl
  • Upload date:
  • Size: 5.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.10.15 Linux/6.5.0-1025-azure

File hashes

Hashes for autotwin_pmswsgi-0.1.7-py3-none-any.whl
Algorithm Hash digest
SHA256 94f5ed2c42bf5d246d0ca492b900b269c5e064a99c5245a4d50cffa3185d6d6b
MD5 f81be7e51f782a6b6f7cc1018070dc6e
BLAKE2b-256 72c879e1dcbe59c05f9d4248a13d2bfe4fa7a7274420d65bef5d2994b1aae9aa

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page