2022-04-22 14:33:13 +01:00
import { css } from '@emotion/css' ;
2022-10-25 13:05:21 -05:00
import debounce from 'debounce-promise' ;
2022-02-07 15:18:17 +01:00
import React , { useCallback , useState } from 'react' ;
2022-04-22 14:33:13 +01:00
import Highlighter from 'react-highlight-words' ;
2023-04-12 17:22:35 +02:00
import { GrafanaTheme2 , SelectableValue , toOption } from '@grafana/data' ;
2022-10-24 17:12:36 +02:00
import { EditorField , EditorFieldGroup } from '@grafana/experimental' ;
2023-05-01 17:29:35 -04:00
import { config } from '@grafana/runtime' ;
import { AsyncSelect , Button , FormatOptionLabelMeta , useStyles2 } from '@grafana/ui' ;
import { SelectMenuOptions } from '@grafana/ui/src/components/Select/SelectMenu' ;
2022-04-22 14:33:13 +01:00
2022-10-25 13:05:21 -05:00
import { PrometheusDatasource } from '../../datasource' ;
2022-11-09 13:54:51 -06:00
import { regexifyLabelValuesQueryString } from '../shared/parsingUtils' ;
2022-10-25 13:05:21 -05:00
import { QueryBuilderLabelFilter } from '../shared/types' ;
2022-04-22 14:33:13 +01:00
import { PromVisualQuery } from '../types' ;
2022-02-07 15:18:17 +01:00
2023-05-01 17:29:35 -04:00
import { MetricsModal } from './metrics-modal/MetricsModal' ;
2022-02-07 15:18:17 +01:00
// We are matching words split with space
const splitSeparator = ' ' ;
2022-01-31 07:57:14 +01:00
export interface Props {
2023-04-12 17:22:35 +02:00
metricLookupDisabled : boolean ;
2022-01-31 07:57:14 +01:00
query : PromVisualQuery ;
onChange : ( query : PromVisualQuery ) = > void ;
2022-02-03 11:40:19 +01:00
onGetMetrics : ( ) = > Promise < SelectableValue [ ] > ;
2022-10-25 13:05:21 -05:00
datasource : PrometheusDatasource ;
labelsFilters : QueryBuilderLabelFilter [ ] ;
2022-01-31 07:57:14 +01:00
}
2022-11-08 08:37:11 -06:00
export const PROMETHEUS_QUERY_BUILDER_MAX_RESULTS = 1000 ;
2022-10-25 13:05:21 -05:00
2023-05-01 17:29:35 -04:00
const prometheusMetricEncyclopedia = config . featureToggles . prometheusMetricEncyclopedia ;
2023-04-12 17:22:35 +02:00
export function MetricSelect ( {
datasource ,
query ,
onChange ,
onGetMetrics ,
labelsFilters ,
metricLookupDisabled ,
} : Props ) {
2022-02-07 15:18:17 +01:00
const styles = useStyles2 ( getStyles ) ;
2022-01-31 07:57:14 +01:00
const [ state , setState ] = useState < {
metrics? : Array < SelectableValue < any > > ;
isLoading? : boolean ;
2023-05-01 17:29:35 -04:00
metricsModalOpen? : boolean ;
initialMetrics? : string [ ] ;
2022-01-31 07:57:14 +01:00
} > ( { } ) ;
2022-02-07 15:18:17 +01:00
const customFilterOption = useCallback ( ( option : SelectableValue < any > , searchQuery : string ) = > {
const label = option . label ? ? option . value ;
if ( ! label ) {
return false ;
}
2022-04-28 12:25:51 +02:00
// custom value is not a string label but a react node
if ( ! label . toLowerCase ) {
return true ;
}
2022-02-07 15:18:17 +01:00
const searchWords = searchQuery . split ( splitSeparator ) ;
return searchWords . reduce ( ( acc , cur ) = > acc && label . toLowerCase ( ) . includes ( cur . toLowerCase ( ) ) , true ) ;
} , [ ] ) ;
const formatOptionLabel = useCallback (
( option : SelectableValue < any > , meta : FormatOptionLabelMeta < any > ) = > {
// For newly created custom value we don't want to add highlight
if ( option [ '__isNew__' ] ) {
return option . label ;
}
return (
< Highlighter
searchWords = { meta . inputValue . split ( splitSeparator ) }
textToHighlight = { option . label ? ? '' }
2022-02-16 09:40:04 +01:00
highlightClassName = { styles . highlight }
2022-02-07 15:18:17 +01:00
/ >
) ;
} ,
2022-02-16 09:40:04 +01:00
[ styles . highlight ]
2022-02-07 15:18:17 +01:00
) ;
2022-10-25 13:05:21 -05:00
const formatLabelFilters = ( labelsFilters : QueryBuilderLabelFilter [ ] ) : string [ ] = > {
return labelsFilters . map ( ( label ) = > {
return ` , ${ label . label } =" ${ label . value } " ` ;
} ) ;
} ;
/ * *
* Transform queryString and any currently set label filters into label_values ( ) string
* /
const queryAndFilterToLabelValuesString = (
queryString : string ,
labelsFilters : QueryBuilderLabelFilter [ ] | undefined
) : string = > {
return ` label_values({__name__=~".* ${ queryString } " ${
labelsFilters ? formatLabelFilters ( labelsFilters ) . join ( ) : ''
} } , __name__ ) ` ;
} ;
/ * *
* Reformat the query string and label filters to return all valid results for current query editor state
* /
const formatKeyValueStringsForLabelValuesQuery = (
query : string ,
labelsFilters? : QueryBuilderLabelFilter [ ]
) : string = > {
const queryString = regexifyLabelValuesQueryString ( query ) ;
return queryAndFilterToLabelValuesString ( queryString , labelsFilters ) ;
} ;
/ * *
* Gets label_values response from prometheus API for current autocomplete query string and any existing labels filters
* /
const getMetricLabels = ( query : string ) = > {
// Since some customers can have millions of metrics, whenever the user changes the autocomplete text we want to call the backend and request all metrics that match the current query string
const results = datasource . metricFindQuery ( formatKeyValueStringsForLabelValuesQuery ( query , labelsFilters ) ) ;
return results . then ( ( results ) = > {
2022-11-08 08:37:11 -06:00
if ( results . length > PROMETHEUS_QUERY_BUILDER_MAX_RESULTS ) {
results . splice ( 0 , results . length - PROMETHEUS_QUERY_BUILDER_MAX_RESULTS ) ;
2022-10-25 13:05:21 -05:00
}
return results . map ( ( result ) = > {
return {
label : result.text ,
value : result.text ,
} ;
} ) ;
} ) ;
} ;
2023-04-12 17:22:35 +02:00
// When metric and label lookup is disabled we won't request labels
const metricLookupDisabledSearch = ( ) = > Promise . resolve ( [ ] ) ;
2023-04-03 09:07:17 -05:00
const debouncedSearch = debounce (
( query : string ) = > getMetricLabels ( query ) ,
datasource . getDebounceTimeInMilliseconds ( )
) ;
2023-05-01 17:29:35 -04:00
// No type found for the common select props so typing as any
// https://github.com/grafana/grafana/blob/main/packages/grafana-ui/src/components/Select/SelectBase.tsx/#L212-L263
// eslint-disable-next-line
const CustomOption = ( props : any ) = > {
const option = props . data ;
2022-10-25 13:05:21 -05:00
2023-05-01 17:29:35 -04:00
if ( option . value === 'BrowseMetrics' ) {
const isFocused = props . isFocused ? styles . focus : '' ;
return (
< div
{ . . . props . innerProps }
onKeyDown = { ( e ) = > {
// if there is no metric and the m.e. is enabled, open the modal
if ( e . code === 'Enter' ) {
setState ( { . . . state , metricsModalOpen : true } ) ;
2022-01-31 07:57:14 +01:00
}
} }
2023-05-01 17:29:35 -04:00
>
{
< div className = { ` ${ styles . customOption } ${ isFocused } ` } >
< div >
< div > { option . label } < / div >
< div className = { styles . customOptionDesc } > { option . description } < / div >
< / div >
< Button
variant = "primary"
fill = "outline"
size = "sm"
onClick = { ( ) = > setState ( { . . . state , metricsModalOpen : true } ) }
icon = "book"
>
Open
< / Button >
< / div >
}
< / div >
) ;
}
return SelectMenuOptions ( props ) ;
} ;
return (
< >
{ prometheusMetricEncyclopedia && ! datasource . lookupsDisabled && state . metricsModalOpen && (
< MetricsModal
datasource = { datasource }
isOpen = { state . metricsModalOpen }
onClose = { ( ) = > setState ( { . . . state , metricsModalOpen : false } ) }
query = { query }
onChange = { onChange }
initialMetrics = { state . initialMetrics ? ? [ ] }
2022-01-31 07:57:14 +01:00
/ >
2023-05-01 17:29:35 -04:00
) }
< EditorFieldGroup >
< EditorField label = "Metric" >
< AsyncSelect
inputId = "prometheus-metric-select"
className = { styles . select }
value = { query . metric ? toOption ( query . metric ) : undefined }
placeholder = { 'Select metric' }
allowCustomValue
formatOptionLabel = { formatOptionLabel }
filterOption = { customFilterOption }
onOpenMenu = { async ( ) = > {
if ( metricLookupDisabled ) {
return ;
}
setState ( { isLoading : true } ) ;
const metrics = await onGetMetrics ( ) ;
const initialMetrics : string [ ] = metrics . map ( ( m ) = > m . value ) ;
if ( metrics . length > PROMETHEUS_QUERY_BUILDER_MAX_RESULTS ) {
metrics . splice ( 0 , metrics . length - PROMETHEUS_QUERY_BUILDER_MAX_RESULTS ) ;
}
if ( config . featureToggles . prometheusMetricEncyclopedia ) {
// pass the initial metrics, possibly filtered by labels into the Metrics Modal
const metricsModalOption : SelectableValue [ ] = [
{
value : 'BrowseMetrics' ,
label : 'Browse metrics' ,
description : 'Browse and filter metrics and metadata with a fuzzy search' ,
} ,
] ;
setState ( {
metrics : [ . . . metricsModalOption , . . . metrics ] ,
isLoading : undefined ,
initialMetrics : initialMetrics ,
} ) ;
} else {
setState ( { metrics , isLoading : undefined } ) ;
}
} }
loadOptions = { metricLookupDisabled ? metricLookupDisabledSearch : debouncedSearch }
isLoading = { state . isLoading }
defaultOptions = { state . metrics }
onChange = { ( { value } ) = > {
if ( value ) {
// if there is no metric and the m.e. is enabled, open the modal
if ( prometheusMetricEncyclopedia && value === 'BrowseMetrics' ) {
setState ( { . . . state , metricsModalOpen : true } ) ;
} else {
onChange ( { . . . query , metric : value } ) ;
}
}
} }
components = { { Option : CustomOption } }
/ >
< / EditorField >
< / EditorFieldGroup >
< / >
2022-01-31 07:57:14 +01:00
) ;
}
2022-02-07 15:18:17 +01:00
const getStyles = ( theme : GrafanaTheme2 ) = > ( {
2022-01-31 07:57:14 +01:00
select : css `
min - width : 125px ;
` ,
2022-02-16 09:40:04 +01:00
highlight : css `
2022-02-07 15:18:17 +01:00
label : select__match - highlight ;
background : inherit ;
padding : inherit ;
2022-05-23 15:53:45 +02:00
color : $ { theme . colors . warning . contrastText } ;
background - color : $ { theme . colors . warning . main } ;
2022-02-07 15:18:17 +01:00
` ,
2023-05-01 17:29:35 -04:00
customOption : css `
padding : 8px ;
display : flex ;
justify - content : space - between ;
cursor : pointer ;
: hover {
background - color : $ { theme . colors . emphasize ( theme . colors . background . primary , 0.03 ) } ;
}
` ,
customOptionlabel : css `
color : $ { theme . colors . text . primary } ;
` ,
customOptionDesc : css `
color : $ { theme . colors . text . secondary } ;
font - size : $ { theme . typography . size . xs } ;
opacity : 50 % ;
` ,
focus : css `
background - color : $ { theme . colors . emphasize ( theme . colors . background . primary , 0.03 ) } ;
` ,
2022-01-31 07:57:14 +01:00
} ) ;