{"id":20740934,"url":"https://github.com/rollbar/logstash-output-rollbar","last_synced_at":"2025-05-11T03:33:12.399Z","repository":{"id":27792953,"uuid":"31281898","full_name":"rollbar/logstash-output-rollbar","owner":"rollbar","description":"Logstash output plugin that sends events to the Rollbar error monitoring service","archived":true,"fork":false,"pushed_at":"2021-06-10T15:18:25.000Z","size":13,"stargazers_count":13,"open_issues_count":3,"forks_count":8,"subscribers_count":32,"default_branch":"master","last_synced_at":"2025-05-08T00:06:13.097Z","etag":null,"topics":["logstash-plugin","rollbar"],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rollbar.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-02-24T21:06:18.000Z","updated_at":"2025-03-21T18:58:12.000Z","dependencies_parsed_at":"2022-09-03T11:41:45.120Z","dependency_job_id":null,"html_url":"https://github.com/rollbar/logstash-output-rollbar","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rollbar%2Flogstash-output-rollbar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rollbar%2Flogstash-output-rollbar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rollbar%2Flogstash-output-rollbar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rollbar%2Flogstash-output-rollbar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rollbar","download_url":"https://codeload.github.com/rollbar/logstash-output-rollbar/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253264332,"owners_count":21880630,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["logstash-plugin","rollbar"],"created_at":"2024-11-17T06:31:25.063Z","updated_at":"2025-05-11T03:33:12.099Z","avatar_url":"https://github.com/rollbar.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Logstash Plugin\n\nThis is a plugin for [Logstash](https://github.com/elasticsearch/logstash) that sends events to the [Rollbar](https://www.rollbar.com) error monitoring service.\n\nIt is fully free and fully open source. The license is Apache 2.0, meaning you are pretty much free to use it however you want in whatever way.\n\n## Documentation\n\nLogstash provides infrastructure to automatically generate documentation for this plugin. We use the asciidoc format to write documentation so any comments in the source code will be first converted into asciidoc and then into html. All plugin documentation are placed under one [central location](http://www.elasticsearch.org/guide/en/logstash/current/).\n\n- For formatting code or config example, you can use the asciidoc `[source,ruby]` directive\n- For more asciidoc formatting tips, see the excellent reference here https://github.com/elasticsearch/docs#asciidoc-guide\n\n## Need Help?\n\nNeed help? Try #logstash on freenode IRC or the logstash-users@googlegroups.com mailing list.\n\n## Developing\n\n### 1. Plugin Developement and Testing\n\n#### Code\n- To get started, you'll need JRuby with the Bundler gem installed.\n\n- Create a new plugin or clone and existing from the GitHub [logstash-plugins](https://github.com/logstash-plugins) organization.\n\n- Install dependencies\n```sh\nbundle install\n```\n\n#### Test\n\n```sh\nbundle exec rspec\n```\n\nThe Logstash code required to run the tests/specs is specified in the `Gemfile` by the line similar to:\n```ruby\ngem \"logstash\", :github =\u003e \"elasticsearch/logstash\", :branch =\u003e \"1.5\"\n```\nTo test against another version or a local Logstash, edit the `Gemfile` to specify an alternative location, for example:\n```ruby\ngem \"logstash\", :github =\u003e \"elasticsearch/logstash\", :ref =\u003e \"master\"\n```\n```ruby\ngem \"logstash\", :path =\u003e \"/your/local/logstash\"\n```\n\nThen update your dependencies and run your tests:\n\n```sh\nbundle install\nbundle exec rspec\n```\n\n### 2. Running your unpublished Plugin in Logstash\n\n#### 2.1 Run in a local Logstash clone\n\n- Edit Logstash `tools/Gemfile` and add the local plugin path, for example:\n```ruby\ngem \"logstash-filter-awesome\", :path =\u003e \"/your/local/logstash-filter-awesome\"\n```\n- Update Logstash dependencies\n```sh\nrake vendor:gems\n```\n- Run Logstash with your plugin\n```sh\nbin/logstash -e 'filter {awesome {}}'\n```\nAt this point any modifications to the plugin code will be applied to this local Logstash setup. After modifying the plugin, simply rerun Logstash.\n\n#### 2.2 Run in an installed Logstash\n\n- Build your plugin gem\n```sh\ngem build logstash-filter-awesome.gemspec\n```\n- Install the plugin from the Logstash home\n```sh\nbin/plugin install /your/local/plugin/logstash-filter-awesome.gem\n```\n- Start Logstash and proceed to test the plugin\n\n## Contributing\n\nAll contributions are welcome: ideas, patches, documentation, bug reports, complaints, and even something you drew up on a napkin.\n\nProgramming is not a required skill. Whatever you've seen about open source and maintainers or community members  saying \"send patches or die\" - you will not see that here.\n\nIt is more important to me that you are able to contribute.\n\nFor more information about contributing, see the [CONTRIBUTING](https://github.com/elasticsearch/logstash/blob/master/CONTRIBUTING.md) file.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frollbar%2Flogstash-output-rollbar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frollbar%2Flogstash-output-rollbar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frollbar%2Flogstash-output-rollbar/lists"}