├── .dockerignore ├── .github └── workflows │ └── on-push-master-publish-chart.yml ├── .gitignore ├── Dockerfile.backend ├── Dockerfile.frontend ├── LICENSE ├── README.md ├── argocd ├── fluent-bit.yaml ├── grafana.yaml ├── ksp.yaml ├── loki.yaml ├── otel-demo-backend.yaml ├── otel-demo-frontend.yaml ├── otel-demo-github.yaml ├── project.yaml ├── promtail.yaml └── tempo.yaml ├── charts ├── otel-demo-backend │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ └── values.yaml └── otel-demo-frontend │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── hpa.yaml │ ├── ingress.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ ├── servicemonitor.yaml │ └── tests │ │ └── test-connection.yaml │ └── values.yaml ├── cmd ├── backend │ └── main.go └── frontend │ └── main.go ├── docker-compose.yaml ├── files ├── dashboard.json ├── tempo-query.yaml └── tempo.yaml ├── go.mod └── go.sum /.dockerignore: -------------------------------------------------------------------------------- 1 | README.md 2 | charts 3 | docker-compose.yaml 4 | vendor 5 | -------------------------------------------------------------------------------- /.github/workflows/on-push-master-publish-chart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/.github/workflows/on-push-master-publish-chart.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /Dockerfile.backend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/Dockerfile.backend -------------------------------------------------------------------------------- /Dockerfile.frontend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/Dockerfile.frontend -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/README.md -------------------------------------------------------------------------------- /argocd/fluent-bit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/argocd/fluent-bit.yaml -------------------------------------------------------------------------------- /argocd/grafana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/argocd/grafana.yaml -------------------------------------------------------------------------------- /argocd/ksp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/argocd/ksp.yaml -------------------------------------------------------------------------------- /argocd/loki.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/argocd/loki.yaml -------------------------------------------------------------------------------- /argocd/otel-demo-backend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/argocd/otel-demo-backend.yaml -------------------------------------------------------------------------------- /argocd/otel-demo-frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/argocd/otel-demo-frontend.yaml -------------------------------------------------------------------------------- /argocd/otel-demo-github.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/argocd/otel-demo-github.yaml -------------------------------------------------------------------------------- /argocd/project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/argocd/project.yaml -------------------------------------------------------------------------------- /argocd/promtail.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/argocd/promtail.yaml -------------------------------------------------------------------------------- /argocd/tempo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/argocd/tempo.yaml -------------------------------------------------------------------------------- /charts/otel-demo-backend/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/charts/otel-demo-backend/.helmignore -------------------------------------------------------------------------------- /charts/otel-demo-backend/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/charts/otel-demo-backend/Chart.yaml -------------------------------------------------------------------------------- /charts/otel-demo-backend/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/charts/otel-demo-backend/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/otel-demo-backend/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/charts/otel-demo-backend/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/otel-demo-backend/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/charts/otel-demo-backend/templates/hpa.yaml -------------------------------------------------------------------------------- /charts/otel-demo-backend/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/charts/otel-demo-backend/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/otel-demo-backend/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/charts/otel-demo-backend/templates/service.yaml -------------------------------------------------------------------------------- /charts/otel-demo-backend/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/charts/otel-demo-backend/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/otel-demo-backend/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/charts/otel-demo-backend/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /charts/otel-demo-backend/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/charts/otel-demo-backend/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /charts/otel-demo-backend/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/charts/otel-demo-backend/values.yaml -------------------------------------------------------------------------------- /charts/otel-demo-frontend/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/charts/otel-demo-frontend/.helmignore -------------------------------------------------------------------------------- /charts/otel-demo-frontend/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/charts/otel-demo-frontend/Chart.yaml -------------------------------------------------------------------------------- /charts/otel-demo-frontend/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/charts/otel-demo-frontend/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/otel-demo-frontend/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/charts/otel-demo-frontend/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/otel-demo-frontend/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/charts/otel-demo-frontend/templates/hpa.yaml -------------------------------------------------------------------------------- /charts/otel-demo-frontend/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/charts/otel-demo-frontend/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/otel-demo-frontend/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/charts/otel-demo-frontend/templates/service.yaml -------------------------------------------------------------------------------- /charts/otel-demo-frontend/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/charts/otel-demo-frontend/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/otel-demo-frontend/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/charts/otel-demo-frontend/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /charts/otel-demo-frontend/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/charts/otel-demo-frontend/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /charts/otel-demo-frontend/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/charts/otel-demo-frontend/values.yaml -------------------------------------------------------------------------------- /cmd/backend/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/cmd/backend/main.go -------------------------------------------------------------------------------- /cmd/frontend/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/cmd/frontend/main.go -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /files/dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/files/dashboard.json -------------------------------------------------------------------------------- /files/tempo-query.yaml: -------------------------------------------------------------------------------- 1 | backend: tempo:3100 2 | -------------------------------------------------------------------------------- /files/tempo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/files/tempo.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtyr/otel-demo/HEAD/go.sum --------------------------------------------------------------------------------