-
Notifications
You must be signed in to change notification settings - Fork 368
Expand file tree
/
Copy path_object.md.erb
More file actions
29 lines (27 loc) · 1.9 KB
/
_object.md.erb
File metadata and controls
29 lines (27 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
### The process object
```
Example Process object
```
```json
<%= yield_content :single_process %>
```
Name | Type | Description
---- | ---- | -----------
**guid** | _uuid_ | Unique identifier for the process
**created_at** | _[timestamp](#timestamps)_ | The time with zone when the object was created
**updated_at** | _[timestamp](#timestamps)_ | The time with zone when the object was last updated
**version** | _uuid_ | Random identifier that changes every time the process will be recreated in the runtime.
**type** | _string_ | Process type; a unique identifier for processes belonging to an app
**command** | _string_ or _null_ | The command used to start the process; use _null_ to revert to the buildpack-detected or procfile-provided start command
**user** | _string_ or _null_ | The user used to run the process; use _null_ to revert to the docker-detected or default 'vcap' user
**instances** | _integer_ | The number of instances to run
**memory_in_mb** | _integer_ | The memory in MB allocated per instance
**log_rate_limit_in_bytes_per_second** | _integer_ | The log rate in bytes per second allocated per instance
**disk_in_mb** | _integer_ | The disk in MB allocated per instance
**health_check** | [_health check object_](#the-health-check-object) | The health check to perform on the process
**readiness_health_check** | [_readiness health check object_](#the-readiness-health-check-object) | The readiness health check to perform on the process
**relationships.app** | [_to-one relationship_](#to-one-relationships) | The app the process belongs to
**relationships.revision** | [_to-one relationship_](#to-one-relationships) | The app revision the process is currently running
**metadata.labels** | [_label object_](#labels) | Labels applied to the process
**metadata.annotations** | [_annotation object_](#annotations) | Annotations applied to the process
**links** | [_links object_](#links) | Links to related resources