当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript explore.getTimeRange函数代码示例

本文整理汇总了TypeScript中app/core/utils/explore.getTimeRange函数的典型用法代码示例。如果您正苦于以下问题:TypeScript getTimeRange函数的具体用法?TypeScript getTimeRange怎么用?TypeScript getTimeRange使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了getTimeRange函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: return

  return (dispatch, getState) => {
    const {
      datasourceInstance,
      queries,
      showingGraph,
      showingTable,
      datasourceError,
      containerWidth,
      mode,
      range,
    } = getState().explore[exploreId];

    if (datasourceError) {
      // let's not run any queries if data source is in a faulty state
      return;
    }

    if (!hasNonEmptyQuery(queries)) {
      dispatch(clearQueriesAction({ exploreId }));
      dispatch(stateSave(replaceUrl)); // Remember to save to state and update location
      return;
    }

    // Some datasource's query builders allow per-query interval limits,
    // but we're using the datasource interval limit for now
    const interval = datasourceInstance.interval;

    const timeZone = getTimeZone(getState().user);
    const updatedRange = getTimeRange(timeZone, range.raw);

    dispatch(runQueriesAction({ exploreId, range: updatedRange }));
    // Keep table queries first since they need to return quickly
    if ((ignoreUIState || showingTable) && mode === ExploreMode.Metrics) {
      dispatch(
        runQueriesForType(exploreId, 'Table', {
          interval,
          format: 'table',
          instant: true,
          valueWithRefId: true,
        })
      );
    }
    if ((ignoreUIState || showingGraph) && mode === ExploreMode.Metrics) {
      dispatch(
        runQueriesForType(exploreId, 'Graph', {
          interval,
          format: 'time_series',
          instant: false,
          maxDataPoints: containerWidth,
        })
      );
    }
    if (mode === ExploreMode.Logs) {
      dispatch(runQueriesForType(exploreId, 'Logs', { interval, format: 'logs' }));
    }

    dispatch(stateSave(replaceUrl));
  };
开发者ID:grafana,项目名称:grafana,代码行数:58,代码来源:actions.ts

示例2: async

 return async (dispatch, getState) => {
   const timeZone = getTimeZone(getState().user);
   const range = getTimeRange(timeZone, rawRange);
   dispatch(loadExploreDatasourcesAndSetDatasource(exploreId, datasourceName));
   dispatch(
     initializeExploreAction({
       exploreId,
       containerWidth,
       eventBridge,
       queries,
       range,
       ui,
     })
   );
 };
开发者ID:johntdyer,项目名称:grafana,代码行数:15,代码来源:actions.ts

示例3: return

 return (dispatch, getState) => {
   const timeZone = getTimeZone(getState().user);
   const range = getTimeRange(timeZone, rawRange);
   dispatch(changeTimeAction({ exploreId, range }));
   dispatch(runQueries(exploreId));
 };
开发者ID:johntdyer,项目名称:grafana,代码行数:6,代码来源:actions.ts


注:本文中的app/core/utils/explore.getTimeRange函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。