This is a simple netcore web api project. It only exists to be used as a sample project for profiling.
Check netcore-kubernetes-profiling to see it in use.
This simple project only supports a few endpoints:
/api/fibonacci?pos=<value>
Requires an integer value. Returns the fibonacci sequence calculated to the requested position. 0 based.
/api/echo?echo=<value>
Echoes the passed in query parameter.
/api/fail
Terminates the application using Environment.FailFast()
.