mirror of https://github.com/linkerd/linkerd2.git
42 lines
1.4 KiB
JavaScript
42 lines
1.4 KiB
JavaScript
import LineGraph from './LineGraph.jsx';
|
|
import { Link } from 'react-router-dom';
|
|
import React from 'react';
|
|
import { metricToFormatter, toClassName } from './util/Utils.js';
|
|
|
|
export default class DeploymentSummary extends React.Component {
|
|
title() {
|
|
if (this.props.noLink) {
|
|
return this.props.data.name;
|
|
} else {
|
|
return <Link to={`${this.props.pathPrefix}/deployment?deploy=${this.props.data.name}`}>{this.props.data.name}</Link>;
|
|
}
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<div className={`border-container border-neutral`}>
|
|
<div className="border-container-content">
|
|
<div className="summary-title">{this.title()}</div>
|
|
<div className="summary-info">Last 10 minutes RPS</div>
|
|
|
|
<LineGraph
|
|
data={this.props.requestTs}
|
|
lastUpdated={this.props.lastUpdated}
|
|
containerClassName={toClassName(this.props.data.name)}
|
|
flashLastDatapoint={true} />
|
|
|
|
<div className="summary-stat">
|
|
<div className="metric-title">Current requests</div>
|
|
<div className="metric-value">{metricToFormatter["REQUEST_RATE"](this.props.data.requestRate)}</div>
|
|
</div>
|
|
|
|
<div className="summary-stat">
|
|
<div className="metric-title">Current success</div>
|
|
<div className="metric-value">{metricToFormatter["SUCCESS_RATE"](this.props.data.successRate)}</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|