Files
elasticsearch-js/docs/_examples/cluster.nodeInfo.asciidoc
2013-12-27 16:41:38 -07:00

10 lines
204 B
Plaintext

.Return information about JVM
[source,js]
---------
client.cluster.nodeInfo({ jvm: true })
.then(function (response) {
// enjoy your sweet info!
}, function (error) {
// scream!
})
---------