mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Replace icons in dashboard and settings * Replace icons in alerting * Update batch of icons * Implement icons accross various files * Style updates * Search: Fix recent and starred icons * Update styling and details * Replace new icon created by unicons * Fix e2e test, styling * Minor styling updates Co-authored-by: Clarity-89 <homes89@ukr.net>
70 lines
2.2 KiB
TypeScript
70 lines
2.2 KiB
TypeScript
import _ from 'lodash';
|
|
import React, { Component } from 'react';
|
|
|
|
import { PrometheusDatasource } from '../datasource';
|
|
import { PromQuery } from '../types';
|
|
import { DataQueryRequest, PanelData } from '@grafana/data';
|
|
import { Icon } from '@grafana/ui';
|
|
import { getDatasourceSrv } from 'app/features/plugins/datasource_srv';
|
|
|
|
interface Props {
|
|
datasource: PrometheusDatasource;
|
|
query: PromQuery;
|
|
panelData: PanelData;
|
|
}
|
|
|
|
interface State {
|
|
href: string;
|
|
}
|
|
|
|
export default class PromLink extends Component<Props, State> {
|
|
state: State = { href: null };
|
|
async componentDidUpdate(prevProps: Props) {
|
|
if (prevProps.panelData !== this.props.panelData && this.props.panelData.request) {
|
|
const href = await this.getExternalLink();
|
|
this.setState({ href });
|
|
}
|
|
}
|
|
|
|
async getExternalLink(): Promise<string> {
|
|
const { query, panelData } = this.props;
|
|
const target = panelData.request.targets.length > 0 ? panelData.request.targets[0] : ({ datasource: null } as any);
|
|
const datasourceName = target.datasource;
|
|
const datasource: PrometheusDatasource = datasourceName
|
|
? (((await getDatasourceSrv().get(datasourceName)) as any) as PrometheusDatasource)
|
|
: (this.props.datasource as PrometheusDatasource);
|
|
|
|
const range = panelData.request.range;
|
|
const start = datasource.getPrometheusTime(range.from, false);
|
|
const end = datasource.getPrometheusTime(range.to, true);
|
|
const rangeDiff = Math.ceil(end - start);
|
|
const endTime = range.to.utc().format('YYYY-MM-DD HH:mm');
|
|
|
|
const options = {
|
|
interval: panelData.request.interval,
|
|
} as DataQueryRequest<PromQuery>;
|
|
const queryOptions = datasource.createQuery(query, options, start, end);
|
|
const expr = {
|
|
'g0.expr': queryOptions.expr,
|
|
'g0.range_input': rangeDiff + 's',
|
|
'g0.end_input': endTime,
|
|
'g0.step_input': queryOptions.step,
|
|
'g0.tab': 0,
|
|
};
|
|
|
|
const args = _.map(expr, (v: string, k: string) => {
|
|
return k + '=' + encodeURIComponent(v);
|
|
}).join('&');
|
|
return `${datasource.directUrl}/graph?${args}`;
|
|
}
|
|
|
|
render() {
|
|
const { href } = this.state;
|
|
return (
|
|
<a href={href} target="_blank" rel="noopener">
|
|
<Icon name="share-alt" /> Prometheus
|
|
</a>
|
|
);
|
|
}
|
|
}
|