File tree 1 file changed +1
-5
lines changed
src/components/AlertsTable
1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change 8
8
VariableValueSelectors ,
9
9
SceneVariables ,
10
10
} from '@grafana/scenes' ;
11
- import { createNamespaceVariable , resolveVariable } from 'common/variableHelpers' ;
11
+ import { createNamespaceVariable } from 'common/variableHelpers' ;
12
12
import { SortingState } from 'common/sortingHelpers' ;
13
13
import { AsyncTable , Column , ColumnSortingConfig , QueryBuilder } from 'components/AsyncTable' ;
14
14
import { TextColor } from 'common/types' ;
@@ -17,8 +17,6 @@ import { alertLabelValues } from './utils';
17
17
import { expandedRowSceneBuilder } from './AlertExpandedRow' ;
18
18
import { LabelFilters , serializeLabelFilters } from 'common/queryHelpers' ;
19
19
20
- const KNOWN_SEVERITIES = [ 'critical' , 'high' , 'warning' , 'info' ] ;
21
-
22
20
interface SeverityColors {
23
21
[ key : string ] : TextColor ;
24
22
}
@@ -134,8 +132,6 @@ const columns: Array<Column<TableRow>> = [
134
132
}
135
133
]
136
134
137
- const serieMatcherPredicate = ( row : TableRow ) => ( value : any ) => value . alertname === row . alertname ;
138
-
139
135
function rowMapper ( row : TableRow , asyncRowData : any ) {
140
136
141
137
}
You can’t perform that action at this time.
0 commit comments