Giter Site home page Giter Site logo

treblle / treblle-php Goto Github PK

View Code? Open in Web Editor NEW
20.0 5.0 3.0 2.18 MB

The official Treblle SDK for PHP. Seamlessly integrate Treblle to manage communication with your dashboard, send errors, and secure sensitive data.

Home Page: https://www.treblle.com/

License: MIT License

PHP 100.00%
api logging php api-monitoring backend treblle treblle-sdk api-observability developer-tool rest-api

treblle-php's Issues

Trouble installing Trebble

Was trying to integrate Treblle via PHP, on your github I can see that the minimum PHP version required is 7.4. However, when I run it with my code, I am getting the following error :

 AH01071: Got error 'PHP message: PHP Fatal error:  Composer detected issues in your platform: Your Composer dependencies require a PHP version ">= 8.1.0". You are running 8.0.20. in .../vendor/composer/platform_check.php on line 24'

Here is my composer.json

{
    "require": {
        "treblle/treblle-php": "^2.0"
    }
}

Not sure where I am going wrong. Please help me out

Consider exposing more from builder

Trebble factory exposes a single method: create() which is great when using SAPIs that support shutdown functions :) but causes a memory leak when the SAPI doesn't support shutdown functions. For example, FrankenPHP (disclosure: I'm a contributor on the project), doesn't support shutdown functions.

It would be great if the factory also exposed a a method that did the same thing as create() just without registering side-effects, so it could be used as such:

function handle_request(\Closure $afterRequest) {
  $treblle = TreblleFactory::onlyCreate($apiKey, $projectId);
  set_error_handler($treblle->onError(...));
  set_exception_handler($treblle->onException(...));
  $afterRequest($treblle->onShutdown(...));

  // do request
}

$running = true;
while($running) {
  $later = [];
  $afterRequest = static function ($callback) use (&$later) {
    $later[] = $callback;
  };
  
  $running = frankenphp_handle_request(fn() => handle_request($afterRequest));
  foreach($later as $cb) $cb();
}

Filter urls

Hello
my backend is using multiple url workspaces
api/v1/*
api/v2/*
system/*
...etc

i need to apply trebble to only some of them. It's possible to provide a wildcard mask to filter processed endpoints?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.