First and foremost, apologies for the very simple question.
Today is my first day using Elasticsearch. After doing some research I found I can use the tool via a Databricks cluster, which I'm moderately familiar with. In the documentation on databricks here:
### Elasticsearch
<img src="https://static-www.elastic.co/v3/assets/bltefdd0b53724fa2ce/blt5ebe80fb665aef6b/5ea8c8f26b62d4563b6ecec2/brand-elasticsearch-220x130.svg" width="300">
1. Launch a cluster in your workspace or choose an existing cluster.
2. Once the new cluster is running, go to the "Libraries" tab of that cluster, and click "Install new" -> choose "Maven" -> enter the maven coordinates `org.elasticsearch:elasticsearch-spark-30_2.12:7.17.6` -> click "Install".
3. Once the installation has finished, attach this notebook to the cluster, and run write and/or read operations against your Elasticsearch cluster
**Important**: In the following cells, replace `<ip-address>`, `<port>`, `<ssl>`, `<hostname>` and `<index>` with your Elasticsearch configuration
%sh
nc -vz ip-address port
My confusion is how to find/create the ip-address, port, ssl, hostname, and index.
This seems like it should be easy, but I can't find anywhere that it's actually spelled out for the slow folks, aka me. Any advice or documentation is greatly appreciated. Thanks in advance