Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 17 Next »

The following configuration options of the common machine configuration model apply to Carbon3D machines.

Aggregator version 1.2.0+

Configuration

Data

Description

Required

type

CARBON3D

The machine's interface type.

url

https://api.carbon3d.com

Carbon3D api base url.

custom_name

my_carbon3d_machine

The custom machine name to be displayed in the Agile MES. Will be read from the machine if unset.

unique_name

3P01CM

The serial number of the machine.

authentication_file_path

./secret.json

The secret.json for JWT authentication as provided by Carbon3D. For instructions visit Carbon3D.

mes_id

[1]

The MES instance(s) of your organization.

umati_server_port

4840+

Umati server port used for internal data transfer. Set if the default port is conflicting with another port on your server.

Carbon3D machine example:

{
  "type": "CARBON3D",
  "url": "https://api.carbon3d.com",
  "custom_name": "my_carbon3d_machine",
  "unique_name": "3P01CM",
  "authentication_file_path": "./secret.json",
  "mes_id": [
    1
  ]
}

secret.json example:

{
     "client_id": "CLIENT_ID",
     "client_secret": "RSA_PRIVATE_KEY"
}

Aggregator version 1.1.0

Configuration

Data

Description

Required

type

CARBON3D

The machine's interface type.

url

https://api.carbon3d.com

The individual machine's interface url.

custom_name

carb3d

The custom machine name to be displayed in the Agile MES. Will be appended by the machine’s url. Combined length may not be more than 31 characters.

X

unique_name

3P01CM

The serial number of the machine.

path_to_secret

/absolute/path/to/secret.json

The secret.json for JWT authentication as provided by Carbon3D. For instructions visit Carbon3D.

mes_id

[1]

The MES instance(s) of your organization.

umati_server_port

4840+

Umati server port used for internal data transfer. Set if the default port is conflicting with another port on your server.

X

Carbon3D machine example:

{
  "type": "CARBON3D",
  "url": "https://api.carbon3d.com",
  "custom_name": "carb3d",
  "unique_name": "3P01CM",
  "path_to_secret": "/absolute/path/to/secret.json",
  "mes_id": [
    1
  ]
}

secret.json example:

{
     "client_id": "CLIENT_ID",
     "client_secret": "RSA_PRIVATE_KEY"
}
  • No labels