2017-02-13 14:11:57 -08:00
|
|
|
// Copyright 2017 The Prometheus Authors
|
2015-06-23 09:04:04 -07:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package remote
|
|
|
|
|
|
|
|
import (
|
2015-09-03 04:44:03 -07:00
|
|
|
"sync"
|
2015-06-23 09:04:04 -07:00
|
|
|
|
2015-08-20 08:18:46 -07:00
|
|
|
"github.com/prometheus/common/model"
|
2015-08-22 00:42:45 -07:00
|
|
|
|
2015-09-03 04:44:03 -07:00
|
|
|
"github.com/prometheus/prometheus/config"
|
2015-06-23 09:04:04 -07:00
|
|
|
)
|
|
|
|
|
2017-02-13 14:11:57 -08:00
|
|
|
// Storage allows queueing samples for remote writes.
|
2015-06-23 09:04:04 -07:00
|
|
|
type Storage struct {
|
2017-02-13 12:43:20 -08:00
|
|
|
mtx sync.RWMutex
|
2017-02-21 12:45:43 -08:00
|
|
|
queues []*QueueManager
|
2015-09-03 04:44:03 -07:00
|
|
|
}
|
|
|
|
|
2017-02-13 14:11:57 -08:00
|
|
|
// ApplyConfig updates the state as the new config requires.
|
2016-07-11 07:24:54 -07:00
|
|
|
func (s *Storage) ApplyConfig(conf *config.Config) error {
|
2015-09-03 04:44:03 -07:00
|
|
|
s.mtx.Lock()
|
|
|
|
defer s.mtx.Unlock()
|
|
|
|
|
2017-02-21 12:45:43 -08:00
|
|
|
newQueues := []*QueueManager{}
|
2017-02-13 14:11:57 -08:00
|
|
|
// TODO: we should only stop & recreate queues which have changes,
|
|
|
|
// as this can be quite disruptive.
|
2017-02-13 12:43:20 -08:00
|
|
|
for i, rwConf := range conf.RemoteWriteConfigs {
|
2017-03-10 03:53:27 -08:00
|
|
|
c, err := NewClient(i, &clientConfig{
|
|
|
|
url: rwConf.URL,
|
|
|
|
tlsConfig: rwConf.TLSConfig,
|
|
|
|
proxyURL: &rwConf.ProxyURL,
|
|
|
|
basicAuth: rwConf.BasicAuth,
|
|
|
|
timeout: rwConf.RemoteTimeout,
|
|
|
|
})
|
2017-02-13 14:11:57 -08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
2015-09-16 07:22:13 -07:00
|
|
|
}
|
2017-02-21 12:45:43 -08:00
|
|
|
newQueues = append(newQueues, NewQueueManager(QueueManagerConfig{
|
2017-02-13 12:43:20 -08:00
|
|
|
Client: c,
|
|
|
|
ExternalLabels: conf.GlobalConfig.ExternalLabels,
|
|
|
|
RelabelConfigs: rwConf.WriteRelabelConfigs,
|
|
|
|
}))
|
2015-06-23 09:04:04 -07:00
|
|
|
}
|
|
|
|
|
2017-02-13 12:43:20 -08:00
|
|
|
for _, q := range s.queues {
|
|
|
|
q.Stop()
|
2015-06-23 09:04:04 -07:00
|
|
|
}
|
2017-02-13 12:43:20 -08:00
|
|
|
|
|
|
|
s.queues = newQueues
|
|
|
|
for _, q := range s.queues {
|
|
|
|
q.Start()
|
2017-02-13 14:11:57 -08:00
|
|
|
}
|
|
|
|
return nil
|
2015-06-23 09:04:04 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Stop the background processing of the storage queues.
|
|
|
|
func (s *Storage) Stop() {
|
2017-02-13 12:43:20 -08:00
|
|
|
for _, q := range s.queues {
|
|
|
|
q.Stop()
|
2015-06-23 09:04:04 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-02 05:01:44 -08:00
|
|
|
// Append implements storage.SampleAppender. Always returns nil.
|
|
|
|
func (s *Storage) Append(smpl *model.Sample) error {
|
2015-09-03 04:44:03 -07:00
|
|
|
s.mtx.RLock()
|
2017-02-13 14:11:57 -08:00
|
|
|
defer s.mtx.RUnlock()
|
|
|
|
|
2017-02-13 12:43:20 -08:00
|
|
|
for _, q := range s.queues {
|
|
|
|
q.Append(smpl)
|
2016-10-01 08:42:43 -07:00
|
|
|
}
|
2016-02-02 05:01:44 -08:00
|
|
|
return nil
|
2015-06-23 09:04:04 -07:00
|
|
|
}
|
|
|
|
|
2016-01-27 10:07:46 -08:00
|
|
|
// NeedsThrottling implements storage.SampleAppender. It will always return
|
|
|
|
// false as a remote storage drops samples on the floor if backlogging instead
|
|
|
|
// of asking for throttling.
|
|
|
|
func (s *Storage) NeedsThrottling() bool {
|
|
|
|
return false
|
|
|
|
}
|