File tree 1 file changed +7
-14
lines changed
public/app/plugins/datasource/testdata
1 file changed +7
-14
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,6 @@ import {
13
13
DataFrameData ,
14
14
} from '@grafana/data' ;
15
15
// eslint-disable-next-line no-restricted-imports -- In the process from being removed
16
- import { liveTimer } from 'app/features/dashboard/dashgrid/liveTimer' ;
17
- // eslint-disable-next-line no-restricted-imports -- In the process from being removed
18
16
import { StreamingDataFrame } from 'app/features/live/data/StreamingDataFrame' ;
19
17
20
18
import { getRandomLine } from './LogIpsum' ;
@@ -104,18 +102,13 @@ export function runSignalStream(
104
102
}
105
103
106
104
const pushNextEvent = ( ) => {
107
- addNextRow ( Date . now ( ) ) ;
108
-
109
- const elapsed = liveTimer . lastUpdate - lastSent ;
110
- if ( elapsed > 1000 || liveTimer . ok ) {
111
- subscriber . next ( {
112
- data : [ frame ] ,
113
- key : streamId ,
114
- state : LoadingState . Streaming ,
115
- } ) ;
116
- lastSent = liveTimer . lastUpdate ;
117
- }
118
-
105
+ lastSent = Date . now ( ) ;
106
+ addNextRow ( lastSent ) ;
107
+ subscriber . next ( {
108
+ data : [ frame ] ,
109
+ key : streamId ,
110
+ state : LoadingState . Streaming ,
111
+ } ) ;
119
112
timeoutId = setTimeout ( pushNextEvent , speed ) ;
120
113
} ;
121
114
You can’t perform that action at this time.
0 commit comments