telemetry: document sd/prom manifest locations (#392)

By reading the docs, I can't tell where are these config/monitoring stuff.

So I'm adding sub-steps to (a) clone repo + cd + checkout to the release tag,
then (b) apply them.

Please /cc someone who knows about this stuff to verify.

Signed-off-by: Ahmet Alp Balkan <ahmetb@google.com>
This commit is contained in:
Ahmet Alp Balkan 2018-09-12 13:36:17 -07:00 committed by Knative Prow Robot
parent 497dc50cd9
commit a50281602f
1 changed files with 17 additions and 7 deletions

View File

@ -93,13 +93,23 @@ own Fluentd image and modify the configuration first. See
2. [Set up a logging plugin](setting-up-a-logging-plugin.md).
3. Install Knative monitoring components:
```shell
kubectl apply --recursive --filename config/monitoring/100-common \
--filename config/monitoring/150-stackdriver-prod \
--filename third_party/config/monitoring/common \
--filename config/monitoring/200-common \
--filename config/monitoring/200-common/100-istio.yaml
```
a. Clone the Knative Serving repository:
```shell
git clone https://github.com/knative/serving knative-serving
cd knative-serving
git checkout v0.1.1
```
b. Apply the monitoring manifests:
```shell
kubectl apply --recursive --filename config/monitoring/100-common \
--filename config/monitoring/150-stackdriver-prod \
--filename third_party/config/monitoring/common \
--filename config/monitoring/200-common \
--filename config/monitoring/200-common/100-istio.yaml
```
## Learn More