承接 senzidee/monolog-parseable-handler 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

senzidee/monolog-parseable-handler

最新稳定版本:1.0.2

Composer 安装命令:

composer require senzidee/monolog-parseable-handler

包简介

Monolog Handler for send logs to parseable in json through http

README 文档

README

A PHP library that provides a Monolog handler for sending logs to Parseable - a cloud-native log analytics platform.

License: MIT PHP Version

Features

  • Clean Architecture: Built with dependency injection and hexagonal architecture principles
  • PSR-3 Compliant: Fully compatible with PSR-3 logging standards through Monolog
  • Batch Processing: Supports both individual and batch log processing
  • Configurable: Flexible configuration for different Parseable instances
  • Type Safe: Full PHP 8.1+ type declarations with Psalm static analysis
  • Testable: Comprehensive test suite with mocked dependencies

Requirements

  • PHP 8.1 or higher
  • ext-curl
  • Monolog 3.0+

Installation

Install via Composer:

composer require senzidee/monolog-parseable-handler

Quick Start

<?php

use Monolog\Logger;
use SenzaIdee\Handler\ParseableHandler;

// Create the handler
$handler = new ParseableHandler(
    host: 'https://your-parseable-instance.com',
    stream: 'application-logs',
    username: 'your-username',
    password: 'your-password',
    port: 8000
);

// Create logger and add handler
$logger = new Logger('app');
$logger->pushHandler($handler);

// Start logging
$logger->info('Application started');
$logger->error('Something went wrong', ['error_code' => 500]);

Configuration

Constructor Parameters

The ParseableHandler constructor accepts the following parameters:

Parameter Type Required Default Description
host string Yes - Parseable server hostname (without trailing slash)
stream string Yes - Target log stream name
username string Yes - Authentication username
password string Yes - Authentication password
port int No 8000 Parseable server port
level Level|int|string No Level::Debug Minimum log level to handle
bubble bool No true Whether to bubble logs to next handler
httpClient HttpClientInterface No null Custom HTTP client (uses cURL by default)

Example Configurations

Basic Configuration

$handler = new ParseableHandler(
    host: 'https://logs.company.com',
    stream: 'api-logs',
    username: 'api-user',
    password: 'secure-password'
);

Production Configuration

$handler = new ParseableHandler(
    host: 'https://prod-logs.company.com',
    stream: 'production-app',
    username: $_ENV['PARSEABLE_USERNAME'],
    password: $_ENV['PARSEABLE_PASSWORD'],
    port: 443,
    level: Level::Warning, // Only log warnings and above
    bubble: false
);

For more advanced usage examples, see USAGE.md.

Development

Local Development with Docker

If you don't have PHP installed locally, use the provided Docker setup:

# Build the development container
docker build -t parseable-handler-dev .

# Run commands in container
docker run --rm -v $(pwd):/app parseable-handler-dev composer install
docker run --rm -v $(pwd):/app parseable-handler-dev composer test

Available Commands

# Install dependencies
composer install

# Run tests
composer test

# Fix code style
composer cs-fixer

# Run static analysis
composer psalm

# All quality checks
composer test && composer cs-fixer && composer psalm

For detailed development information, see DEVELOPMENT.md.

Contributing

We welcome contributions! Please see CONTRIBUTING.md for details on how to contribute to this project.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Support

Related Projects

  • Monolog - The PHP logging library this handler extends
  • Parseable - The log analytics platform this handler targets
  • PSR-3 - PHP logging interface standard

统计信息

  • 总下载量: 110
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-06-09