/usr/share/grafana/public/app/plugins/datasource/elasticsearch
import { toUtc, dateTime, DateTime, DurationUnit } from '@grafana/data'; import { Interval } from './types'; type IntervalMap = Record< Interval, { startOf: DurationUnit; amount: DurationUnit; } >; export const intervalMap: IntervalMap = { Hourly: { startOf: 'hour', amount: 'hours' }, Daily: { startOf: 'day', amount: 'days' }, Weekly: { startOf: 'isoWeek', amount: 'weeks' }, Monthly: { startOf: 'month', amount: 'months' }, Yearly: { startOf: 'year', amount: 'years' }, }; export class IndexPattern { private dateLocale = 'en'; constructor( private pattern: string, private interval?: keyof typeof intervalMap ) {} getIndexForToday() { if (this.interval) { return toUtc().locale(this.dateLocale).format(this.pattern); } else { return this.pattern; } } getIndexList(from?: DateTime, to?: DateTime) { // When no `from` or `to` is provided, we request data from 7 subsequent/previous indices // for the provided index pattern. // This is useful when requesting log context where the only time data we have is the log // timestamp. // TODO: Remove when enableBackendMigration toggle is removed const indexOffset = 7; if (!this.interval) { return this.pattern; } const intervalInfo = intervalMap[this.interval]; const start = dateTime(from || dateTime(to).add(-indexOffset, intervalInfo.amount)) .utc() .startOf(intervalInfo.startOf); const endEpoch = dateTime(to || dateTime(from).add(indexOffset, intervalInfo.amount)) .utc() .startOf(intervalInfo.startOf) .valueOf(); const indexList = []; while (start.valueOf() <= endEpoch) { indexList.push(start.locale(this.dateLocale).format(this.pattern)); start.add(1, intervalInfo.amount); } return indexList; } }
.
Edit
..
Edit
IndexPattern.test.ts
Edit
IndexPattern.ts
Edit
LanguageProvider.test.ts
Edit
LanguageProvider.ts
Edit
QueryBuilder.test.ts
Edit
QueryBuilder.ts
Edit
README.md
Edit
components
Edit
configuration
Edit
dataquery.cue
Edit
dataquery.gen.ts
Edit
datasource.test.ts
Edit
datasource.ts
Edit
docs
Edit
guards.test.ts
Edit
guards.ts
Edit
hooks
Edit
img
Edit
mocks.ts
Edit
modifyQuery.test.ts
Edit
modifyQuery.ts
Edit
module.test.ts
Edit
module.ts
Edit
plugin.json
Edit
queryDef.test.ts
Edit
queryDef.ts
Edit
query_help.md
Edit
test-helpers
Edit
tracking.test.ts
Edit
tracking.ts
Edit
types.ts
Edit
utils.test.ts
Edit
utils.ts
Edit