Owl.Reflection.GetServiceInfo(name: string): ServiceInfo | nil

Server Only

Inspects a registered service to return lifecycle metrics, active hooks, exported client remotes and metadata.

Parameters

name*
string
Name identifier of the service to inspect.

Returns

ServiceInfo | nilDetailed metadata dictionary about the target service or nil if not found.

Related Types

local dataInfo = Owl.Reflection.GetServiceInfo("DataService")
if dataInfo then
    print("DataService version:", dataInfo.Version)
    print("Active hooks:", table.concat(dataInfo.Hooks, ", "))
end