├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ └── publish-and-deploy-images.yaml ├── .gitignore ├── LICENSE ├── README.md ├── alloy ├── config.alloy ├── endpoints-cloud.json └── endpoints.json ├── beyla └── config.yaml ├── cloud ├── dashboard-metrics-logs-traces-1.json └── envvars-grafana-cloud-unconfigured.sh ├── docker-compose-cloud.yml ├── docker-compose-otel.yml ├── docker-compose.yml ├── grafana ├── .DS_Store ├── definitions │ ├── k6.json │ ├── mlt-erroring-endpoints.json │ ├── mlt.json │ └── traces-in-dashboards.json └── provisioning │ ├── dashboards │ └── mlt.yaml │ ├── datasources │ └── datasources.yaml │ └── plugins │ └── loki-explorer-app.yaml ├── images └── Introduction to MLTP Arch Diagram.png ├── k6 └── mythical-loadtest.js ├── k8s └── mythical │ ├── mythical-beasts-deployment.yaml │ ├── mythical-beasts-persistentvolumeclaim.yaml │ └── mythical-beasts-service.yaml ├── loki └── loki.yaml ├── mimir └── mimir.yaml ├── otel └── otel.yml ├── source ├── .DS_Store ├── build-source.sh ├── common │ ├── endpoints.js │ ├── logging.js │ ├── queue.js │ └── tracing.js ├── docker │ └── Dockerfile ├── mythical-beasts-frontend │ ├── .gitignore │ ├── Dockerfile │ ├── nginx.conf │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── index.html │ │ └── manifest.json │ ├── rsbuild.config.js │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── components │ │ ├── BeastManager.css │ │ └── BeastManager.js │ │ ├── faro.js │ │ ├── index.css │ │ ├── index.js │ │ └── services │ │ └── api.js ├── mythical-beasts-recorder │ ├── index.js │ ├── package-lock.json │ └── package.json ├── mythical-beasts-requester │ ├── index.js │ ├── package-lock.json │ └── package.json └── mythical-beasts-server │ ├── index.js │ ├── package-lock.json │ └── package.json └── tempo └── tempo.yaml /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/publish-and-deploy-images.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/.github/workflows/publish-and-deploy-images.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/README.md -------------------------------------------------------------------------------- /alloy/config.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/alloy/config.alloy -------------------------------------------------------------------------------- /alloy/endpoints-cloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/alloy/endpoints-cloud.json -------------------------------------------------------------------------------- /alloy/endpoints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/alloy/endpoints.json -------------------------------------------------------------------------------- /beyla/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/beyla/config.yaml -------------------------------------------------------------------------------- /cloud/dashboard-metrics-logs-traces-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/cloud/dashboard-metrics-logs-traces-1.json -------------------------------------------------------------------------------- /cloud/envvars-grafana-cloud-unconfigured.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/cloud/envvars-grafana-cloud-unconfigured.sh -------------------------------------------------------------------------------- /docker-compose-cloud.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/docker-compose-cloud.yml -------------------------------------------------------------------------------- /docker-compose-otel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/docker-compose-otel.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /grafana/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/grafana/.DS_Store -------------------------------------------------------------------------------- /grafana/definitions/k6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/grafana/definitions/k6.json -------------------------------------------------------------------------------- /grafana/definitions/mlt-erroring-endpoints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/grafana/definitions/mlt-erroring-endpoints.json -------------------------------------------------------------------------------- /grafana/definitions/mlt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/grafana/definitions/mlt.json -------------------------------------------------------------------------------- /grafana/definitions/traces-in-dashboards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/grafana/definitions/traces-in-dashboards.json -------------------------------------------------------------------------------- /grafana/provisioning/dashboards/mlt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/grafana/provisioning/dashboards/mlt.yaml -------------------------------------------------------------------------------- /grafana/provisioning/datasources/datasources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/grafana/provisioning/datasources/datasources.yaml -------------------------------------------------------------------------------- /grafana/provisioning/plugins/loki-explorer-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/grafana/provisioning/plugins/loki-explorer-app.yaml -------------------------------------------------------------------------------- /images/Introduction to MLTP Arch Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/images/Introduction to MLTP Arch Diagram.png -------------------------------------------------------------------------------- /k6/mythical-loadtest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/k6/mythical-loadtest.js -------------------------------------------------------------------------------- /k8s/mythical/mythical-beasts-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/k8s/mythical/mythical-beasts-deployment.yaml -------------------------------------------------------------------------------- /k8s/mythical/mythical-beasts-persistentvolumeclaim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/k8s/mythical/mythical-beasts-persistentvolumeclaim.yaml -------------------------------------------------------------------------------- /k8s/mythical/mythical-beasts-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/k8s/mythical/mythical-beasts-service.yaml -------------------------------------------------------------------------------- /loki/loki.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/loki/loki.yaml -------------------------------------------------------------------------------- /mimir/mimir.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/mimir/mimir.yaml -------------------------------------------------------------------------------- /otel/otel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/otel/otel.yml -------------------------------------------------------------------------------- /source/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/source/.DS_Store -------------------------------------------------------------------------------- /source/build-source.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/source/build-source.sh -------------------------------------------------------------------------------- /source/common/endpoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/source/common/endpoints.js -------------------------------------------------------------------------------- /source/common/logging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/source/common/logging.js -------------------------------------------------------------------------------- /source/common/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/source/common/queue.js -------------------------------------------------------------------------------- /source/common/tracing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/source/common/tracing.js -------------------------------------------------------------------------------- /source/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/source/docker/Dockerfile -------------------------------------------------------------------------------- /source/mythical-beasts-frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/source/mythical-beasts-frontend/.gitignore -------------------------------------------------------------------------------- /source/mythical-beasts-frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/source/mythical-beasts-frontend/Dockerfile -------------------------------------------------------------------------------- /source/mythical-beasts-frontend/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/source/mythical-beasts-frontend/nginx.conf -------------------------------------------------------------------------------- /source/mythical-beasts-frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/source/mythical-beasts-frontend/package-lock.json -------------------------------------------------------------------------------- /source/mythical-beasts-frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/source/mythical-beasts-frontend/package.json -------------------------------------------------------------------------------- /source/mythical-beasts-frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/source/mythical-beasts-frontend/public/index.html -------------------------------------------------------------------------------- /source/mythical-beasts-frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/source/mythical-beasts-frontend/public/manifest.json -------------------------------------------------------------------------------- /source/mythical-beasts-frontend/rsbuild.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/source/mythical-beasts-frontend/rsbuild.config.js -------------------------------------------------------------------------------- /source/mythical-beasts-frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/source/mythical-beasts-frontend/src/App.css -------------------------------------------------------------------------------- /source/mythical-beasts-frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/source/mythical-beasts-frontend/src/App.js -------------------------------------------------------------------------------- /source/mythical-beasts-frontend/src/components/BeastManager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/source/mythical-beasts-frontend/src/components/BeastManager.css -------------------------------------------------------------------------------- /source/mythical-beasts-frontend/src/components/BeastManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/source/mythical-beasts-frontend/src/components/BeastManager.js -------------------------------------------------------------------------------- /source/mythical-beasts-frontend/src/faro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/source/mythical-beasts-frontend/src/faro.js -------------------------------------------------------------------------------- /source/mythical-beasts-frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/source/mythical-beasts-frontend/src/index.css -------------------------------------------------------------------------------- /source/mythical-beasts-frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/source/mythical-beasts-frontend/src/index.js -------------------------------------------------------------------------------- /source/mythical-beasts-frontend/src/services/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/source/mythical-beasts-frontend/src/services/api.js -------------------------------------------------------------------------------- /source/mythical-beasts-recorder/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/source/mythical-beasts-recorder/index.js -------------------------------------------------------------------------------- /source/mythical-beasts-recorder/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/source/mythical-beasts-recorder/package-lock.json -------------------------------------------------------------------------------- /source/mythical-beasts-recorder/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/source/mythical-beasts-recorder/package.json -------------------------------------------------------------------------------- /source/mythical-beasts-requester/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/source/mythical-beasts-requester/index.js -------------------------------------------------------------------------------- /source/mythical-beasts-requester/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/source/mythical-beasts-requester/package-lock.json -------------------------------------------------------------------------------- /source/mythical-beasts-requester/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/source/mythical-beasts-requester/package.json -------------------------------------------------------------------------------- /source/mythical-beasts-server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/source/mythical-beasts-server/index.js -------------------------------------------------------------------------------- /source/mythical-beasts-server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/source/mythical-beasts-server/package-lock.json -------------------------------------------------------------------------------- /source/mythical-beasts-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/source/mythical-beasts-server/package.json -------------------------------------------------------------------------------- /tempo/tempo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/intro-to-mltp/HEAD/tempo/tempo.yaml --------------------------------------------------------------------------------