文件操作 - actionTypes.ts
返回文件管理
返回主菜单
删除本文件
文件: /usr/share/grafana/public/app/features/explore/state/actionTypes.ts
编辑文件内容
// Types import { Unsubscribable } from 'rxjs'; import { createAction } from '@reduxjs/toolkit'; import { Emitter } from 'app/core/core'; import { AbsoluteTimeRange, DataQuery, DataSourceApi, HistoryItem, LoadingState, LogLevel, PanelData, QueryFixAction, TimeRange, ExploreUIState, } from '@grafana/data'; import { ExploreId, ExploreItemState } from 'app/types/explore'; export interface AddQueryRowPayload { exploreId: ExploreId; index: number; query: DataQuery; } export interface ChangeQueryPayload { exploreId: ExploreId; query: DataQuery; index: number; override: boolean; } export interface ChangeSizePayload { exploreId: ExploreId; width: number; height: number; } export interface ChangeRefreshIntervalPayload { exploreId: ExploreId; refreshInterval: string; } export interface ClearQueriesPayload { exploreId: ExploreId; } export interface HighlightLogsExpressionPayload { exploreId: ExploreId; expressions: string[]; } export interface InitializeExplorePayload { exploreId: ExploreId; containerWidth: number; eventBridge: Emitter; queries: DataQuery[]; range: TimeRange; ui: ExploreUIState; originPanelId: number; } export interface LoadDatasourceMissingPayload { exploreId: ExploreId; } export interface LoadDatasourcePendingPayload { exploreId: ExploreId; requestedDatasourceName: string; } export interface LoadDatasourceReadyPayload { exploreId: ExploreId; history: HistoryItem[]; } export interface ModifyQueriesPayload { exploreId: ExploreId; modification: QueryFixAction; index?: number; modifier: (query: DataQuery, modification: QueryFixAction) => DataQuery; } export interface QueryEndedPayload { exploreId: ExploreId; response: PanelData; } export interface QueryStoreSubscriptionPayload { exploreId: ExploreId; querySubscription: Unsubscribable; } export interface HistoryUpdatedPayload { exploreId: ExploreId; history: HistoryItem[]; } export interface RemoveQueryRowPayload { exploreId: ExploreId; index: number; } export interface ScanStartPayload { exploreId: ExploreId; } export interface ScanStopPayload { exploreId: ExploreId; } export interface SetQueriesPayload { exploreId: ExploreId; queries: DataQuery[]; } export interface SplitCloseActionPayload { itemId: ExploreId; } export interface SplitOpenPayload { itemState: ExploreItemState; } export interface SyncTimesPayload { syncedTimes: boolean; } export interface ToggleTablePayload { exploreId: ExploreId; } export interface ToggleGraphPayload { exploreId: ExploreId; } export interface UpdateUIStatePayload extends Partial<ExploreUIState> { exploreId: ExploreId; } export interface UpdateDatasourceInstancePayload { exploreId: ExploreId; datasourceInstance: DataSourceApi; version?: string; } export interface ToggleLogLevelPayload { exploreId: ExploreId; hiddenLogLevels: LogLevel[]; } export interface QueriesImportedPayload { exploreId: ExploreId; queries: DataQuery[]; } export interface SetUrlReplacedPayload { exploreId: ExploreId; } export interface ChangeRangePayload { exploreId: ExploreId; range: TimeRange; absoluteRange: AbsoluteTimeRange; } export interface ChangeLoadingStatePayload { exploreId: ExploreId; loadingState: LoadingState; } export interface SetPausedStatePayload { exploreId: ExploreId; isPaused: boolean; } export interface ResetExplorePayload { force?: boolean; } /** * Adds a query row after the row with the given index. */ export const addQueryRowAction = createAction<AddQueryRowPayload>('explore/addQueryRow'); /** * Query change handler for the query row with the given index. * If `override` is reset the query modifications and run the queries. Use this to set queries via a link. */ export const changeQueryAction = createAction<ChangeQueryPayload>('explore/changeQuery'); /** * Keep track of the Explore container size, in particular the width. * The width will be used to calculate graph intervals (number of datapoints). */ export const changeSizeAction = createAction<ChangeSizePayload>('explore/changeSize'); /** * Change the time range of Explore. Usually called from the Timepicker or a graph interaction. */ export const changeRefreshIntervalAction = createAction<ChangeRefreshIntervalPayload>('explore/changeRefreshInterval'); /** * Clear all queries and results. */ export const clearQueriesAction = createAction<ClearQueriesPayload>('explore/clearQueries'); /** * Cancel running queries. */ export const cancelQueriesAction = createAction<ClearQueriesPayload>('explore/cancelQueries'); /** * Highlight expressions in the log results */ export const highlightLogsExpressionAction = createAction<HighlightLogsExpressionPayload>( 'explore/highlightLogsExpression' ); /** * Initialize Explore state with state from the URL and the React component. * Call this only on components for with the Explore state has not been initialized. */ export const initializeExploreAction = createAction<InitializeExplorePayload>('explore/initializeExplore'); /** * Display an error when no datasources have been configured */ export const loadDatasourceMissingAction = createAction<LoadDatasourceMissingPayload>('explore/loadDatasourceMissing'); /** * Start the async process of loading a datasource to display a loading indicator */ export const loadDatasourcePendingAction = createAction<LoadDatasourcePendingPayload>('explore/loadDatasourcePending'); /** * Datasource loading was completed. */ export const loadDatasourceReadyAction = createAction<LoadDatasourceReadyPayload>('explore/loadDatasourceReady'); /** * Action to modify a query given a datasource-specific modifier action. * @param exploreId Explore area * @param modification Action object with a type, e.g., ADD_FILTER * @param index Optional query row index. If omitted, the modification is applied to all query rows. * @param modifier Function that executes the modification, typically `datasourceInstance.modifyQueries`. */ export const modifyQueriesAction = createAction<ModifyQueriesPayload>('explore/modifyQueries'); export const queryStreamUpdatedAction = createAction<QueryEndedPayload>('explore/queryStreamUpdated'); export const queryStoreSubscriptionAction = createAction<QueryStoreSubscriptionPayload>( 'explore/queryStoreSubscription' ); /** * Remove query row of the given index, as well as associated query results. */ export const removeQueryRowAction = createAction<RemoveQueryRowPayload>('explore/removeQueryRow'); /** * Start a scan for more results using the given scanner. * @param exploreId Explore area * @param scanner Function that a) returns a new time range and b) triggers a query run for the new range */ export const scanStartAction = createAction<ScanStartPayload>('explore/scanStart'); /** * Stop any scanning for more results. */ export const scanStopAction = createAction<ScanStopPayload>('explore/scanStop'); /** * Reset queries to the given queries. Any modifications will be discarded. * Use this action for clicks on query examples. Triggers a query run. */ export const setQueriesAction = createAction<SetQueriesPayload>('explore/setQueries'); /** * Close the split view and save URL state. */ export const splitCloseAction = createAction<SplitCloseActionPayload>('explore/splitClose'); /** * Open the split view and copy the left state to be the right state. * The right state is automatically initialized. * The copy keeps all query modifications but wipes the query results. */ export const splitOpenAction = createAction<SplitOpenPayload>('explore/splitOpen'); export const syncTimesAction = createAction<SyncTimesPayload>('explore/syncTimes'); export const richHistoryUpdatedAction = createAction<any>('explore/richHistoryUpdated'); /** * Update state of Explores UI elements (panels visiblity and deduplication strategy) */ export const updateUIStateAction = createAction<UpdateUIStatePayload>('explore/updateUIState'); /** * Expand/collapse the table result viewer. When collapsed, table queries won't be run. */ export const toggleTableAction = createAction<ToggleTablePayload>('explore/toggleTable'); /** * Expand/collapse the graph result viewer. When collapsed, graph queries won't be run. */ export const toggleGraphAction = createAction<ToggleGraphPayload>('explore/toggleGraph'); /** * Updates datasource instance before datasouce loading has started */ export const updateDatasourceInstanceAction = createAction<UpdateDatasourceInstancePayload>( 'explore/updateDatasourceInstance' ); export const toggleLogLevelAction = createAction<ToggleLogLevelPayload>('explore/toggleLogLevel'); /** * Resets state for explore. */ export const resetExploreAction = createAction<ResetExplorePayload>('explore/resetExplore'); export const queriesImportedAction = createAction<QueriesImportedPayload>('explore/queriesImported'); export const historyUpdatedAction = createAction<HistoryUpdatedPayload>('explore/historyUpdated'); export const setUrlReplacedAction = createAction<SetUrlReplacedPayload>('explore/setUrlReplaced'); export const changeRangeAction = createAction<ChangeRangePayload>('explore/changeRange'); export const changeLoadingStateAction = createAction<ChangeLoadingStatePayload>('changeLoadingState'); export const setPausedStateAction = createAction<SetPausedStatePayload>('explore/setPausedState');
修改文件时间
将文件时间修改为当前时间的前一年
删除文件