You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a listener is attached to a plugin's status for a color event and the plugin's current state is the same as the color event, the listener should be executed immediately.
server.plugin.elasticsearch.status.green("Kibana ready");
server.plugin.elasticsearch.status.on('green', function () {
// Will never get called if the elasticsearch plugin never changes
// status from green to red and back again.
});
The text was updated successfully, but these errors were encountered:
simianhacker
changed the title
Kibana server status 'on({color}
Kibana plugin status listeners should execute callback immediately when listener matches current state
Jun 16, 2015
When a listener is attached to a plugin's status for a color event and the plugin's current state is the same as the color event, the listener should be executed immediately.
The text was updated successfully, but these errors were encountered: