├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── db.json ├── deploy └── crocodile-deployment.yml ├── docs.md ├── grafana └── crocodile-metrics-dashboard.json ├── keda └── keda-prometheus-scaledobject.yml ├── package.json ├── performance-test.js └── server.js /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.logdk -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/example-kubernetes-autoscaling-nodejs-api/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/example-kubernetes-autoscaling-nodejs-api/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/example-kubernetes-autoscaling-nodejs-api/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/example-kubernetes-autoscaling-nodejs-api/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/example-kubernetes-autoscaling-nodejs-api/HEAD/README.md -------------------------------------------------------------------------------- /db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/example-kubernetes-autoscaling-nodejs-api/HEAD/db.json -------------------------------------------------------------------------------- /deploy/crocodile-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/example-kubernetes-autoscaling-nodejs-api/HEAD/deploy/crocodile-deployment.yml -------------------------------------------------------------------------------- /docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/example-kubernetes-autoscaling-nodejs-api/HEAD/docs.md -------------------------------------------------------------------------------- /grafana/crocodile-metrics-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/example-kubernetes-autoscaling-nodejs-api/HEAD/grafana/crocodile-metrics-dashboard.json -------------------------------------------------------------------------------- /keda/keda-prometheus-scaledobject.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/example-kubernetes-autoscaling-nodejs-api/HEAD/keda/keda-prometheus-scaledobject.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/example-kubernetes-autoscaling-nodejs-api/HEAD/package.json -------------------------------------------------------------------------------- /performance-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/example-kubernetes-autoscaling-nodejs-api/HEAD/performance-test.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/example-kubernetes-autoscaling-nodejs-api/HEAD/server.js --------------------------------------------------------------------------------