Skip to content

TGFerox/airbrake-cr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

airbrake-cr

Airbrake notifier made in Crystal Lang

Installation and usage

In your shard.yml

airbrake:
    github: tgferox/airbrake-cr

In your crystal application

require "http/server"
require "airbrake"

Airbrake.configure do |config|
  config.project_id = 2
  config.endpoint = "your endpoint here"
  config.project_key = "your project key"
end



server = HTTP::Server.new([
  Airbrake::ErrorHandler.new #Replace any other Error Handler with this one
])

server.bind_tcp "127.0.0.1", 8080
server.listen

Project To-do

  • Implement HTTP data
  • Implement masking parameters
  • Implement session data

About

Airbrake notifier made in Crystal Lang

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published