class Profiler
Profiler.
Methods
__construct(ProfilerStorageInterface $storage, LoggerInterface $logger = null) Constructor. | ||
disable() Disables the profiler. | ||
enable() Enables the profiler. | ||
Profile|false | loadProfileFromResponse(Response $response) Loads the Profile for the given Response. | |
Profile | loadProfile(string $token) Loads the Profile for the given token. | |
bool | saveProfile(Profile $profile) Saves a Profile. | |
purge() Purges all data from the storage. | ||
array | find(string $ip, string $url, string $limit, string $method, string $start, string $end, string $statusCode = null) Finds profiler tokens for the given criteria. | |
Profile|null | collect(Request $request, Response $response, Exception $exception = null) Collects data for the given Response. | |
array | all() Gets the Collectors associated with this profiler. | |
set(array $collectors = array()) Sets the Collectors associated with this profiler. | ||
add(DataCollectorInterface $collector) Adds a Collector. | ||
bool | has(string $name) Returns true if a Collector for the given name exists. | |
DataCollectorInterface | get(string $name) Gets a Collector by name. |
Details
__construct(ProfilerStorageInterface $storage, LoggerInterface $logger = null)
Constructor.
disable()
Disables the profiler.
enable()
Enables the profiler.
Profile loadProfile(string $token)
Loads the Profile for the given token.
bool saveProfile(Profile $profile)
Saves a Profile.
purge()
Purges all data from the storage.
array find(string $ip, string $url, string $limit, string $method, string $start, string $end, string $statusCode = null)
Finds profiler tokens for the given criteria.
Profile|null collect(Request $request, Response $response, Exception $exception = null)
Collects data for the given Response.
array all()
Gets the Collectors associated with this profiler.
set(array $collectors = array())
Sets the Collectors associated with this profiler.
add(DataCollectorInterface $collector)
Adds a Collector.
bool has(string $name)
Returns true if a Collector for the given name exists.
DataCollectorInterface get(string $name)
Gets a Collector by name.
Please login to continue.