-2

I am doing a swift project and I need to send some data from my swift project to Kibana Elastick search. Any idea how can I possibly do that ? any link or reference is appreciated

Background

I am creating a fitness app and I need to send my data to Kibana for the AI processing. This info will be recorded according to the sensors on the phone. And all I know is that I have the proxy of the server.

B--rian
  • 5,578
  • 10
  • 38
  • 89
Danial Kosarifa
  • 1,044
  • 4
  • 18
  • 51
  • Can you provide more info about what exactly are you asking? Do you want to know how to forward logs to elasticsearch? – deez Oct 02 '17 at 08:31
  • yes . I am creating a fitness app and I need to send my data to kibana for the AI processing . This info will be recorded according to the sensors on the phone . And all I know is that I have the proxy of the server @deez – Danial Kosarifa Oct 02 '17 at 10:04

1 Answers1

0

You dont send data to Kibana, but to elasticsearch, Kibana is a data viz. tool.

Basically, elasticsearch have a HTTP API, listening on port 9200.

Every-body will not recommend you to make your elasticsearch "public" (even if some Swift client exist https://github.com/JimiSmith/SwiftElasticsearch).

So, I am sure you are using already a backend (maybe Php / NodeJS / Java ?), use it to write on elasticsearch.

Thomas Decaux
  • 21,738
  • 2
  • 113
  • 124