123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474 |
- podSecurityContext:
- fsGroup: 1002
- containerSecurityContext:
- runAsUser: 1002
- containerPorts:
- http: 6555
- configOverrides:
- AUTOCOMPLETE_TTL: "1000000"
- secretConfigOverrides:
- QUERY_NAMES_MAX_AGE: "600"
- replicaCount: 1
- service:
- type: LoadBalancer
- ports:
- http: 80
- metrics:
- enabled: true
- extraDeploy:
- # Job to push some data to the Zipkin instance
- - |
- apiVersion: batch/v1
- kind: Job
- metadata:
- name: zipkin-add-data
- spec:
- template:
- spec:
- restartPolicy: OnFailure
- containers:
- - name: zipkin-job
- image: docker.io/bitnami/os-shell:latest
- command:
- - /bin/bash
- args:
- - -ec
- - |
- set -o errexit
- set -o nounset
- set -o pipefail
- # Set the endpoint URL
- host=zipkin
- port={{ .Values.service.ports.http }}
- retry_while() {
- local -r cmd="${1:?cmd is missing}"
- local -r retries="${2:-12}"
- local -r sleep_time="${3:-5}"
- local return_value=1
- read -r -a command <<< "$cmd"
- for ((i = 1 ; i <= retries ; i+=1 )); do
- "${command[@]}" && return_value=0 && break
- sleep "$sleep_time"
- done
- return $return_value
- }
- zipkin_ready() {
- # Test the TCP connection with a timeout
- if timeout 5 bash -c "</dev/tcp/$host/$port"; then
- return 0
- else
- return 1
- fi
- }
- echo "Waiting for the Zipkin instance"
- if ! retry_while "zipkin_ready" 300 2; then
- echo "Could not connect to the Zipkin instance"
- exit 1
- else
- echo "Zipkin ready! Running job"
- echo "0" > /tmp/ready
- curl -k -X POST {{ ternary "https" "http" .Values.tls.enabled }}://zipkin:$port/api/v2/spans -H'Content-Type: application/json' -d @/sampledata/yelp.json
- fi
- startupProbe:
- exec:
- command:
- - sh
- - -c
- - |
- if [ $(cat /tmp/ready) = "1" ]; then
- exit 0
- else
- exit 1
- fi
- initialDelaySeconds: 40
- periodSeconds: 20
- timeoutSeconds: 1
- failureThreshold: 15
- successThreshold: 1
- securityContext: {{- include "common.compatibility.renderSecurityContext" (dict "secContext" .Values.containerSecurityContext "context" $) | nindent 12 }}
- volumeMounts:
- - name: tmp
- mountPath: /tmp
- subPath: tmp-dir
- - name: sample-data
- mountPath: /sampledata
- volumes:
- - name: tmp
- emptyDir: {}
- - name: sample-data
- configMap:
- name: zipkin-test-data
- # ConfigMap with the sample data
- - |
- apiVersion: v1
- kind: ConfigMap
- metadata:
- name: zipkin-test-data
- data:
- # Taken from https://github.com/openzipkin/zipkin/blob/master/zipkin-lens/testdata/yelp.json
- yelp.json: |
- [
- {
- "traceId": "a03ee8fff1dcd9b9",
- "parentId": "f5f268651b2a2b34",
- "id": "15fc03927f0f68df",
- "kind": "CLIENT",
- "name": "post",
- "timestamp": 1571896375322000,
- "duration": 14000,
- "localEndpoint": {
- "serviceName": "mobile_api"
- },
- "remoteEndpoint": {
- "serviceName": "blt",
- "port": 31882
- },
- "tags": {
- "client_status_code": "200",
- "http.uri.client": "/visits",
- "request_budget": "9980",
- "tracer": "syslog2scribe.haproxy-synapse"
- }
- },
- {
- "traceId": "a03ee8fff1dcd9b9",
- "parentId": "f5f268651b2a2b34",
- "id": "7a778764a0d0b594",
- "kind": "CLIENT",
- "name": "get",
- "timestamp": 1571896375310000,
- "duration": 3000,
- "localEndpoint": {
- "serviceName": "mobile_api"
- },
- "remoteEndpoint": {
- "serviceName": "spectre",
- "port": 31286
- },
- "tags": {
- "client_status_code": "200",
- "http.uri.client": "/visits",
- "request_budget": "9989",
- "tracer": "syslog2scribe.haproxy-synapse"
- }
- },
- {
- "traceId": "a03ee8fff1dcd9b9",
- "parentId": "f5f268651b2a2b34",
- "id": "7a778764a0d0b594",
- "kind": "SERVER",
- "name": "get",
- "timestamp": 1571896375310740,
- "duration": 1490,
- "localEndpoint": {
- "serviceName": "spectre"
- },
- "tags": {
- "ecosystem": "prod",
- "habitat": "uswest1aprod",
- "http.uri.client": "/token/abcdefgh123456",
- "region": "uswest1-prod"
- },
- "shared": true
- },
- {
- "traceId": "a03ee8fff1dcd9b9",
- "parentId": "f5f268651b2a2b34",
- "id": "6a65182ea4f684c3",
- "kind": "CLIENT",
- "name": "set mobile_api_nonce",
- "timestamp": 1571896375302030,
- "duration": 1026,
- "localEndpoint": {
- "serviceName": "mobile_api",
- "port": 31049
- },
- "remoteEndpoint": {
- "serviceName": "memcache"
- },
- "tags": {
- "driver": "yelp_memcache",
- "method": "set",
- "requests": "1",
- "system": "mobile_api_nonce",
- "ttl": ""
- }
- },
- {
- "traceId": "a03ee8fff1dcd9b9",
- "parentId": "f5f268651b2a2b34",
- "id": "cb4d73f31cd90cae",
- "kind": "CLIENT",
- "name": "get_multi mobile_api_nonce",
- "timestamp": 1571896375300642,
- "duration": 1066,
- "localEndpoint": {
- "serviceName": "mobile_api",
- "port": 31049
- },
- "remoteEndpoint": {
- "serviceName": "memcache"
- },
- "tags": {
- "driver": "yelp_memcache",
- "hits": "0",
- "method": "get_multi",
- "requests": "1",
- "system": "mobile_api_nonce"
- }
- },
- {
- "traceId": "a03ee8fff1dcd9b9",
- "parentId": "2e8cfb154b59a41f",
- "id": "f5f268651b2a2b34",
- "kind": "SERVER",
- "name": "post /location/update/v4",
- "timestamp": 1571896375297103,
- "duration": 41740,
- "localEndpoint": {
- "serviceName": "mobile_api",
- "port": 31049
- },
- "tags": {
- "ecosystem": "prod",
- "habitat": "uswest1bprod",
- "http.route": "/location/update/v4",
- "http.uri": "/location/update/v4",
- "http.uri.qs": "/location/update/v4",
- "region": "uswest1-prod",
- "response_status_code": "200",
- "version_SHA": "6535284b1699df0a766384a648dc95c462a7313d"
- },
- "shared": true
- },
- {
- "traceId": "a03ee8fff1dcd9b9",
- "parentId": "2e8cfb154b59a41f",
- "id": "f5f268651b2a2b34",
- "kind": "CLIENT",
- "name": "post",
- "timestamp": 1571896375287000,
- "duration": 56000,
- "localEndpoint": {
- "serviceName": "yelp-main"
- },
- "remoteEndpoint": {
- "serviceName": "mobile_api",
- "port": 31049
- },
- "tags": {
- "client_status_code": "200",
- "http.uri.client": "/location/update/v4",
- "request_budget": "10003",
- "tracer": "syslog2scribe.haproxy-synapse"
- }
- },
- {
- "traceId": "a03ee8fff1dcd9b9",
- "parentId": "241cea1aa4cb2884",
- "id": "0facde7c9130fd93",
- "kind": "CLIENT",
- "name": "get_multi my_cache_name_v1",
- "timestamp": 1571896375272125,
- "duration": 233,
- "localEndpoint": {
- "serviceName": "yelp-main",
- "port": 31523
- },
- "remoteEndpoint": {
- "serviceName": "memcache"
- },
- "tags": {
- "driver": "core_memcache",
- "hits": "1",
- "method": "get_multi",
- "requests": "1"
- }
- },
- {
- "traceId": "a03ee8fff1dcd9b9",
- "parentId": "241cea1aa4cb2884",
- "id": "50b57281525a99d8",
- "kind": "CLIENT",
- "name": "commit",
- "timestamp": 1571896375272604,
- "duration": 374,
- "localEndpoint": {
- "serviceName": "yelp-main",
- "port": 31523
- },
- "remoteEndpoint": {
- "serviceName": "mysql"
- },
- "tags": {
- "query": "COMMIT"
- }
- },
- {
- "traceId": "a03ee8fff1dcd9b9",
- "parentId": "241cea1aa4cb2884",
- "id": "2b68987704862c4f",
- "kind": "CLIENT",
- "name": "get user_details_cache-20150901",
- "timestamp": 1571896375270438,
- "duration": 1068,
- "localEndpoint": {
- "serviceName": "yelp-main",
- "port": 31523
- },
- "remoteEndpoint": {
- "serviceName": "memcache"
- },
- "tags": {
- "driver": "core_memcache",
- "hits": "1",
- "method": "get",
- "requests": "1"
- }
- },
- {
- "traceId": "a03ee8fff1dcd9b9",
- "parentId": "668ed78ad94b35a1",
- "id": "241cea1aa4cb2884",
- "name": "txn: user_get_basic_and_scout_info",
- "timestamp": 1571896375269210,
- "duration": 3884,
- "localEndpoint": {
- "serviceName": "yelp-main",
- "port": 31523
- },
- "tags": {
- "calling_method": "src/logic/db/user.py:1234:get_user"
- }
- },
- {
- "traceId": "a03ee8fff1dcd9b9",
- "parentId": "241cea1aa4cb2884",
- "id": "b593cd7513dc736e",
- "kind": "CLIENT",
- "name": "begin",
- "timestamp": 1571896375269732,
- "duration": 445,
- "localEndpoint": {
- "serviceName": "yelp-main",
- "port": 31523
- },
- "remoteEndpoint": {
- "serviceName": "mysql"
- },
- "tags": {
- "query": "************"
- }
- },
- {
- "traceId": "a03ee8fff1dcd9b9",
- "parentId": "668ed78ad94b35a1",
- "id": "e7d1a2d5a788ac81",
- "kind": "CLIENT",
- "name": "get my_cache_name_v2",
- "timestamp": 1571896375268015,
- "duration": 993,
- "localEndpoint": {
- "serviceName": "yelp-main",
- "port": 31523
- },
- "remoteEndpoint": {
- "serviceName": "memcache"
- },
- "tags": {
- "driver": "core_memcache",
- "hits": "1",
- "method": "get",
- "requests": "1"
- }
- },
- {
- "traceId": "a03ee8fff1dcd9b9",
- "parentId": "2e8cfb154b59a41f",
- "id": "668ed78ad94b35a1",
- "kind": "SERVER",
- "name": "post api proxy proxy",
- "timestamp": 1571896375264995,
- "duration": 88935,
- "localEndpoint": {
- "serviceName": "yelp_main/api_proxy",
- "port": 31523
- },
- "annotations": [
- {
- "timestamp": 1571896375355436,
- "value": "py_zipkin.logging_end"
- }
- ],
- "tags": {
- "cprofile_enabled": "False",
- "datacenter": "us-west-1",
- "ecosystem": "prod",
- "habitat": "uswest1aprod",
- "host": "<host>",
- "http.route": "/*path",
- "http.uri": "/location/update/v4",
- "http.uri.qs": "/location/update/v4",
- "locale": "en_US",
- "logged_in": "False",
- "natural": "False",
- "owner_email": "",
- "paasta": "True",
- "region": "uswest1-prod",
- "request_budget": "10003",
- "request_budget_soft": "5003",
- "response_status_code": "200",
- "servlet": "proxy",
- "servlet_action": "proxy",
- "site": "api",
- "version_SHA": "5e83958d2c"
- },
- "shared": true
- },
- {
- "traceId": "a03ee8fff1dcd9b9",
- "parentId": "2e8cfb154b59a41f",
- "id": "668ed78ad94b35a1",
- "kind": "CLIENT",
- "name": "post",
- "timestamp": 1571896375239000,
- "duration": 125000,
- "localEndpoint": {
- "serviceName": "unknown"
- },
- "remoteEndpoint": {
- "serviceName": "yelp-main.mobile_api",
- "port": 31523
- },
- "tags": {
- "client_status_code": "200",
- "http.uri.client": "/location/update/v4",
- "request_budget": "10003",
- "tracer": "syslog2scribe.envoy"
- }
- },
- {
- "traceId": "a03ee8fff1dcd9b9",
- "id": "2e8cfb154b59a41f",
- "kind": "SERVER",
- "name": "post /location/update/v4",
- "timestamp": 1571896375237354,
- "duration": 131848,
- "localEndpoint": {
- "serviceName": "routing"
- },
- "tags": {
- "ecosystem": "prod",
- "habitat": "uswest1aprod",
- "http.uri.client": "/location/update/v4",
- "region": "uswest1-prod",
- "response_status_code": "200"
- },
- "shared": true
- }
- ]
|