├── .gitattributes ├── .gitignore ├── README.md ├── live-debugging ├── .Dockerignore ├── Dockerfile ├── LiveDebug.fsproj ├── Program.fs ├── README.md ├── build.sh └── run.sh ├── memory-leaks ├── .Dockerignore ├── Dockerfile.2.2 ├── Dockerfile.3.0 ├── MemoryLeak.2.2.fsproj ├── MemoryLeak.3.0.fsproj ├── Program.fs ├── README.md ├── WebRoot │ └── main.css ├── build.sh ├── dump.sh ├── start.sh └── web.config ├── profile-cpu ├── .Dockerignore ├── Copy.fs ├── Dockerfile ├── Profile.fsproj ├── Program.fs ├── README.md ├── build.sh ├── start.sh └── trace.sh ├── slides.pdf └── slides.pptx /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baronfel/openfsharp-dotnetcore-profiling/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .ionide 3 | bin 4 | obj 5 | dump 6 | trace -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baronfel/openfsharp-dotnetcore-profiling/HEAD/README.md -------------------------------------------------------------------------------- /live-debugging/.Dockerignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | *.sh 4 | *.md -------------------------------------------------------------------------------- /live-debugging/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baronfel/openfsharp-dotnetcore-profiling/HEAD/live-debugging/Dockerfile -------------------------------------------------------------------------------- /live-debugging/LiveDebug.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baronfel/openfsharp-dotnetcore-profiling/HEAD/live-debugging/LiveDebug.fsproj -------------------------------------------------------------------------------- /live-debugging/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baronfel/openfsharp-dotnetcore-profiling/HEAD/live-debugging/Program.fs -------------------------------------------------------------------------------- /live-debugging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baronfel/openfsharp-dotnetcore-profiling/HEAD/live-debugging/README.md -------------------------------------------------------------------------------- /live-debugging/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baronfel/openfsharp-dotnetcore-profiling/HEAD/live-debugging/build.sh -------------------------------------------------------------------------------- /live-debugging/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baronfel/openfsharp-dotnetcore-profiling/HEAD/live-debugging/run.sh -------------------------------------------------------------------------------- /memory-leaks/.Dockerignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | *.sh 4 | dump -------------------------------------------------------------------------------- /memory-leaks/Dockerfile.2.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baronfel/openfsharp-dotnetcore-profiling/HEAD/memory-leaks/Dockerfile.2.2 -------------------------------------------------------------------------------- /memory-leaks/Dockerfile.3.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baronfel/openfsharp-dotnetcore-profiling/HEAD/memory-leaks/Dockerfile.3.0 -------------------------------------------------------------------------------- /memory-leaks/MemoryLeak.2.2.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baronfel/openfsharp-dotnetcore-profiling/HEAD/memory-leaks/MemoryLeak.2.2.fsproj -------------------------------------------------------------------------------- /memory-leaks/MemoryLeak.3.0.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baronfel/openfsharp-dotnetcore-profiling/HEAD/memory-leaks/MemoryLeak.3.0.fsproj -------------------------------------------------------------------------------- /memory-leaks/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baronfel/openfsharp-dotnetcore-profiling/HEAD/memory-leaks/Program.fs -------------------------------------------------------------------------------- /memory-leaks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baronfel/openfsharp-dotnetcore-profiling/HEAD/memory-leaks/README.md -------------------------------------------------------------------------------- /memory-leaks/WebRoot/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baronfel/openfsharp-dotnetcore-profiling/HEAD/memory-leaks/WebRoot/main.css -------------------------------------------------------------------------------- /memory-leaks/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baronfel/openfsharp-dotnetcore-profiling/HEAD/memory-leaks/build.sh -------------------------------------------------------------------------------- /memory-leaks/dump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baronfel/openfsharp-dotnetcore-profiling/HEAD/memory-leaks/dump.sh -------------------------------------------------------------------------------- /memory-leaks/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baronfel/openfsharp-dotnetcore-profiling/HEAD/memory-leaks/start.sh -------------------------------------------------------------------------------- /memory-leaks/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baronfel/openfsharp-dotnetcore-profiling/HEAD/memory-leaks/web.config -------------------------------------------------------------------------------- /profile-cpu/.Dockerignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | trace 4 | *.sh -------------------------------------------------------------------------------- /profile-cpu/Copy.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baronfel/openfsharp-dotnetcore-profiling/HEAD/profile-cpu/Copy.fs -------------------------------------------------------------------------------- /profile-cpu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baronfel/openfsharp-dotnetcore-profiling/HEAD/profile-cpu/Dockerfile -------------------------------------------------------------------------------- /profile-cpu/Profile.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baronfel/openfsharp-dotnetcore-profiling/HEAD/profile-cpu/Profile.fsproj -------------------------------------------------------------------------------- /profile-cpu/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baronfel/openfsharp-dotnetcore-profiling/HEAD/profile-cpu/Program.fs -------------------------------------------------------------------------------- /profile-cpu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baronfel/openfsharp-dotnetcore-profiling/HEAD/profile-cpu/README.md -------------------------------------------------------------------------------- /profile-cpu/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baronfel/openfsharp-dotnetcore-profiling/HEAD/profile-cpu/build.sh -------------------------------------------------------------------------------- /profile-cpu/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baronfel/openfsharp-dotnetcore-profiling/HEAD/profile-cpu/start.sh -------------------------------------------------------------------------------- /profile-cpu/trace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baronfel/openfsharp-dotnetcore-profiling/HEAD/profile-cpu/trace.sh -------------------------------------------------------------------------------- /slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baronfel/openfsharp-dotnetcore-profiling/HEAD/slides.pdf -------------------------------------------------------------------------------- /slides.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baronfel/openfsharp-dotnetcore-profiling/HEAD/slides.pptx --------------------------------------------------------------------------------