summaryrefslogtreecommitdiffstats
path: root/docs/tracing.rst
diff options
context:
space:
mode:
authorYujun Zhang <zhang.yujunz@zte.com.cn>2018-04-03 16:48:24 +0800
committerYujun Zhang <zhang.yujunz@zte.com.cn>2018-04-04 09:05:06 +0800
commitc8a6fe5bb4233eb0551b8424f5d57121e86124a1 (patch)
treee20b2d5586b9b1da5afdd2e90f0dfc83bf3b00b5 /docs/tracing.rst
parent67b7fb49e6ea6ac9c2547af263355e5f1aeade42 (diff)
Move design document to dedicated folder
Change-Id: I20c85b7116cd2b29d0efcaae5ee0b0381a685bbb Signed-off-by: Yujun Zhang <zhang.yujunz@zte.com.cn>
Diffstat (limited to 'docs/tracing.rst')
-rw-r--r--docs/tracing.rst44
1 files changed, 0 insertions, 44 deletions
diff --git a/docs/tracing.rst b/docs/tracing.rst
deleted file mode 100644
index 79d686c..0000000
--- a/docs/tracing.rst
+++ /dev/null
@@ -1,44 +0,0 @@
-#######
-Tracing
-#######
-
-************
-Installation
-************
-
-Currently, we use the Jaeger tracing all-in-one Kubernetes template for development and testing,
-which uses in-memory storage. It can be deployed to the istio-system namespace with the
-following command::
-
- kubectl apply -n istio-system -f https://raw.githubusercontent.com/jaegertracing/jaeger-kubernetes/master/all-in-one/jaeger-all-in-one-template.yml
-
-The standard Jaeger REST port is at 16686. To make this service available outside of the
-Kubernetes cluster, use the following command::
-
- kubectl expose -n istio-system deployment jaeger-deployment --port=16686 --type=NodePort
-
-Kubernetes will expose the Jaeger service on another port, which can be found with::
-
- kubectl get svc -n istio-system
-
-An example listing from the command above is shown below where the Jaeger service is exposed
-externally on port 30888::
-
- istio-system jaeger-deployment NodePort 10.104.113.94 <none> 16686:30888/TCP
-
-Jaeger will be accessible using the host IP of the Kubernetes cluster and port provided.
-
-********
-Validate
-********
-
-The script in ``clover/tracing`` validates Jaeger installation::
-
- python clover/tracing/validate.py
-
-It validates the installation with the following criteria:
-
-#. Existence of Jaeger all-in-one deployment using Kubernetes
-#. Jaeger service is accessible using IP address and port configured in installation steps
-#. Jaeger can retrieve default service listing for default Istio components
-#. TBD - consider installation of production setup with cassandra or elastic search