Arc dashboard fixes (#12021)

* Arc dashboard fixes

* Bump versions
This commit is contained in:
Charles Gagnon
2020-08-31 12:32:26 -07:00
committed by GitHub
parent 3d0dd0de98
commit 404260b8a0
10 changed files with 36 additions and 30 deletions

View File

@@ -317,7 +317,7 @@ export class PostgresOverviewPage extends DashboardPage {
}
private getKibanaLink(): string {
const kibanaQuery = `kubernetes_namespace:"${this._postgresModel.namespace}" and cluster_name:"${this._postgresModel.name}"`;
const kibanaQuery = `kubernetes_namespace:"${this._postgresModel.namespace}" and custom_resource_name:"${this._postgresModel.name}"`;
return `${this._controllerModel.getEndpoint(Endpoints.logsui)?.endpoint}/app/kibana#/discover?_a=(query:(language:kuery,query:'${kibanaQuery}'))`;
}