ps_is_consumer_enabled
Syntax
sys.ps_is_consumer_enabled(consumer)
Description
ps_is_consumer_enabled
is a stored function available with the Sys Schema.
It returns an ENUM('YES','NO') depending on whether Performance Schema instrumentation for the given consumer is enabled, and NULL if not given a valid consumer name.
Examples
SELECT sys.ps_is_consumer_enabled('global_instrumentation'); +------------------------------------------------------+ | sys.ps_is_consumer_enabled('global_instrumentation') | +------------------------------------------------------+ | YES | +------------------------------------------------------+ SELECT sys.ps_is_consumer_enabled('events_stages_current'); +-----------------------------------------------------+ | sys.ps_is_consumer_enabled('events_stages_current') | +-----------------------------------------------------+ | NO | +-----------------------------------------------------+ SELECT sys.ps_is_consumer_enabled('nonexistent_consumer'); +----------------------------------------------------+ | sys.ps_is_consumer_enabled('nonexistent_consumer') | +----------------------------------------------------+ | NULL | +----------------------------------------------------+
See Also
Content reproduced on this site is the property of its respective owners,
and this content is not reviewed in advance by MariaDB. The views, information and opinions
expressed by this content do not necessarily represent those of MariaDB or any other party.