@@ -15,6 +15,8 @@ User must be logged in as admin
1515
1616### Options
1717
18+ The entire firehose for CF.
19+
1820```
1921NAME:
2022 nozzle - Displays messages from the firehose
@@ -29,10 +31,26 @@ OPTIONS:
2931 -subscription-id -s, specify subscription id for distributing firehose output between clients
3032```
3133
34+ All logs, metrics and events for a given app.
35+
36+ ```
37+ NAME:
38+ app-nozzle - Displays messages from the firehose for a given app
39+
40+ USAGE:
41+ cf app-nozzle APP_NAME
42+
43+ OPTIONS:
44+ -debug -d, enable debugging
45+ -filter -f, specify message filter such as LogMessage, ValueMetric, CounterEvent, HttpStartStop
46+ -no-filter -n, no filter. Display all messages
47+ ```
48+
3249### With Interactive Prompt
3350
3451``` bash
3552cf nozzle
53+ cf app-nozzle myapp
3654```
3755
3856### Without Interactive Prompt
@@ -42,33 +60,43 @@ Error message will be displayed for unrecognized filter type
4260``` bash
4361# For debug
4462cf nozzle --debug
63+ cf app-nozzle myapp --debug
4564
4665# For all messages
4766cf nozzle --no-filter
67+ cf app-nozzle myapp --no-filter
4868
4969# For Log Messages
5070cf nozzle --filter LogMessage
71+ cf app-nozzle myapp --filter LogMessage
5172
5273# For HttpStart
5374cf nozzle --filter HttpStart
75+ cf app-nozzle myapp --filter HttpStart
5476
5577# For HttpStartStop
5678cf nozzle --filter HttpStartStop
79+ cf app-nozzle myapp --filter HttpStartStop
5780
5881# For HttpStop
5982cf nozzle --filter HttpStop
83+ cf app-nozzle myapp --filter HttpStop
6084
6185# For ValueMetric
6286cf nozzle --filter ValueMetric
87+ cf app-nozzle myapp --filter ValueMetric
6388
6489# For CounterEvent
6590cf nozzle --filter CounterEvent
91+ cf app-nozzle myapp --filter CounterEvent
6692
6793# For ContainerMetric
6894cf nozzle --filter ContainerMetric
95+ cf app-nozzle myapp --filter ContainerMetric
6996
7097# For Error
7198cf nozzle --filter Error
99+ cf app-nozzle myapp --filter Error
72100```
73101
74102#### Subscription ID
0 commit comments