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 attempting to run PPL (Piped Processing Language) queries in Grafana using the OpenSearch plugin, the plugin defaults to using the old Open Distro endpoint (/_opendistro/_ppl). This endpoint results in a 400 Bad Request error because OpenSearch has transitioned to using the newer _plugins folder for PPL queries (/_plugins/_ppl).
Steps to Reproduce:
Install and configure the latest version of OpenSearch and ensure the SQL/PPL plugin is installed and enabled.
Set up Grafana and configure an OpenSearch data source.
Attempt to run a PPL query in Grafana, such as:
source=test | where SampleLabel is not null | stats avg(ResponseTime) by SampleLabel
Observe the request sent by Grafana to the OpenSearch instance.
When attempting to run PPL (Piped Processing Language) queries in Grafana using the OpenSearch plugin, the plugin defaults to using the old Open Distro endpoint (/_opendistro/_ppl). This endpoint results in a 400 Bad Request error because OpenSearch has transitioned to using the newer _plugins folder for PPL queries (/_plugins/_ppl).
Steps to Reproduce:
source=test | where SampleLabel is not null | stats avg(ResponseTime) by SampleLabel
Expected Result:
Grafana should send the request to the endpoint: http://opensearch-node1:9200/_plugins/_ppl.
Opensearch version 2.18.0
Opensearch plugin version 2.21.2
The text was updated successfully, but these errors were encountered: