FLEEP_HOST
FLEEP_HOST = 'fleep.io'
Sends logs to Fleep.io using Webhook integrations
You'll need a Fleep.io account to use this handler.
$processors : callable[]
$formatter : ?\Monolog\Formatter\FormatterInterface
$level : int
$bubble : bool
$token : string
$connectionString : string
$connectionTimeout : float
$resource : resource|null
$timeout : float
$writingTimeout : float
$lastSentBytes : ?int
$chunkSize : ?int
$persistent : bool
$errno : ?int
$errstr : ?string
$lastWritingAt : ?float
__construct(string $token, mixed $level = Logger::DEBUG, bool $bubble = true, bool $persistent = false, float $timeout = 0.0, float $writingTimeout = 10.0, ?float $connectionTimeout = null, ?int $chunkSize = null) : mixed
Construct a new Fleep.io Handler.
For instructions on how to create a new web hook in your conversations see https://fleep.io/integrations/webhooks/
string | $token | Webhook token |
mixed | $level | |
bool | $bubble | |
bool | $persistent | Flag to enable/disable persistent connections |
float | $timeout | Socket timeout to wait until the request is being aborted |
float | $writingTimeout | Socket timeout to wait until the request should've been sent/written |
?float | $connectionTimeout | Socket connect timeout to wait until the connection should've been established |
?int | $chunkSize | Sets the chunk size. Only has effect during connection in the writing cycle |