{"id":49341546,"url":"https://github.com/redborder/logstash-filter-mobility","last_synced_at":"2026-04-27T04:04:28.048Z","repository":{"id":143877294,"uuid":"250315235","full_name":"redBorder/logstash-filter-mobility","owner":"redBorder","description":null,"archived":false,"fork":false,"pushed_at":"2024-03-01T09:47:34.000Z","size":72,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-03-01T14:31:29.938Z","etag":null,"topics":["logstash","logstash-plugin","redborder"],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/redBorder.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2020-03-26T16:42:18.000Z","updated_at":"2024-03-01T14:31:29.938Z","dependencies_parsed_at":null,"dependency_job_id":"233ba0c3-cb86-4600-acee-609075ec57fe","html_url":"https://github.com/redBorder/logstash-filter-mobility","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/redBorder/logstash-filter-mobility","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redBorder%2Flogstash-filter-mobility","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redBorder%2Flogstash-filter-mobility/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redBorder%2Flogstash-filter-mobility/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redBorder%2Flogstash-filter-mobility/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/redBorder","download_url":"https://codeload.github.com/redBorder/logstash-filter-mobility/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redBorder%2Flogstash-filter-mobility/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32321945,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T23:26:28.701Z","status":"online","status_checked_at":"2026-04-27T02:00:06.769Z","response_time":128,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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","logstash-plugin","redborder"],"created_at":"2026-04-27T04:04:26.832Z","updated_at":"2026-04-27T04:04:28.035Z","avatar_url":"https://github.com/redBorder.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Logstash Plugin\n\n[![Travis Build Status](https://travis-ci.org/logstash-plugins/logstash-filter-example.svg)](https://travis-ci.org/logstash-plugins/logstash-filter-example)\n\nThis is a plugin for [Logstash](https://github.com/elastic/logstash).\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 build documentation for this plugin. We provide a template file, index.asciidoc, where you can add documentation. The contents of this file will be converted into html and then placed with other plugin documentation in a [central location](http://www.elastic.co/guide/en/logstash/current/).\n\n- For formatting config examples, you can use the asciidoc `[source,json]` directive\n- For more asciidoc formatting tips, see the excellent reference here https://github.com/elastic/docs#asciidoc-guide\n\n## Need Help?\n\nNeed help? Try #logstash on freenode IRC or the https://discuss.elastic.co/c/logstash discussion forum.\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. We also provide [example plugins](https://github.com/logstash-plugins?query=example).\n\n- Install dependencies\n```sh\nbundle install\n```\n\n#### Test\n\n- Update your dependencies\n\n```sh\nbundle install\n```\n\n- Run tests\n\n```sh\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 `Gemfile` and add the local plugin path, for example:\n```ruby\ngem \"logstash-filter-awesome\", :path =\u003e \"/your/local/logstash-filter-awesome\"\n```\n- Install plugin\n```sh\n# Logstash 2.3 and higher\nbin/logstash-plugin install --no-verify\n\n# Prior to Logstash 2.3\nbin/plugin install --no-verify\n\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\nYou can use the same **2.1** method to run your plugin in an installed Logstash by editing its `Gemfile` and pointing the `:path` to your local plugin development directory or you can build the gem and install it using:\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\n# Logstash 2.3 and higher\nbin/logstash-plugin install --no-verify\n\n# Prior to Logstash 2.3\nbin/plugin install --no-verify\n\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 the community that you are able to contribute.\n\nFor more information about contributing, see the [CONTRIBUTING](https://github.com/elastic/logstash/blob/master/CONTRIBUTING.md) file.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fredborder%2Flogstash-filter-mobility","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fredborder%2Flogstash-filter-mobility","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fredborder%2Flogstash-filter-mobility/lists"}