OpenSearch-Dashboards icon indicating copy to clipboard operation
OpenSearch-Dashboards copied to clipboard

[MD]Add support for opensearch legacy client for data source

Open zhongnansu opened this issue 2 years ago • 0 comments

Need to do most things similar to opensearch data source client. Register interface, create route context, etc

By adding support for legacy client, I assume the route context for data source will look like this

datasource: {
  getClient:(id) => Promise<OpenSearchClient>
  legacy: {
    getClient: (id) => Promise<OpenSearchLegacyClient>
  }
}

zhongnansu avatar Aug 12 '22 08:08 zhongnansu