2023-01-05 22:03:58 +00:00
package nomad
import (
"flag"
"fmt"
2023-01-06 05:13:02 +00:00
"net/http"
2023-01-05 22:03:58 +00:00
"os"
"strconv"
"strings"
"time"
"github.com/VictoriaMetrics/VictoriaMetrics/lib/logger"
"github.com/VictoriaMetrics/VictoriaMetrics/lib/promauth"
"github.com/VictoriaMetrics/VictoriaMetrics/lib/promscrape/discoveryutils"
)
var waitTime = flag . Duration ( "promscrape.nomad.waitTime" , 0 , "Wait time used by Nomad service discovery. Default value is used if not set" )
// apiConfig contains config for API server.
type apiConfig struct {
tagSeparator string
nomadWatcher * nomadWatcher
}
func ( ac * apiConfig ) mustStop ( ) {
ac . nomadWatcher . mustStop ( )
}
var configMap = discoveryutils . NewConfigMap ( )
func getAPIConfig ( sdc * SDConfig , baseDir string ) ( * apiConfig , error ) {
v , err := configMap . Get ( sdc , func ( ) ( interface { } , error ) { return newAPIConfig ( sdc , baseDir ) } )
if err != nil {
return nil , err
}
return v . ( * apiConfig ) , nil
}
func newAPIConfig ( sdc * SDConfig , baseDir string ) ( * apiConfig , error ) {
hcc := sdc . HTTPClientConfig
2023-01-06 02:01:11 +00:00
token := getToken ( sdc . Token )
2023-01-05 22:03:58 +00:00
if token != "" {
if hcc . BearerToken != nil {
return nil , fmt . Errorf ( "cannot set both token and bearer_token configs" )
}
hcc . BearerToken = promauth . NewSecret ( token )
}
ac , err := hcc . NewConfig ( baseDir )
if err != nil {
return nil , fmt . Errorf ( "cannot parse auth config: %w" , err )
}
apiServer := sdc . Server
if apiServer == "" {
apiServer = "localhost:4646"
}
if ! strings . Contains ( apiServer , "://" ) {
scheme := sdc . Scheme
if scheme == "" {
scheme = "http"
}
apiServer = scheme + "://" + apiServer
}
proxyAC , err := sdc . ProxyClientConfig . NewConfig ( baseDir )
if err != nil {
return nil , fmt . Errorf ( "cannot parse proxy auth config: %w" , err )
}
client , err := discoveryutils . NewClient ( apiServer , ac , sdc . ProxyURL , proxyAC )
if err != nil {
return nil , fmt . Errorf ( "cannot create HTTP client for %q: %w" , apiServer , err )
}
tagSeparator := ","
if sdc . TagSeparator != nil {
tagSeparator = * sdc . TagSeparator
}
namespace := sdc . Namespace
// default namespace can be detected from env var.
if namespace == "" {
namespace = os . Getenv ( "NOMAD_NAMESPACE" )
}
2023-01-09 08:07:40 +00:00
nw := newNomadWatcher ( client , sdc , namespace )
2023-01-05 22:03:58 +00:00
cfg := & apiConfig {
tagSeparator : tagSeparator ,
nomadWatcher : nw ,
}
return cfg , nil
}
2023-01-06 02:01:11 +00:00
func getToken ( token * promauth . Secret ) string {
2023-01-05 22:03:58 +00:00
if token != nil {
2023-01-06 02:01:11 +00:00
return token . String ( )
2023-01-05 22:03:58 +00:00
}
t := os . Getenv ( "NOMAD_TOKEN" )
// Allow empty token - it should work if ACL is disabled in Nomad.
2023-01-06 02:01:11 +00:00
return t
2023-01-05 22:03:58 +00:00
}
// maxWaitTime is duration for Nomad blocking request.
func maxWaitTime ( ) time . Duration {
d := discoveryutils . BlockingClientReadTimeout
// Nomad adds random delay up to wait/16, so reduce the timeout in order to keep it below BlockingClientReadTimeout.
// See https://developer.hashicorp.com/nomad/api-docs#blocking-queries
d -= d / 16
// The timeout cannot exceed 10 minuntes. See https://developer.hashicorp.com/nomad/api-docs#blocking-queries
if d > 10 * time . Minute {
d = 10 * time . Minute
}
if * waitTime > time . Second && * waitTime < d {
d = * waitTime
}
return d
}
// getBlockingAPIResponse perfoms blocking request to Nomad via client and returns response.
// See https://developer.hashicorp.com/nomad/api-docs#blocking-queries .
func getBlockingAPIResponse ( client * discoveryutils . Client , path string , index int64 ) ( [ ] byte , int64 , error ) {
path += "&index=" + strconv . FormatInt ( index , 10 )
path += "&wait=" + fmt . Sprintf ( "%ds" , int ( maxWaitTime ( ) . Seconds ( ) ) )
2023-01-06 05:13:02 +00:00
getMeta := func ( resp * http . Response ) {
ind := resp . Header . Get ( "X-Nomad-Index" )
2023-01-05 22:03:58 +00:00
if len ( ind ) == 0 {
logger . Errorf ( "cannot find X-Nomad-Index header in response from %q" , path )
return
}
2023-01-06 05:13:02 +00:00
newIndex , err := strconv . ParseInt ( ind , 10 , 64 )
2023-01-05 22:03:58 +00:00
if err != nil {
logger . Errorf ( "cannot parse X-Nomad-Index header value in response from %q: %s" , path , err )
return
}
// Properly handle the returned newIndex according to https://developer.hashicorp.com/nomad/api-docs#blocking-queries.
// Index implementation details are the same for Consul and Nomad: https://developer.hashicorp.com/consul/api-docs/features/blocking#implementation-details
if newIndex < 1 {
index = 1
return
}
if index > newIndex {
index = 0
return
}
index = newIndex
}
data , err := client . GetBlockingAPIResponse ( path , getMeta )
if err != nil {
return nil , index , fmt . Errorf ( "cannot perform blocking Nomad API request at %q: %w" , path , err )
}
return data , index , nil
}