Document the logs plugin

This commit is contained in:
Mriyam Tamuli
2016-10-08 04:01:46 +05:30
parent c0d3b8c9a9
commit 28c29da166
2 changed files with 39 additions and 0 deletions

38
docs/deployment/logs.md Normal file
View File

@@ -0,0 +1,38 @@
# Log Management
```
logs <app> # display recent log output
```
## Usage
### Application Logs
You can easily get logs of an application using the `logs` command:
```shell
dokku logs node-js-app
```
## Behavioral modifiers
Dokku also supports certain command-line arguments that augment the `log` command's behavior.
```
-n, --num NUM # the number of lines to display
-p, --ps PS # only display logs from the given process
-t, --tail # continually stream logs
-q, --quiet # display raw logs without colors, time and names
```
You can use these modifiers as
```shell
dokku logs <app> <modifiers>
```
For example,
```shell
dokku logs node-js-app -t -p web
```
will show logs continually from the web process.

View File

@@ -198,6 +198,7 @@
<a href="/{{NAME}}/deployment/application-deployment/" class="list-group-item">Deploying an Application</a>
<a href="/{{NAME}}/deployment/application-management/" class="list-group-item">Application Management</a>
<a href="/{{NAME}}/deployment/logs/" class="list-group-item">Application Logs</a>
<a href="/{{NAME}}/deployment/remote-commands/" class="list-group-item">Remote Commands</a>
<a href="/{{NAME}}/deployment/one-off-processes/" class="list-group-item">One Off Processes/Cron</a>
<a href="/{{NAME}}/deployment/process-management/" class="list-group-item">Process Scaling</a>