Owl.Reflection.GetServiceInfo(name: string): ServiceInfo | nil
Server OnlyInspects 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
Related Types
local dataInfo = Owl.Reflection.GetServiceInfo("DataService")
if dataInfo then
print("DataService version:", dataInfo.Version)
print("Active hooks:", table.concat(dataInfo.Hooks, ", "))
end