mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
Merge pull request #7465 from prometheus/merge-release-2.19
Merge release 2.19.2 into master
This commit is contained in:
commit
d2e631041e
|
@ -2,6 +2,10 @@
|
||||||
|
|
||||||
* [ENHANCEMENT] TSDB: WAL compression is enabled by default.
|
* [ENHANCEMENT] TSDB: WAL compression is enabled by default.
|
||||||
|
|
||||||
|
## 2.19.2 / 2020-06-26
|
||||||
|
|
||||||
|
* [BUGFIX] Remote Write: Fix panic when reloading config with modified queue parameters. #7452
|
||||||
|
|
||||||
## 2.19.1 / 2020-06-18
|
## 2.19.1 / 2020-06-18
|
||||||
|
|
||||||
* [BUGFIX] TSDB: Fix m-map file truncation leading to unsequential files. #7414
|
* [BUGFIX] TSDB: Fix m-map file truncation leading to unsequential files. #7414
|
||||||
|
|
|
@ -177,8 +177,12 @@ func newQueueManagerMetrics(r prometheus.Registerer, rn, e string) *queueManager
|
||||||
ConstLabels: constLabels,
|
ConstLabels: constLabels,
|
||||||
})
|
})
|
||||||
|
|
||||||
if r != nil {
|
return m
|
||||||
r.MustRegister(
|
}
|
||||||
|
|
||||||
|
func (m *queueManagerMetrics) register() {
|
||||||
|
if m.reg != nil {
|
||||||
|
m.reg.MustRegister(
|
||||||
m.succeededSamplesTotal,
|
m.succeededSamplesTotal,
|
||||||
m.failedSamplesTotal,
|
m.failedSamplesTotal,
|
||||||
m.retriedSamplesTotal,
|
m.retriedSamplesTotal,
|
||||||
|
@ -195,7 +199,6 @@ func newQueueManagerMetrics(r prometheus.Registerer, rn, e string) *queueManager
|
||||||
m.bytesSent,
|
m.bytesSent,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
return m
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *queueManagerMetrics) unregister() {
|
func (m *queueManagerMetrics) unregister() {
|
||||||
|
@ -358,7 +361,8 @@ outer:
|
||||||
// Start the queue manager sending samples to the remote storage.
|
// Start the queue manager sending samples to the remote storage.
|
||||||
// Does not block.
|
// Does not block.
|
||||||
func (t *QueueManager) Start() {
|
func (t *QueueManager) Start() {
|
||||||
// Initialise some metrics.
|
// Register and initialise some metrics.
|
||||||
|
t.metrics.register()
|
||||||
t.metrics.shardCapacity.Set(float64(t.cfg.Capacity))
|
t.metrics.shardCapacity.Set(float64(t.cfg.Capacity))
|
||||||
t.metrics.maxNumShards.Set(float64(t.cfg.MaxShards))
|
t.metrics.maxNumShards.Set(float64(t.cfg.MaxShards))
|
||||||
t.metrics.minNumShards.Set(float64(t.cfg.MinShards))
|
t.metrics.minNumShards.Set(float64(t.cfg.MinShards))
|
||||||
|
|
|
@ -20,6 +20,7 @@ import (
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"github.com/prometheus/client_golang/prometheus"
|
||||||
common_config "github.com/prometheus/common/config"
|
common_config "github.com/prometheus/common/config"
|
||||||
"github.com/prometheus/common/model"
|
"github.com/prometheus/common/model"
|
||||||
"github.com/prometheus/prometheus/config"
|
"github.com/prometheus/prometheus/config"
|
||||||
|
@ -154,6 +155,48 @@ func TestRestartOnNameChange(t *testing.T) {
|
||||||
testutil.Ok(t, err)
|
testutil.Ok(t, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestUpdateWithRegisterer(t *testing.T) {
|
||||||
|
dir, err := ioutil.TempDir("", "TestRestartWithRegisterer")
|
||||||
|
testutil.Ok(t, err)
|
||||||
|
defer os.RemoveAll(dir)
|
||||||
|
|
||||||
|
s := NewWriteStorage(nil, prometheus.NewRegistry(), dir, time.Millisecond)
|
||||||
|
c1 := &config.RemoteWriteConfig{
|
||||||
|
Name: "named",
|
||||||
|
URL: &common_config.URL{
|
||||||
|
URL: &url.URL{
|
||||||
|
Scheme: "http",
|
||||||
|
Host: "localhost",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
QueueConfig: config.DefaultQueueConfig,
|
||||||
|
}
|
||||||
|
c2 := &config.RemoteWriteConfig{
|
||||||
|
URL: &common_config.URL{
|
||||||
|
URL: &url.URL{
|
||||||
|
Scheme: "http",
|
||||||
|
Host: "localhost",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
QueueConfig: config.DefaultQueueConfig,
|
||||||
|
}
|
||||||
|
conf := &config.Config{
|
||||||
|
GlobalConfig: config.DefaultGlobalConfig,
|
||||||
|
RemoteWriteConfigs: []*config.RemoteWriteConfig{c1, c2},
|
||||||
|
}
|
||||||
|
testutil.Ok(t, s.ApplyConfig(conf))
|
||||||
|
|
||||||
|
c1.QueueConfig.MaxShards = 10
|
||||||
|
c2.QueueConfig.MaxShards = 10
|
||||||
|
testutil.Ok(t, s.ApplyConfig(conf))
|
||||||
|
for _, queue := range s.queues {
|
||||||
|
testutil.Equals(t, 10, queue.cfg.MaxShards)
|
||||||
|
}
|
||||||
|
|
||||||
|
err = s.Close()
|
||||||
|
testutil.Ok(t, err)
|
||||||
|
}
|
||||||
|
|
||||||
func TestWriteStorageLifecycle(t *testing.T) {
|
func TestWriteStorageLifecycle(t *testing.T) {
|
||||||
dir, err := ioutil.TempDir("", "TestWriteStorageLifecycle")
|
dir, err := ioutil.TempDir("", "TestWriteStorageLifecycle")
|
||||||
testutil.Ok(t, err)
|
testutil.Ok(t, err)
|
||||||
|
@ -178,7 +221,7 @@ func TestUpdateExternalLabels(t *testing.T) {
|
||||||
testutil.Ok(t, err)
|
testutil.Ok(t, err)
|
||||||
defer os.RemoveAll(dir)
|
defer os.RemoveAll(dir)
|
||||||
|
|
||||||
s := NewWriteStorage(nil, nil, dir, time.Second)
|
s := NewWriteStorage(nil, prometheus.NewRegistry(), dir, time.Second)
|
||||||
|
|
||||||
externalLabels := labels.FromStrings("external", "true")
|
externalLabels := labels.FromStrings("external", "true")
|
||||||
conf := &config.Config{
|
conf := &config.Config{
|
||||||
|
|
Loading…
Reference in a new issue