mirror of https://github.com/knative/docs.git
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:
parent
497dc50cd9
commit
a50281602f
|
@ -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).
|
2. [Set up a logging plugin](setting-up-a-logging-plugin.md).
|
||||||
3. Install Knative monitoring components:
|
3. Install Knative monitoring components:
|
||||||
|
|
||||||
```shell
|
a. Clone the Knative Serving repository:
|
||||||
kubectl apply --recursive --filename config/monitoring/100-common \
|
|
||||||
--filename config/monitoring/150-stackdriver-prod \
|
```shell
|
||||||
--filename third_party/config/monitoring/common \
|
git clone https://github.com/knative/serving knative-serving
|
||||||
--filename config/monitoring/200-common \
|
cd knative-serving
|
||||||
--filename config/monitoring/200-common/100-istio.yaml
|
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
|
## Learn More
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue