yii\elasticsearch\ElasticsearchTarget - Yii2 类参考手册

Class yii\elasticsearch\ElasticsearchTarget

Inheritanceyii\elasticsearch\ElasticsearchTarget » yii\log\Target » yii\base\Component » yii\base\BaseObject
Implementsyii\base\Configurable
Available since version2.0.5

ElasticsearchTarget stores log messages in a elasticsearch index.

Public Properties

隐藏继承的属性 Hide inherited properties

属性Property类型 Type简介 Description定义在 Defined By
$behaviors yii\base\Behavior[] List of behaviors attached to this component yii\base\Component
$cacheContext boolean If true, context message will cached once it's been created. yii\elasticsearch\ElasticsearchTarget
$categories array List of message categories that this target is interested in. yii\log\Target
$db yii\elasticsearch\Connection|array|string The elasticsearch connection object or the application component ID of the elasticsearch connection. yii\elasticsearch\ElasticsearchTarget
$enabled boolean|callable A boolean value or a callable to obtain the value from. yii\log\Target
$except array List of message categories that this target is NOT interested in. yii\log\Target
$exportInterval integer How many messages should be accumulated before they are exported. yii\log\Target
$includeContext boolean If true, context will be included in every message. yii\elasticsearch\ElasticsearchTarget
$index string Elasticsearch index name. yii\elasticsearch\ElasticsearchTarget
$levels integer The message levels that this target is interested in. yii\log\Target
$logContext boolean If true, context will be logged as a separate message after all other messages. yii\elasticsearch\ElasticsearchTarget
$logVars array List of the PHP predefined variables that should be logged in a message. yii\log\Target
$maskVars array List of the PHP predefined variables that should NOT be logged "as is" and should always be replaced with a mask *** before logging, when exist. yii\log\Target
$messages array The messages that are retrieved from the logger so far by this log target. yii\log\Target
$microtime boolean Whether to log time with microseconds. yii\log\Target
$options array URL options. yii\elasticsearch\ElasticsearchTarget
$prefix callable A PHP callable that returns a string to be prefixed to every exported message. yii\log\Target
$type string Elasticsearch type name. yii\elasticsearch\ElasticsearchTarget

Protected Properties

隐藏继承的属性 Hide inherited properties

属性Property类型 Type简介 Description定义在 Defined By
$_contextMessage string Context message cache (can be used multiple times if context is appended to every message) yii\elasticsearch\ElasticsearchTarget

Public Methods

隐藏继承的方法 Hide inherited methods

方法 Method简介 Description定义在 Defined By
__call() Calls the named method which is not a class method. yii\base\BaseObject
__clone() This method is called after the object is created by cloning an existing one. yii\base\Component
__construct() Constructor. yii\base\BaseObject
__get() Returns the value of an object property. yii\base\BaseObject
__isset() Checks if a property is set, i.e. defined and not null. yii\base\BaseObject
__set() Sets value of an object property. yii\base\BaseObject
__unset() Sets an object property to null. yii\base\BaseObject
attachBehavior() Attaches a behavior to this component. yii\base\Component
attachBehaviors() Attaches a list of behaviors to the component. yii\base\Component
behaviors() Returns a list of behaviors that this component should behave as. yii\base\Component
canGetProperty() Returns a value indicating whether a property can be read. yii\base\BaseObject
canSetProperty() Returns a value indicating whether a property can be set. yii\base\BaseObject
className() Returns the fully qualified name of this class. yii\base\BaseObject
collect() Processes the given log messages. yii\elasticsearch\ElasticsearchTarget
detachBehavior() Detaches a behavior from the component. yii\base\Component
detachBehaviors() Detaches all behaviors from the component. yii\base\Component
ensureBehaviors() Makes sure that the behaviors declared in behaviors() are attached to this component. yii\base\Component
export() Exports log $messages to a specific destination. yii\elasticsearch\ElasticsearchTarget
filterMessages() Filters the given messages according to their categories and levels. yii\log\Target
formatMessage() Formats a log message for display as a string. yii\log\Target
getBehavior() Returns the named behavior object. yii\base\Component
getBehaviors() Returns all behaviors attached to this component. yii\base\Component
getEnabled() Check whether the log target is enabled. yii\log\Target
getLevels() yii\log\Target
getMessagePrefix() Returns a string to be prefixed to the given message. yii\log\Target
hasEventHandlers() Returns a value indicating whether there is any handler attached to the named event. yii\base\Component
hasMethod() Returns a value indicating whether a method is defined. yii\base\BaseObject
hasProperty() Returns a value indicating whether a property is defined. yii\base\BaseObject
init() This method will initialize the \yii\elasticsearch\elasticsearch property to make sure it refers to a valid Elasticsearch connection. yii\elasticsearch\ElasticsearchTarget
off() Detaches an existing event handler from this component. yii\base\Component
on() Attaches an event handler to an event. yii\base\Component
prepareMessage() Prepares a log message. yii\elasticsearch\ElasticsearchTarget
setEnabled() Sets a value indicating whether this log target is enabled. yii\log\Target
setLevels() Sets the message levels that this target is interested in. yii\log\Target
trigger() Triggers an event. yii\base\Component

Protected Methods

隐藏继承的方法 Hide inherited methods

方法 Method简介 Description定义在 Defined By
getContextMessage() If $includeContext property is false, returns context message normally. yii\elasticsearch\ElasticsearchTarget
getTime() Returns formatted ('Y-m-d H:i:s') timestamp for message. yii\log\Target

属性详情 Property Details

$_contextMessage protected property

Context message cache (can be used multiple times if context is appended to every message)

protected string $_contextMessage null
$cacheContext public property

If true, context message will cached once it's been created. Makes sense to use with $includeContext.

public boolean $cacheContext false
$db public property

The elasticsearch connection object or the application component ID of the elasticsearch connection.

public yii\elasticsearch\Connection|array|string $db 'elasticsearch'
$includeContext public property

If true, context will be included in every message. This is convenient if you log application errors and analyze them with tools like Kibana.

public boolean $includeContext false
$index public property

Elasticsearch index name.

public string $index 'yii'
$logContext public property

If true, context will be logged as a separate message after all other messages.

public boolean $logContext true
$options public property

URL options.

public array $options = []
$type public property

Elasticsearch type name.

public string $type 'log'

方法详情 Method Details

collect() public method

Processes the given log messages.

This method will filter the given messages with $levels and $categories. And if requested, it will also export the filtering result to specific medium (e.g. email). Depending on the $includeContext attribute, a context message will be either created or ignored.

public void collect ( $messages, $final )
$messages array

Log messages to be processed. See yii\log\Logger::$messages for the structure of each message.

$final boolean

Whether this method is called at the end of the current application

export() public method

Exports log $messages to a specific destination.

Child classes must implement this method.

public void export ( )
getContextMessage() protected method

If $includeContext property is false, returns context message normally.

If $includeContext is true, returns an empty string (so that context message in collect() is not generated), expecting that context will be appended to every message in prepareMessage().

protected array getContextMessage ( )
return array

The context information

init() public method

This method will initialize the \yii\elasticsearch\elasticsearch property to make sure it refers to a valid Elasticsearch connection.

public void init ( )
throws yii\base\InvalidConfigException

if \yii\elasticsearch\elasticsearch is invalid.

prepareMessage() public method

Prepares a log message.

public string prepareMessage ( $message )
$message array

The log message to be formatted.