├── .gitignore ├── LICENSE ├── README.md ├── config ├── datasources │ └── datasource.yaml ├── otel-collector.yaml └── tempo.yaml ├── docker-compose.yaml ├── example.js ├── media ├── diagram.png └── trace.png └── services ├── bar ├── Dockerfile ├── bar.py └── requirements.txt └── foo ├── Dockerfile ├── foo.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgzlopes/foobar-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgzlopes/foobar-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgzlopes/foobar-demo/HEAD/README.md -------------------------------------------------------------------------------- /config/datasources/datasource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgzlopes/foobar-demo/HEAD/config/datasources/datasource.yaml -------------------------------------------------------------------------------- /config/otel-collector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgzlopes/foobar-demo/HEAD/config/otel-collector.yaml -------------------------------------------------------------------------------- /config/tempo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgzlopes/foobar-demo/HEAD/config/tempo.yaml -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgzlopes/foobar-demo/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgzlopes/foobar-demo/HEAD/example.js -------------------------------------------------------------------------------- /media/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgzlopes/foobar-demo/HEAD/media/diagram.png -------------------------------------------------------------------------------- /media/trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgzlopes/foobar-demo/HEAD/media/trace.png -------------------------------------------------------------------------------- /services/bar/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgzlopes/foobar-demo/HEAD/services/bar/Dockerfile -------------------------------------------------------------------------------- /services/bar/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgzlopes/foobar-demo/HEAD/services/bar/bar.py -------------------------------------------------------------------------------- /services/bar/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgzlopes/foobar-demo/HEAD/services/bar/requirements.txt -------------------------------------------------------------------------------- /services/foo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgzlopes/foobar-demo/HEAD/services/foo/Dockerfile -------------------------------------------------------------------------------- /services/foo/foo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgzlopes/foobar-demo/HEAD/services/foo/foo.py -------------------------------------------------------------------------------- /services/foo/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgzlopes/foobar-demo/HEAD/services/foo/requirements.txt --------------------------------------------------------------------------------