mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Logs: Add experimental table visualisation in Explore (#71120)
* add table visualisation for logs * add `logsExploreTableVisualisation` feature flag * add feature flag to visualisation switch * fix english * improve state when no data is present * improve margin * add missing prop to test * add tests * fix logs table height * fix linting * move visualisation toggle * add field config overrides * update tests * fix explore test * fix explore test * add missing header and revert test changes * use timefield from logsFrame.ts * add TODO * move to new file * hide fields that should be hidden * add test to hide fields * remove unused lines
This commit is contained in:
@@ -214,7 +214,9 @@ class LogsContainer extends PureComponent<LogsContainerProps> {
|
||||
clearCache={() => clearCache(exploreId)}
|
||||
eventBus={this.props.eventBus}
|
||||
panelState={this.props.panelState}
|
||||
logsFrames={this.props.logsFrames}
|
||||
scrollElement={scrollElement}
|
||||
range={range}
|
||||
/>
|
||||
</LogsCrossFadeTransition>
|
||||
</>
|
||||
@@ -258,6 +260,7 @@ function mapStateToProps(state: StoreState, { exploreId }: { exploreId: string }
|
||||
absoluteRange,
|
||||
logsVolume,
|
||||
panelState,
|
||||
logsFrames: item.queryResponse.logsFrames,
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user