2020-02-23 11:35:47 +00:00
package remotewrite
import (
"flag"
2020-05-30 11:36:40 +00:00
"fmt"
2020-02-23 11:35:47 +00:00
"strings"
"sync"
"github.com/VictoriaMetrics/VictoriaMetrics/lib/flagutil"
"github.com/VictoriaMetrics/VictoriaMetrics/lib/logger"
"github.com/VictoriaMetrics/VictoriaMetrics/lib/prompbmarshal"
"github.com/VictoriaMetrics/VictoriaMetrics/lib/promrelabel"
)
var (
2022-10-01 15:26:05 +00:00
unparsedLabelsGlobal = flagutil . NewArrayString ( "remoteWrite.label" , "Optional label in the form 'name=value' to add to all the metrics before sending them to -remoteWrite.url. " +
2021-03-25 15:54:55 +00:00
"Pass multiple -remoteWrite.label flags in order to add multiple labels to metrics before sending them to remote storage" )
2021-12-02 22:08:42 +00:00
relabelConfigPathGlobal = flag . String ( "remoteWrite.relabelConfig" , "" , "Optional path to file with relabel_config entries. " +
"The path can point either to local file or to http url. These entries are applied to all the metrics " +
2021-04-20 17:16:17 +00:00
"before sending them to -remoteWrite.url. See https://docs.victoriametrics.com/vmagent.html#relabeling for details" )
2021-06-04 17:27:55 +00:00
relabelDebugGlobal = flag . Bool ( "remoteWrite.relabelDebug" , false , "Whether to log metrics before and after relabeling with -remoteWrite.relabelConfig. " +
"If the -remoteWrite.relabelDebug is enabled, then the metrics aren't sent to remote storage. This is useful for debugging the relabeling configs" )
2022-10-01 15:26:05 +00:00
relabelConfigPaths = flagutil . NewArrayString ( "remoteWrite.urlRelabelConfig" , "Optional path to relabel config for the corresponding -remoteWrite.url. " +
2021-12-02 22:08:42 +00:00
"The path can point either to local file or to http url" )
relabelDebug = flagutil . NewArrayBool ( "remoteWrite.urlRelabelDebug" , "Whether to log metrics before and after relabeling with -remoteWrite.urlRelabelConfig. " +
2021-06-04 17:27:55 +00:00
"If the -remoteWrite.urlRelabelDebug is enabled, then the metrics aren't sent to the corresponding -remoteWrite.url. " +
"This is useful for debugging the relabeling configs" )
2022-09-26 10:11:37 +00:00
usePromCompatibleNaming = flag . Bool ( "usePromCompatibleNaming" , false , "Whether to replace characters unsupported by Prometheus with underscores " +
"in the ingested metric names and label names. For example, foo.bar{a.b='c'} is transformed into foo_bar{a_b='c'} during data ingestion if this flag is set. " +
"See https://prometheus.io/docs/concepts/data_model/#metric-names-and-labels" )
2020-02-23 11:35:47 +00:00
)
2020-03-03 11:08:17 +00:00
var labelsGlobal [ ] prompbmarshal . Label
2020-02-23 11:35:47 +00:00
2020-05-30 11:36:40 +00:00
// CheckRelabelConfigs checks -remoteWrite.relabelConfig and -remoteWrite.urlRelabelConfig.
func CheckRelabelConfigs ( ) error {
_ , err := loadRelabelConfigs ( )
return err
}
func loadRelabelConfigs ( ) ( * relabelConfigs , error ) {
var rcs relabelConfigs
if * relabelConfigPathGlobal != "" {
2021-06-04 17:27:55 +00:00
global , err := promrelabel . LoadRelabelConfigs ( * relabelConfigPathGlobal , * relabelDebugGlobal )
2020-05-30 11:36:40 +00:00
if err != nil {
2020-06-30 19:58:18 +00:00
return nil , fmt . Errorf ( "cannot load -remoteWrite.relabelConfig=%q: %w" , * relabelConfigPathGlobal , err )
2020-05-30 11:36:40 +00:00
}
rcs . global = global
}
2021-08-05 06:44:29 +00:00
if len ( * relabelConfigPaths ) > ( len ( * remoteWriteURLs ) + len ( * remoteWriteMultitenantURLs ) ) {
2021-08-05 06:46:19 +00:00
return nil , fmt . Errorf ( "too many -remoteWrite.urlRelabelConfig args: %d; it mustn't exceed the number of -remoteWrite.url or -remoteWrite.multitenantURL args: %d" ,
2021-08-05 06:44:29 +00:00
len ( * relabelConfigPaths ) , ( len ( * remoteWriteURLs ) + len ( * remoteWriteMultitenantURLs ) ) )
2020-05-30 11:36:40 +00:00
}
2021-08-05 06:44:29 +00:00
rcs . perURL = make ( [ ] * promrelabel . ParsedConfigs , ( len ( * remoteWriteURLs ) + len ( * remoteWriteMultitenantURLs ) ) )
2020-05-30 11:36:40 +00:00
for i , path := range * relabelConfigPaths {
2020-07-20 12:49:05 +00:00
if len ( path ) == 0 {
// Skip empty relabel config.
continue
}
2021-06-04 17:27:55 +00:00
prc , err := promrelabel . LoadRelabelConfigs ( path , relabelDebug . GetOptionalArg ( i ) )
2020-05-30 11:36:40 +00:00
if err != nil {
2020-06-30 19:58:18 +00:00
return nil , fmt . Errorf ( "cannot load relabel configs from -remoteWrite.urlRelabelConfig=%q: %w" , path , err )
2020-05-30 11:36:40 +00:00
}
rcs . perURL [ i ] = prc
}
return & rcs , nil
}
type relabelConfigs struct {
2021-02-22 14:33:55 +00:00
global * promrelabel . ParsedConfigs
perURL [ ] * promrelabel . ParsedConfigs
2020-05-30 11:36:40 +00:00
}
// initLabelsGlobal must be called after parsing command-line flags.
func initLabelsGlobal ( ) {
2020-03-03 11:08:17 +00:00
labelsGlobal = nil
for _ , s := range * unparsedLabelsGlobal {
2020-12-08 12:53:41 +00:00
if len ( s ) == 0 {
continue
}
2020-02-23 11:35:47 +00:00
n := strings . IndexByte ( s , '=' )
if n < 0 {
2020-05-30 11:36:40 +00:00
logger . Fatalf ( "missing '=' in `-remoteWrite.label`. It must contain label in the form `name=value`; got %q" , s )
2020-02-23 11:35:47 +00:00
}
2020-03-03 11:08:17 +00:00
labelsGlobal = append ( labelsGlobal , prompbmarshal . Label {
2020-02-23 11:35:47 +00:00
Name : s [ : n ] ,
Value : s [ n + 1 : ] ,
} )
}
}
2021-02-22 14:33:55 +00:00
func ( rctx * relabelCtx ) applyRelabeling ( tss [ ] prompbmarshal . TimeSeries , extraLabels [ ] prompbmarshal . Label , pcs * promrelabel . ParsedConfigs ) [ ] prompbmarshal . TimeSeries {
if len ( extraLabels ) == 0 && pcs . Len ( ) == 0 {
2020-02-23 11:35:47 +00:00
// Nothing to change.
2020-02-28 16:57:45 +00:00
return tss
2020-02-23 11:35:47 +00:00
}
tssDst := tss [ : 0 ]
labels := rctx . labels [ : 0 ]
for i := range tss {
ts := & tss [ i ]
labelsLen := len ( labels )
labels = append ( labels , ts . Labels ... )
// extraLabels must be added before applying relabeling according to https://prometheus.io/docs/prometheus/latest/configuration/configuration/#remote_write
for j := range extraLabels {
extraLabel := & extraLabels [ j ]
tmp := promrelabel . GetLabelByName ( labels [ labelsLen : ] , extraLabel . Name )
if tmp != nil {
tmp . Value = extraLabel . Value
} else {
labels = append ( labels , * extraLabel )
}
}
2022-09-26 10:11:37 +00:00
if * usePromCompatibleNaming {
// Replace unsupported Prometheus chars in label names and metric names with underscores.
tmpLabels := labels [ labelsLen : ]
for j := range tmpLabels {
label := & tmpLabels [ j ]
if label . Name == "__name__" {
2022-09-28 06:59:36 +00:00
label . Value = promrelabel . SanitizeName ( label . Value )
2022-09-26 10:11:37 +00:00
} else {
2022-09-28 06:59:36 +00:00
label . Name = promrelabel . SanitizeName ( label . Name )
2022-09-26 10:11:37 +00:00
}
}
}
2022-10-09 11:51:14 +00:00
labels = pcs . Apply ( labels , labelsLen )
2022-10-13 09:04:10 +00:00
labels = promrelabel . FinalizeLabels ( labels [ : labelsLen ] , labels [ labelsLen : ] )
2020-02-23 11:35:47 +00:00
if len ( labels ) == labelsLen {
// Drop the current time series, since relabeling removed all the labels.
continue
}
tssDst = append ( tssDst , prompbmarshal . TimeSeries {
Labels : labels [ labelsLen : ] ,
Samples : ts . Samples ,
} )
}
rctx . labels = labels
2020-02-28 16:57:45 +00:00
return tssDst
2020-02-23 11:35:47 +00:00
}
type relabelCtx struct {
// pool for labels, which are used during the relabeling.
labels [ ] prompbmarshal . Label
}
func ( rctx * relabelCtx ) reset ( ) {
2020-11-07 14:16:56 +00:00
promrelabel . CleanLabels ( rctx . labels )
2020-02-23 11:35:47 +00:00
rctx . labels = rctx . labels [ : 0 ]
}
var relabelCtxPool = & sync . Pool {
New : func ( ) interface { } {
return & relabelCtx { }
} ,
}
2020-03-03 11:08:17 +00:00
func getRelabelCtx ( ) * relabelCtx {
return relabelCtxPool . Get ( ) . ( * relabelCtx )
}
func putRelabelCtx ( rctx * relabelCtx ) {
rctx . labels = rctx . labels [ : 0 ]
relabelCtxPool . Put ( rctx )
}