mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
[docs] Link to client api, move client library docs to core development section
This commit is contained in:
parent
92ee7e12a5
commit
deafe5a435
3 changed files with 4 additions and 4 deletions
|
@ -10,3 +10,5 @@ include::core/development-basepath.asciidoc[]
|
|||
include::core/development-dependencies.asciidoc[]
|
||||
|
||||
include::core/development-modules.asciidoc[]
|
||||
|
||||
include::plugin/development-elasticsearch.asciidoc[]
|
||||
|
|
|
@ -14,5 +14,3 @@ The Kibana plugin interfaces are in a state of constant development. We cannot
|
|||
include::plugin/development-plugin-resources.asciidoc[]
|
||||
|
||||
include::plugin/development-uiexports.asciidoc[]
|
||||
|
||||
include::plugin/development-elasticsearch.asciidoc[]
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
Kibana exposes two clients on the server and browser for communicating with elasticsearch.
|
||||
There is an 'admin' client which is used for managing Kibana's state, and a 'data' client for all
|
||||
other requests. The clients use the elasticsearch.js library.
|
||||
other requests. The clients use the https://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/index.html[elasticsearch.js library].
|
||||
|
||||
[float]
|
||||
[[client-server]]
|
||||
|
@ -35,7 +35,7 @@ uiModules.get('kibana')
|
|||
es.ping()
|
||||
.then(() => esAdmin.ping())
|
||||
.catch(err => {
|
||||
console.log('error pinging servers);
|
||||
console.log('error pinging servers');
|
||||
});
|
||||
});
|
||||
----
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue