Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/documentation/installation/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ description: "Run the Full Distribution using Docker"
---
## Run Operaton using Docker

The Community Edition docker images can be found on [Docker Hub](https://hub.docker.com/r/operaton/operaton/).
The Docker images can be found on [Docker Hub](https://hub.docker.com/r/operaton/operaton/).

### Start Operaton using Docker

To start [Operaton](../user-guide/operaton-bpm-run.md) execute the following commands:

```shell
docker pull operaton/operaton:latest
docker run -d --name Operaton-p 8080:8080 operaton/operaton:latest
docker run -d --name operaton -p 8080:8080 operaton/operaton:latest
```
4 changes: 2 additions & 2 deletions docs/documentation/introduction/extensions.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ menu:

---

Operaton is developed by Operaton as an open source project in collaboration with the community. This is the basis for the Operaton product provided by Operaton as a commercial offering.
Operaton is developed as an open source project in collaboration with the community. Operaton does not have separate editions; the product is open source.

## Extensions

Operaton supports the community in its effort to build additional community extensions under the Operaton umbrella. Such community extensions are maintained by the community and are not part of the commercial Operaton product.
Operaton supports the community in its effort to build additional community extensions under the Operaton umbrella. Such community extensions are maintained by the community and are not part of the official Operaton distribution.

The [Operaton Community Hub](https://github.com/operaton-community-hub) is a GitHub organization that serves as the home of Operaton open source, community-contributed extensions. You can migrate an extension you've built to the Hub, search for existing extensions, or get started with open source by helping community extension maintainers with open issue or pull request triage.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@ retrieve the entities related to the Historic Process Instance:
### System permissions

Permissions for the system resource are usually granted to operations engineers who supervise processes and applications and ensure they run smoothly from a technical perspective.
Typically, those people do not need full access to the system like an administrator does. They must be able to access and change system information, including system properties, metrics, database information, telemetry, and license key data. Administrators will not need to have system permissions because their role already grants them access to all features. See also the <a href="#Administrators">Administrators</a> section.
Typically, those people do not need full access to the system like an administrator does. They must be able to access and change system information, including system properties, metrics, database information, and telemetry. Administrators will not need to have system permissions because their role already grants them access to all features. See also the <a href="#Administrators">Administrators</a> section.

The following table gives an overview of the features that the system permissions grant access to.

Expand Down Expand Up @@ -797,24 +797,6 @@ The following table gives an overview of the features that the system permission
<td></td>
<td>X</td>
</tr>
<tr>
<th>Get License Key</th>
<td>X</td>
<td></td>
<td></td>
</tr>
<tr>
<th>Set License Key</th>
<td></td>
<td>X</td>
<td></td>
</tr>
<tr>
<th>Delete License Key</th>
<td></td>
<td></td>
<td>X</td>
</tr>
<tr>
<th>Register Process Application</th>
<td></td>
Expand Down
17 changes: 4 additions & 13 deletions docs/documentation/user-guide/process-engine/diagnostics-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ The "General Data" category contains information about the process engine:
* Installation - an id that is stored as process engine configuration property
* Product name - the name of the product (i.e., `Operaton BPM Runtime`)
* Product version - the version of the process engine (i.e., `7.X.Y`)
* `edition` - a legacy compatibility field. Operaton does not have separate editions and reports `community` for compatibility.

### Meta and environment data
The "Meta/Environment Data" category contains information about the environmental setup:
Expand All @@ -56,7 +57,7 @@ The "Meta/Environment Data" category contains information about the environmenta

The application server information cannot be obtained in an embedded process engine setup where no web application (e.g. Tasklist, Cockpit, REST application) is deployed and used.

In case of Azul Zulu JDK, the vendor will be send as "Oracle Corporation" as it cannot be distinguished programmatically from an Oracle JDK.
In case of Azul Zulu JDK, the vendor will be sent as "Oracle Corporation" as it cannot be distinguished programmatically from an Oracle JDK.


### Usage data
Expand All @@ -75,7 +76,7 @@ The counts are collected from the start of the engine or the last reported time
"product": {
"name": "Operaton BPM Runtime",
"version": "7.14.0",
"edition": "tbd",
"edition": "community",
"internals": {
"database": {
"vendor": "h2",
Expand All @@ -99,21 +100,11 @@ The counts are collected from the start of the engine or the last reported time
"decision-instances": { "count": 140 },
"executed-decision-elements": { "count": 732 }
},
"data-collection-start-date": "2022-11-320T15:53:20.386+0100",
"data-collection-start-date": "2022-11-30T15:53:20.386+0100",
"operaton-integration": [
"spring-boot-starter",
"operaton-bpm-run"
],
"license-key": {
"customer": "customer name",
"type": "UNIFIED",
"valid-until": "2022-09-30",
"unlimited": false,
"features": {
"camundaBPM": "true"
},
"raw": "customer=customer name;expiryDate=2022-09-30;camundaBPM=true;optimize=false;cawemo=false"
},
"webapps": [
"cockpit",
"admin"
Expand Down