Package runtime exposes information about the resource usage of the application.
It also provides a way to run code in a new background context of a module.
This package does not work on App Engine "flexible environment".
RunInBackground runs f in a background goroutine in this process.
f is provided a context that may outlast the context provided to RunInBackground.
This is only valid to invoke from a service set to basic or manual scaling.
Statistics
typeStatisticsstruct{// CPU records the CPU consumed by this instance, in megacycles.CPUstruct{Totalfloat64Rate1Mfloat64// consumption rate over one minuteRate10Mfloat64// consumption rate over ten minutes}// RAM records the memory used by the instance, in megabytes.RAMstruct{Currentfloat64Average1Mfloat64// average usage over one minuteAverage10Mfloat64// average usage over ten minutes}}
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-05 UTC."],[[["The `runtime` package provides details about an application's resource usage and allows running code in a new background context."],["The package is specifically for the App Engine standard environment and is not compatible with the App Engine flexible environment."],["The `RunInBackground` function enables the execution of a function in a background goroutine within the current process, with a context that can extend beyond the original context's lifespan, usable only in basic or manual scaling environments."],["The `Statistics` struct within the `runtime` package contains information on CPU and RAM usage, including total consumption, current usage, and average rates over one and ten-minute intervals."],["The `Stats` function allows you to get a detailed view of the system's statistics in a package runtime format."]]],[]]