New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

logstash-output-jsm

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

logstash-output-jsm

  • 0.1.2
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Jira Service Management Logstash Plugin

  1. Download the Logstash plugin.
    The plugin is entirely free and open-source. It's under the Apache 2.0 license, so you can use it in the way that best suits your needs.

  2. Install and run the Jira Service Management output plugin in Logstash:

  • For Logstash 5.4+
    bin/logstash-plugin install logstash-output-jsm
  • For other versions
    bin/plugin install logstash-output-jsm
  1. Add a Logstash integration in Jira Service Management and copy the API key.
    :warning: If the feature isn’t available on your site, keep checking Jira Service Management for updates.

  2. Use plugins such as Mutate to populate the fields that logstash-output-jsm will use.

filter {
    mutate {
       add_field => {
          "jsmAction" => "create"
          "alias" => "neo123"
          "description" => "Every alert needs a description"
          "actions" => ["Restart", "AnExampleAction"]
          "tags" => ["OverwriteQuietHours","Critical"]
          "[details][prop1]" => "val1"
          "[details][prop2]" => "val2"
          "entity" => "An example entity"
          "priority" => "P4"
          "source" => "custom source"
          "user" => "custom user"
          "note" => "alert is created"
       }
    }
    ruby {
        code => "event.set('teams', [{'name' => 'Integration'}, {'name' => 'Platform'}])"
    }
}
  1. Add the following to your configuration file and enter the integration API key you copied earlier into apiKey.
output {
  jsm {
    "apiKey" => "logstash_integration_api_key"
  }
}
  1. Run Logstash.

FAQs

Package last updated on 04 Dec 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc