Golang : Measure execution time for a function
Ok, this is another way to measure execution time of a Golang function. This method uses defer
and produce a footer to be included at the bottom of a web page. Nothing special, just another way.
Here you go!
package main
import (
"net/http"
"time"
)
func measureExecutionTime(startTime time.Time, w http.ResponseWriter, functionName string) {
timeTaken := time.Since(startTime)
footer := functionName + " took " + timeTaken.String() + " to complete. "
w.Write([]byte(footer))
}
func SayHelloWorld(w http.ResponseWriter, r *http.Request) {
// measure our function execution time
// and put the result at the footer
defer measureExecutionTime(time.Now(), w, "SayHelloWorld")
html := `<!DOCTYPE html><html><body>Hello World<br><br></body></html>`
w.Write([]byte(html))
}
func main() {
mux := http.NewServeMux()
mux.HandleFunc("/", SayHelloWorld)
http.ListenAndServe(":8080", mux)
}
Run the code above and point your browser to http://localhost:8080 and you should see this output(example):
Hello World
SayHelloWorld took 3.165µs to complete.
See also : Golang : Measure http.Get() execution time
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+8.2k Golang : Ackermann function example
+26.8k Golang : Find files by name - cross platform example
+5.9k Golang : Extract XML attribute data with attr field tag example
+27k Golang : Convert CSV data to JSON format and save to file
+25.4k Golang : missing Mercurial command
+16.2k Golang : Delete files by extension
+7.1k Linux : How to fix Brother HL-1110 printing blank page problem
+9.6k Golang : Ordinal and Ordinalize a given number to the English ordinal numeral
+11k Use systeminfo to find out installed Windows Hotfix(s) or updates
+9.1k Mac OSX : Get a process/daemon status information
+5.9k PHP : How to handle URI or URL with non-ASCII characters such as Chinese/Japanese/Korean(CJK) ?
+9.6k Golang : Function wrapper that takes arguments and return result example