class Async::Container::Statistics

def as_json(...)

@returns [Hash] The statistics as a hash.

Generate a hash representation of the statistics.
def as_json(...)
	{
		spawns: @spawns,
		restarts: @restarts,
		failures: @failures,
	}
end