Forum Discussion
Using ElasticSearch in PowerBI - Search
I followed the document querying-elasticsearch-with-powerbi
And it works which indicates.
But how and where do I place the search API?
I can not find much documentation on the ElascticSearch and PowerBI interaction.
All the help is well accepted :)
´
- Anonymous9 years ago
Hi SumSang,
How about entering base URL for the Search API in Web entry of Power BI Desktop? There is an example of the URL: http://localhost:9200/ _search?q=tag:wow, for more details, please check the following articles.
https://www.elastic.co/guide/en/elasticsearch/reference/current/search-search.html
http://www.elasticsearchtutorial.com/elasticsearch-in-5-minutes.html#SearchingThanks,
Lydia Zhang
4 Replies
- SumSangRegular Visitor
For example how to do this query in powerbi
GET _search
{
"query": {
"match_all": {}
}
}- AnonymousNot applicable
Hi SumSang,
How about entering base URL for the Search API in Web entry of Power BI Desktop? There is an example of the URL: http://localhost:9200/ _search?q=tag:wow, for more details, please check the following articles.
https://www.elastic.co/guide/en/elasticsearch/reference/current/search-search.html
http://www.elasticsearchtutorial.com/elasticsearch-in-5-minutes.html#SearchingThanks,
Lydia Zhang- Sundar1606Helper IHi, Did you find anything ?