{this.state.showMoreRecentButton &&
{
this.disableScrollHandler = true;
this.connectionsListRef.current.scrollTop = 0;
this.loadConnections({limit: this.queryLimit})
.then(() => {
this.disableScrollHandler = false;
log.info("Most recent connections loaded");
});
}}/>
}
service |
srcip |
srcport |
dstip |
dstport |
started_at |
duration |
up |
down |
actions |
{
this.state.connections.flatMap((c) => {
return [ this.connectionSelected(c)}
selected={this.state.selected === c.id}
onMarked={(marked) => c.marked = marked}
onEnabled={(enabled) => c.hidden = !enabled}
services={this.state.services}/>,
c.matched_rules.length > 0 &&
];
})
}
{loading}
{redirect}
);
}
}
export default withRouter(ConnectionsPane);