@@ -30,12 +30,15 @@ import {
30
30
MetricSettings ,
31
31
GroupBySettings ,
32
32
DataSourceContext ,
33
+ DataRetentionSettings ,
33
34
} from '../TopNQueries/TopNQueries' ;
34
35
import {
35
36
METRIC_TYPES_TEXT ,
36
37
TIME_UNITS_TEXT ,
37
38
MINUTES_OPTIONS ,
38
39
GROUP_BY_OPTIONS ,
40
+ EXPORTER_TYPES_LIST ,
41
+ EXPORTER_TYPE ,
39
42
} from '../Utils/Constants' ;
40
43
import { QueryInsightsDataSourceMenu } from '../../components/DataSourcePicker' ;
41
44
import { QueryInsightsDashboardsPluginStartDependencies } from '../../types' ;
@@ -45,6 +48,7 @@ const Configuration = ({
45
48
cpuSettings,
46
49
memorySettings,
47
50
groupBySettings,
51
+ dataRetentionSettings,
48
52
configInfo,
49
53
core,
50
54
depsStart,
@@ -55,6 +59,7 @@ const Configuration = ({
55
59
cpuSettings : MetricSettings ;
56
60
memorySettings : MetricSettings ;
57
61
groupBySettings : GroupBySettings ;
62
+ dataRetentionSettings : DataRetentionSettings ;
58
63
configInfo : any ;
59
64
core : CoreStart ;
60
65
params : AppMountParameters ;
@@ -71,23 +76,29 @@ const Configuration = ({
71
76
const [ time , setTime ] = useState ( latencySettings . currTimeUnit ) ;
72
77
const [ groupBy , setGroupBy ] = useState ( groupBySettings . groupBy ) ;
73
78
const { dataSource, setDataSource } = useContext ( DataSourceContext ) ! ;
79
+ const [ deleteAfterDays , setDeleteAfterDays ] = useState ( dataRetentionSettings . deleteAfterDays ) ;
80
+ const [ exporterType , setExporterTypeType ] = useState ( dataRetentionSettings . exporterType ) ;
74
81
75
82
const [ metricSettingsMap , setMetricSettingsMap ] = useState ( {
76
83
latency : latencySettings ,
77
84
cpu : cpuSettings ,
78
85
memory : memorySettings ,
86
+ } ) ;
87
+
88
+ const [ groupBySettingMap , setGroupBySettingMap ] = useState ( {
79
89
groupBy : groupBySettings ,
80
90
} ) ;
81
91
92
+ const [ dataRetentionSettingMap , setDataRetentionSettingMap ] = useState ( {
93
+ dataRetention : dataRetentionSettings ,
94
+ } ) ;
95
+
82
96
useEffect ( ( ) => {
83
97
setMetricSettingsMap ( {
84
98
latency : latencySettings ,
85
99
cpu : cpuSettings ,
86
100
memory : memorySettings ,
87
- groupBy : groupBySettings ,
88
101
} ) ;
89
-
90
- setGroupBy ( groupBySettings . groupBy ) ;
91
102
} , [ latencySettings , cpuSettings , memorySettings , groupBySettings ] ) ;
92
103
93
104
const newOrReset = useCallback ( ( ) => {
@@ -96,12 +107,28 @@ const Configuration = ({
96
107
setWindowSize ( currMetric . currWindowSize ) ;
97
108
setTime ( currMetric . currTimeUnit ) ;
98
109
setIsEnabled ( currMetric . isEnabled ) ;
110
+ // setExporterTypeType(currMetric.exporterType);
99
111
} , [ metric , metricSettingsMap ] ) ;
100
112
101
113
useEffect ( ( ) => {
102
114
newOrReset ( ) ;
103
115
} , [ newOrReset , metricSettingsMap ] ) ;
104
116
117
+ useEffect ( ( ) => {
118
+ setGroupBySettingMap ( {
119
+ groupBy : groupBySettings ,
120
+ } ) ;
121
+ setGroupBy ( groupBySettings . groupBy ) ;
122
+ } , [ groupBySettings ] ) ;
123
+
124
+ useEffect ( ( ) => {
125
+ setDataRetentionSettingMap ( {
126
+ dataRetention : dataRetentionSettings ,
127
+ } ) ;
128
+ setDeleteAfterDays ( dataRetentionSettings . deleteAfterDays ) ;
129
+ setExporterTypeType ( dataRetentionSettings . exporterType ) ;
130
+ } , [ dataRetentionSettings ] ) ;
131
+
105
132
useEffect ( ( ) => {
106
133
core . chrome . setBreadcrumbs ( [
107
134
{
@@ -137,10 +164,18 @@ const Configuration = ({
137
164
setTime ( e . target . value ) ;
138
165
} ;
139
166
140
- const onGroupByChange = ( e : any ) => {
167
+ const onExporterTypeChange = ( e : React . ChangeEvent < HTMLSelectElement > ) => {
168
+ setExporterTypeType ( e . target . value ) ;
169
+ } ;
170
+
171
+ const onGroupByChange = ( e : React . ChangeEvent < HTMLSelectElement > ) => {
141
172
setGroupBy ( e . target . value ) ;
142
173
} ;
143
174
175
+ const onDeleteAfterDaysChange = ( e : React . ChangeEvent < HTMLInputElement > ) => {
176
+ setDeleteAfterDays ( e . target . value ) ;
177
+ } ;
178
+
144
179
const MinutesBox = ( ) => (
145
180
< EuiSelect
146
181
id = "minutes"
@@ -168,7 +203,9 @@ const Configuration = ({
168
203
topNSize !== metricSettingsMap [ metric ] . currTopN ||
169
204
windowSize !== metricSettingsMap [ metric ] . currWindowSize ||
170
205
time !== metricSettingsMap [ metric ] . currTimeUnit ||
171
- groupBy !== metricSettingsMap . groupBy . groupBy ;
206
+ groupBy !== groupBySettingMap . groupBy . groupBy ||
207
+ exporterType !== dataRetentionSettingMap . dataRetention . exporterType ||
208
+ deleteAfterDays !== dataRetentionSettingMap . dataRetention . deleteAfterDays ;
172
209
173
210
const isValid = ( ( ) => {
174
211
const nVal = parseInt ( topNSize , 10 ) ;
@@ -415,6 +452,85 @@ const Configuration = ({
415
452
</ EuiPanel >
416
453
</ EuiFlexItem >
417
454
</ EuiFlexGroup >
455
+ < EuiFlexGroup >
456
+ < EuiFlexItem grow = { 6 } >
457
+ < EuiPanel paddingSize = "m" >
458
+ < EuiForm >
459
+ < EuiFlexItem >
460
+ < EuiTitle size = "s" >
461
+ < EuiText size = "s" >
462
+ < h2 > Query Insights export and data retention settings</ h2 >
463
+ </ EuiText >
464
+ </ EuiTitle >
465
+ </ EuiFlexItem >
466
+ < EuiFlexItem >
467
+ < EuiFlexGrid columns = { 2 } gutterSize = "s" style = { { padding : '15px 0px' } } >
468
+ < EuiFlexItem >
469
+ < EuiText size = "xs" >
470
+ < h3 > Exporter</ h3 >
471
+ </ EuiText >
472
+ < EuiText size = "xs" style = { textPadding } >
473
+ Configure a sink for exporting Query Insights data.
474
+ </ EuiText >
475
+ </ EuiFlexItem >
476
+ < EuiFlexItem >
477
+ < EuiFormRow style = { formRowPadding } >
478
+ < EuiSelect
479
+ id = "exporterType"
480
+ required = { true }
481
+ options = { EXPORTER_TYPES_LIST }
482
+ value = { exporterType }
483
+ onChange = { onExporterTypeChange }
484
+ />
485
+ </ EuiFormRow >
486
+ </ EuiFlexItem >
487
+ < EuiFlexItem >
488
+ < EuiText size = "xs" >
489
+ < h3 > Delete After (days)</ h3 >
490
+ </ EuiText >
491
+ < EuiText size = "xs" style = { textPadding } >
492
+ Number of days to retain Query Insights data.
493
+ </ EuiText >
494
+ </ EuiFlexItem >
495
+ < EuiFlexItem >
496
+ < EuiFormRow style = { formRowPadding } >
497
+ < EuiFieldNumber
498
+ disabled = { exporterType !== EXPORTER_TYPE . localIndex }
499
+ min = { 1 }
500
+ max = { 180 }
501
+ value = { exporterType !== EXPORTER_TYPE . localIndex ? '' : deleteAfterDays }
502
+ onChange = { onDeleteAfterDaysChange }
503
+ />
504
+ </ EuiFormRow >
505
+ </ EuiFlexItem >
506
+ </ EuiFlexGrid >
507
+ </ EuiFlexItem >
508
+ </ EuiForm >
509
+ </ EuiPanel >
510
+ </ EuiFlexItem >
511
+ < EuiFlexItem grow = { 2 } >
512
+ < EuiPanel paddingSize = "m" grow = { false } >
513
+ < EuiFlexItem >
514
+ < EuiTitle size = "s" >
515
+ < EuiText size = "s" >
516
+ < h2 > Statuses for data retention</ h2 >
517
+ </ EuiText >
518
+ </ EuiTitle >
519
+ </ EuiFlexItem >
520
+ < EuiFlexItem >
521
+ < EuiFlexGroup >
522
+ < EuiFlexItem >
523
+ < EuiText size = "m" > Exporter</ EuiText >
524
+ </ EuiFlexItem >
525
+ < EuiFlexItem >
526
+ < EuiSpacer size = "xs" />
527
+ { exporterType === EXPORTER_TYPE . localIndex ? enabledSymb : disabledSymb }
528
+ </ EuiFlexItem >
529
+ </ EuiFlexGroup >
530
+ </ EuiFlexItem >
531
+ </ EuiPanel >
532
+ </ EuiFlexItem >
533
+ </ EuiFlexGroup >
418
534
{ isChanged && isValid ? (
419
535
< EuiBottomBar >
420
536
< EuiFlexGroup gutterSize = "s" justifyContent = "flexEnd" >
@@ -431,7 +547,17 @@ const Configuration = ({
431
547
size = "s"
432
548
iconType = "check"
433
549
onClick = { ( ) => {
434
- configInfo ( false , isEnabled , metric , topNSize , windowSize , time , groupBy ) ;
550
+ configInfo (
551
+ false ,
552
+ isEnabled ,
553
+ metric ,
554
+ topNSize ,
555
+ windowSize ,
556
+ time ,
557
+ exporterType ,
558
+ groupBy ,
559
+ deleteAfterDays
560
+ ) ;
435
561
return history . push ( QUERY_INSIGHTS ) ;
436
562
} }
437
563
>
0 commit comments