Skip to content
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.

bygui86/observability

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Observability demos

Useful instructions

Port forwarding

tracing

kubectl port-forward -n tracing svc/jaeger-query 16686:80 &>/dev/null &
open http://localhost:16686

monitoring

kubectl port-forward -n monitoring svc/prometheus-k8s 9090:9090 &>/dev/null &
open http://localhost:9090
kubectl port-forward -n monitoring svc/grafana 3000:3000 &>/dev/null &
open http://localhost:3000

logging

kubectl port-forward -n logging svc/kibana 5601:5601 &>/dev/null &
open http://localhost:5601

tools

kubectl port-forward -n tools svc/weave-scope-app 4040:4040 &>/dev/null &
open http://localhost:4040

applications

kubectl port-forward -n black-sheep svc/client-app 8080:8080 &>/dev/null &
open http://localhost:8080/apis/users
kubectl port-forward -n white-rabbit svc/client-app 8081:8080 &>/dev/null &
open http://localhost:8081/apis/users

Traffic generation

./applications/black-sheep/generate-traffic.sh
./applications/white-rabbit/generate-traffic.sh

Roadmap