mirror of https://github.com/knative/docs.git
Update monitoring installation instructions to take easy install steps in mind (#109)
* Update monitoring installation instructions to take easy install steps in mind. * Documentation fixes.
This commit is contained in:
parent
302d008208
commit
41de065e32
|
@ -2,7 +2,7 @@
|
|||
|
||||
Follow this guide to install Knative components on a platform of your choice.
|
||||
|
||||
## Choosing a Kubernetis cluster
|
||||
## Choosing a Kubernetes cluster
|
||||
|
||||
To get started with Knative, you need a Kubernetes cluster. If you aren't
|
||||
sure what Kubernetes platform is right for you, see
|
||||
|
|
|
@ -73,7 +73,6 @@ If you see this condition, check the following to continue debugging:
|
|||
|
||||
* [Check Pod status](#check-pod-status)
|
||||
* [Check application logs](#check-application-logs)
|
||||
* [Check Istio routing](#check-istio-routing)
|
||||
|
||||
If you see other conditions, to debug further:
|
||||
|
||||
|
|
|
@ -1,10 +1,18 @@
|
|||
# Monitoring, Logging and Tracing Installation
|
||||
|
||||
Knative Serving offers two different monitoring setups: One that uses Elasticsearch, Kibana, Prometheus and Grafana and another that uses Stackdriver, Prometheus and Grafana. See below for installation instructions for these two setups. You can install only one of these two setups and side-by-side installation of these two are not supported.
|
||||
Knative Serving offers two different monitoring setups:
|
||||
One that uses Elasticsearch, Kibana, Prometheus and Grafana and
|
||||
another that uses Stackdriver, Prometheus and Grafana. See below
|
||||
for installation instructions for these two setups. You can install
|
||||
only one of these two setups and side-by-side installation of these two are not supported.
|
||||
|
||||
## Elasticsearch, Kibana, Prometheus & Grafana Setup
|
||||
|
||||
First run:
|
||||
*If you installed Knative Serving using [Easy Install](../install/README.md#Installing-Knative) guide,
|
||||
skip this step and continue to [Create Elasticsearch Indices](#Create-Elasticsearch-Indices)*
|
||||
|
||||
|
||||
Run:
|
||||
|
||||
```shell
|
||||
kubectl apply -R -f config/monitoring/100-common \
|
||||
|
@ -23,6 +31,7 @@ kubectl get pods -n monitoring --watch
|
|||
|
||||
CTRL+C when it's done.
|
||||
|
||||
### Create Elasticsearch Indices
|
||||
We will create two indexes in ElasticSearch - one for application logs and one for request traces.
|
||||
To create the indexes, open Kibana Index Management UI at this [link](http://localhost:8001/api/v1/namespaces/monitoring/services/kibana-logging/proxy/app/kibana#/management/kibana/index)
|
||||
(*it might take a couple of minutes for the proxy to work the first time after the installation*).
|
||||
|
|
Loading…
Reference in New Issue