Get node info
Get information about Logstash nodes, where <types>
(optional) specifies the types of node info you want returned.
You can limit the info that is returned by combining any of these types in a comma-separated list:
pipelines
os
jvm
Query parameters
-
pretty boolean
If you append
?pretty=true
to the request, the JSON returned will be pretty formatted. Use it for debugging only!
GET
/_node/<types>
curl \
-X GET http://api.example.com/_node/<types>
Response examples (200)
{
"pipelines": [
{
"test": {
"workers": 1,
"batch_size": 1,
"batch_delay": 5,
"config_reload_interval": 3,
"config_reload_automatic": false
}
},
{
"test2": {
"workers": 8,
"batch_size": 125,
"batch_delay": 5,
"config_reload_interval": 3,
"config_reload_automatic": false
}
}
]
}