GithubHelp home page GithubHelp logo

Comments (3)

ankitnfs avatar ankitnfs commented on July 18, 2024

Hi - any progress on this ? I am also facing this issue.

from logstash-filter-http.

ankitnfs avatar ankitnfs commented on July 18, 2024

Found a workaround, Use below in the filters to have event into a given field

ruby {
code => "
# Move everything to request
event.set('request', event.to_hash)
"
}

and then pass, body => "%{request}"

from logstash-filter-http.

C0rn3j avatar C0rn3j commented on July 18, 2024

It would be really nice if some example documentation could be added, both in the README which doesn't even link to the plugin page or call the filter the HTTP filter and the actual documentation.

# Way to set the entire body from the outside
mutate {
	add_field => { 
		"[cm][request][body]" => '{"data":{"nodeId":4,"dateFrom":"%{[datetime]}","kind":"compute"}}' 
	}
}
...
body_format => "text"
body => "%{[cm][request][body]}"
# Way to set the body from the inside while keeping some things modular
body_format => "json"
body => {
	"data" => {
		"nodeId" => 4
		"%{[cm][date_name]}" => "%{[datetime]}"
		"kind" => "compute"
		"isSuccess" => true
	}
}

There is no way to set up the body from a previously existing hash. (outside of hacks with ruby code)

# This block won't work

add_field => {
    "[cm][request][body]" => {
        "data" => {
            "nodeId" => 4
            "dateTo" => "%{[datetime]}"
            "kind" => "compute"
            "isSuccess" => true
        }
    }
}
...
body_format => "json"

# This will just set the string "[cm][request][body]"
body => "[cm][request][body]"

# This will just pass the raw Hash, not parsed JSON
body => "${[cm][request][body]}"

from logstash-filter-http.

Related Issues (20)

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.