diff --git a/@overflow/discovery/component/index.ts b/@overflow/discovery/component/index.ts
index 93ec142..b5003e3 100644
--- a/@overflow/discovery/component/index.ts
+++ b/@overflow/discovery/component/index.ts
@@ -4,6 +4,7 @@ import { SearchConfigComponent } from './discovery/search-config.component';
import { SearchFilterComponent } from './discovery/search-filter.component';
import { SearchResultComponent } from './discovery/search-result.component';
import { IpInputComponent } from './discovery/ip-input.component';
+import { RequestSummaryComponent } from './discovery/request-summary.component';
export const COMPONENTS = [
ServiceSelectorComponent,
@@ -12,4 +13,5 @@ export const COMPONENTS = [
SearchFilterComponent,
SearchResultComponent,
IpInputComponent,
+ RequestSummaryComponent,
];
diff --git a/@overflow/probe/component/summary/summary.component.html b/@overflow/probe/component/summary/summary.component.html
index 0815c6e..f1ef59f 100644
--- a/@overflow/probe/component/summary/summary.component.html
+++ b/@overflow/probe/component/summary/summary.component.html
@@ -1,11 +1,14 @@
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/@overflow/probe/component/summary/summary.component.ts b/@overflow/probe/component/summary/summary.component.ts
index 8be7642..9685846 100644
--- a/@overflow/probe/component/summary/summary.component.ts
+++ b/@overflow/probe/component/summary/summary.component.ts
@@ -1,15 +1,20 @@
-import { Component, Input } from '@angular/core';
+import { Component, Input, OnChanges, SimpleChanges } from '@angular/core';
import { Probe, ProbeHost } from '@overflow/commons-typescript/model/probe';
@Component({
selector: 'of-probe-summary',
templateUrl: './summary.component.html',
})
-export class ProbeSummaryComponent {
+export class ProbeSummaryComponent implements OnChanges {
@Input() probeHost: ProbeHost;
+ connectionStatus: string;
constructor() {
}
+
+ ngOnChanges(changes: SimpleChanges): void {
+ this.connectionStatus = this.probeHost.probe.connectDate ? 'Connected' : 'Not connected';
+ }
}