314 lines
9.5 KiB
TypeScript
314 lines
9.5 KiB
TypeScript
import React, { PureComponent } from 'react';
|
|
import moment from 'moment';
|
|
import * as utils from '../../../datasource-zabbix/utils';
|
|
import { MODE_ITEMID } from '../../../datasource-zabbix/constants';
|
|
import { ProblemDTO, ZBXHost, ZBXGroup, ZBXEvent, ZBXTag, ZBXAlert } from '../../../datasource-zabbix/types';
|
|
import { ZBXItem, ZBXAcknowledge, GFTimeRange, RTRow } from '../../types';
|
|
import { Modal, AckProblemData } from '../Modal';
|
|
import EventTag from '../EventTag';
|
|
import Tooltip from '../Tooltip/Tooltip';
|
|
import ProblemStatusBar from './ProblemStatusBar';
|
|
import AcknowledgesList from './AcknowledgesList';
|
|
import ProblemTimeline from './ProblemTimeline';
|
|
import FAIcon from '../FAIcon';
|
|
import { renderUrl } from '../../utils';
|
|
import { getLocationSrv } from '@grafana/runtime';
|
|
|
|
interface ProblemDetailsProps extends RTRow<ProblemDTO> {
|
|
rootWidth: number;
|
|
timeRange: GFTimeRange;
|
|
showTimeline?: boolean;
|
|
panelId?: number;
|
|
getProblemEvents: (problem: ProblemDTO) => Promise<ZBXEvent[]>;
|
|
getProblemAlerts: (problem: ProblemDTO) => Promise<ZBXAlert[]>;
|
|
onProblemAck?: (problem: ProblemDTO, data: AckProblemData) => Promise<any> | any;
|
|
onTagClick?: (tag: ZBXTag, datasource: string, ctrlKey?: boolean, shiftKey?: boolean) => void;
|
|
}
|
|
|
|
interface ProblemDetailsState {
|
|
events: ZBXEvent[];
|
|
alerts: ZBXAlert[];
|
|
show: boolean;
|
|
showAckDialog: boolean;
|
|
}
|
|
|
|
export default class ProblemDetails extends PureComponent<ProblemDetailsProps, ProblemDetailsState> {
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = {
|
|
events: [],
|
|
alerts: [],
|
|
show: false,
|
|
showAckDialog: false,
|
|
};
|
|
}
|
|
|
|
componentDidMount() {
|
|
if (this.props.showTimeline) {
|
|
this.fetchProblemEvents();
|
|
}
|
|
this.fetchProblemAlerts();
|
|
requestAnimationFrame(() => {
|
|
this.setState({ show: true });
|
|
});
|
|
}
|
|
|
|
handleTagClick = (tag: ZBXTag, ctrlKey?: boolean, shiftKey?: boolean) => {
|
|
if (this.props.onTagClick) {
|
|
this.props.onTagClick(tag, this.props.original.datasource, ctrlKey, shiftKey);
|
|
}
|
|
}
|
|
|
|
fetchProblemEvents() {
|
|
const problem = this.props.original;
|
|
this.props.getProblemEvents(problem)
|
|
.then(events => {
|
|
this.setState({ events });
|
|
});
|
|
}
|
|
|
|
fetchProblemAlerts() {
|
|
const problem = this.props.original;
|
|
this.props.getProblemAlerts(problem)
|
|
.then(alerts => {
|
|
this.setState({ alerts });
|
|
});
|
|
}
|
|
|
|
ackProblem = (data: AckProblemData) => {
|
|
const problem = this.props.original as ProblemDTO;
|
|
return this.props.onProblemAck(problem, data).then(result => {
|
|
this.closeAckDialog();
|
|
}).catch(err => {
|
|
console.log(err);
|
|
this.closeAckDialog();
|
|
});
|
|
}
|
|
|
|
showAckDialog = () => {
|
|
this.setState({ showAckDialog: true });
|
|
}
|
|
|
|
closeAckDialog = () => {
|
|
this.setState({ showAckDialog: false });
|
|
}
|
|
|
|
openInExplore = () => {
|
|
const problem = this.props.original as ProblemDTO;
|
|
const itemids = problem.items?.map(p => p.itemid).join(',');
|
|
|
|
const state: any = {
|
|
datasource: problem.datasource,
|
|
context: 'explore',
|
|
originPanelId: this.props.panelId,
|
|
queries: [{
|
|
queryType: MODE_ITEMID,
|
|
itemids: itemids,
|
|
}],
|
|
};
|
|
|
|
const exploreState = JSON.stringify(state);
|
|
const url = renderUrl('/explore', { left: exploreState });
|
|
getLocationSrv().update({ path: url, query: {} });
|
|
};
|
|
|
|
render() {
|
|
const problem = this.props.original as ProblemDTO;
|
|
const alerts = this.state.alerts;
|
|
const rootWidth = this.props.rootWidth;
|
|
const displayClass = this.state.show ? 'show' : '';
|
|
const wideLayout = rootWidth > 1200;
|
|
const compactStatusBar = rootWidth < 800 || problem.acknowledges && wideLayout && rootWidth < 1400;
|
|
const age = moment.unix(problem.timestamp).fromNow(true);
|
|
const showAcknowledges = problem.acknowledges && problem.acknowledges.length !== 0;
|
|
|
|
return (
|
|
<div className={`problem-details-container ${displayClass}`}>
|
|
<div className="problem-details">
|
|
<div className="problem-details-row">
|
|
<div className="problem-value-container">
|
|
<div className="problem-age">
|
|
<FAIcon icon="clock-o" />
|
|
<span>{age}</span>
|
|
</div>
|
|
{problem.items && <ProblemItems items={problem.items} />}
|
|
</div>
|
|
<ExploreButton onClick={this.openInExplore} />
|
|
<ProblemStatusBar problem={problem} alerts={alerts} className={compactStatusBar && 'compact'} />
|
|
{problem.showAckButton &&
|
|
<div className="problem-actions">
|
|
<ProblemActionButton className="navbar-button navbar-button--settings"
|
|
icon="reply-all"
|
|
tooltip="Acknowledge problem"
|
|
onClick={this.showAckDialog} />
|
|
</div>
|
|
}
|
|
</div>
|
|
{problem.comments &&
|
|
<div className="problem-description">
|
|
<span className="description-label">Description: </span>
|
|
<span>{problem.comments}</span>
|
|
</div>
|
|
}
|
|
{problem.tags && problem.tags.length > 0 &&
|
|
<div className="problem-tags">
|
|
{problem.tags && problem.tags.map(tag =>
|
|
<EventTag
|
|
key={tag.tag + tag.value}
|
|
tag={tag}
|
|
highlight={tag.tag === problem.correlation_tag}
|
|
onClick={this.handleTagClick}
|
|
/>)
|
|
}
|
|
</div>
|
|
}
|
|
{this.props.showTimeline && this.state.events.length > 0 &&
|
|
<ProblemTimeline events={this.state.events} timeRange={this.props.timeRange} />
|
|
}
|
|
{showAcknowledges && !wideLayout &&
|
|
<div className="problem-ack-container">
|
|
<h6><FAIcon icon="reply-all" /> Acknowledges</h6>
|
|
<AcknowledgesList acknowledges={problem.acknowledges} />
|
|
</div>
|
|
}
|
|
</div>
|
|
{showAcknowledges && wideLayout &&
|
|
<div className="problem-details-middle">
|
|
<div className="problem-ack-container">
|
|
<h6><FAIcon icon="reply-all" /> Acknowledges</h6>
|
|
<AcknowledgesList acknowledges={problem.acknowledges} />
|
|
</div>
|
|
</div>
|
|
}
|
|
<div className="problem-details-right">
|
|
<div className="problem-details-right-item">
|
|
<FAIcon icon="database" />
|
|
<span>{problem.datasource}</span>
|
|
</div>
|
|
{problem.proxy &&
|
|
<div className="problem-details-right-item">
|
|
<FAIcon icon="cloud" />
|
|
<span>{problem.proxy}</span>
|
|
</div>
|
|
}
|
|
{problem.groups && <ProblemGroups groups={problem.groups} className="problem-details-right-item" />}
|
|
{problem.hosts && <ProblemHosts hosts={problem.hosts} className="problem-details-right-item" />}
|
|
</div>
|
|
<Modal withBackdrop={true}
|
|
isOpen={this.state.showAckDialog}
|
|
onSubmit={this.ackProblem}
|
|
onClose={this.closeAckDialog} />
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
interface ProblemItemProps {
|
|
item: ZBXItem;
|
|
showName?: boolean;
|
|
}
|
|
|
|
function ProblemItem(props: ProblemItemProps) {
|
|
const { item, showName } = props;
|
|
const itemName = utils.expandItemName(item.name, item.key_);
|
|
return (
|
|
<Tooltip placement="bottom" content={itemName}>
|
|
<div className="problem-item">
|
|
<FAIcon icon="thermometer-three-quarters" />
|
|
{showName && <span className="problem-item-name">{item.name}: </span>}
|
|
<span className="problem-item-value">{item.lastvalue}</span>
|
|
</div>
|
|
</Tooltip>
|
|
);
|
|
}
|
|
|
|
interface ProblemItemsProps {
|
|
items: ZBXItem[];
|
|
}
|
|
|
|
class ProblemItems extends PureComponent<ProblemItemsProps> {
|
|
render() {
|
|
const { items } = this.props;
|
|
return (items.length > 1 ?
|
|
items.map(item => <ProblemItem item={item} key={item.itemid} showName={true} />) :
|
|
<ProblemItem item={items[0]} />
|
|
);
|
|
}
|
|
}
|
|
|
|
interface ProblemGroupsProps {
|
|
groups: ZBXGroup[];
|
|
className?: string;
|
|
}
|
|
|
|
class ProblemGroups extends PureComponent<ProblemGroupsProps> {
|
|
render() {
|
|
return this.props.groups.map(g => (
|
|
<div className={this.props.className || ''} key={g.groupid}>
|
|
<FAIcon icon="folder" />
|
|
<span>{g.name}</span>
|
|
</div>
|
|
));
|
|
}
|
|
}
|
|
|
|
interface ProblemHostsProps {
|
|
hosts: ZBXHost[];
|
|
className?: string;
|
|
}
|
|
|
|
class ProblemHosts extends PureComponent<ProblemHostsProps> {
|
|
render() {
|
|
return this.props.hosts.map(h => (
|
|
<div className={this.props.className || ''} key={h.hostid}>
|
|
<FAIcon icon="server" />
|
|
<span>{h.name}</span>
|
|
</div>
|
|
));
|
|
}
|
|
}
|
|
|
|
interface ProblemActionButtonProps {
|
|
icon: string;
|
|
tooltip?: string;
|
|
className?: string;
|
|
onClick?: (event?) => void;
|
|
}
|
|
|
|
class ProblemActionButton extends PureComponent<ProblemActionButtonProps> {
|
|
handleClick = (event) => {
|
|
this.props.onClick(event);
|
|
}
|
|
|
|
render() {
|
|
const { icon, tooltip, className } = this.props;
|
|
let button = (
|
|
<button className={`btn problem-action-button ${className || ''}`} onClick={this.handleClick}>
|
|
<FAIcon icon={icon} />
|
|
</button>
|
|
);
|
|
if (tooltip) {
|
|
button = (
|
|
<Tooltip placement="bottom" content={tooltip}>
|
|
{button}
|
|
</Tooltip>
|
|
);
|
|
}
|
|
return button;
|
|
}
|
|
}
|
|
|
|
interface ExploreButtonProps {
|
|
onClick: (event?) => void;
|
|
}
|
|
|
|
const ExploreButton: React.FC<ExploreButtonProps> = ({ onClick }) => {
|
|
return (
|
|
<Tooltip placement="bottom" content="Open in Explore">
|
|
<button className="btn problem-explore-button" onClick={onClick}>
|
|
<FAIcon icon="compass" /><span>Explore</span>
|
|
</button>
|
|
</Tooltip>
|
|
);
|
|
};
|