You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
separator and replacement fields are defined as string. Go type system doesn't allow to distinguish unset and empty type default values. And pointer to type must be used instead to make it optional.
The text was updated successfully, but these errors were encountered:
Empty values for `replacement` and `separator` fields have special meaning. And it should optional
pointer to string.
The same logic exists at `vmagent` side and operator must use it as well.
Related issue:
#1214
Signed-off-by: f41gh7 <[email protected]>
At RelabelConfig
operator/api/operator/v1beta1/common_scrapeparams.go
Line 134 in b38ee45
separator
andreplacement
fields are defined asstring
. Go type system doesn't allow to distinguish unset and empty type default values. And pointer to type must be used instead to make it optional.The text was updated successfully, but these errors were encountered: