2013-02-07 02:38:01 -08:00
// Copyright 2013 Prometheus Team
2012-11-26 11:11:34 -08: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.
2012-11-24 03:33:34 -08:00
package main
import (
2013-01-22 10:32:56 -08:00
"flag"
2013-06-25 05:02:27 -07:00
"os"
"os/signal"
2014-04-14 16:02:15 -07:00
"sync"
2013-08-14 03:36:55 -07:00
"syscall"
2013-06-25 05:02:27 -07:00
"time"
2013-08-12 08:18:02 -07:00
"github.com/golang/glog"
2013-06-25 05:02:27 -07:00
"github.com/prometheus/client_golang/extraction"
2013-08-13 07:14:18 -07:00
clientmodel "github.com/prometheus/client_golang/model"
2013-01-27 09:49:45 -08:00
"github.com/prometheus/prometheus/config"
2013-07-30 08:18:07 -07:00
"github.com/prometheus/prometheus/notification"
2013-01-27 09:49:45 -08:00
"github.com/prometheus/prometheus/retrieval"
2014-05-28 10:44:54 -07:00
"github.com/prometheus/prometheus/rules/manager"
2014-04-11 00:27:05 -07:00
"github.com/prometheus/prometheus/storage/metric/tiered"
Add optional sample replication to OpenTSDB.
Prometheus needs long-term storage. Since we don't have enough resources
to build our own timeseries storage from scratch ontop of Riak,
Cassandra or a similar distributed datastore at the moment, we're
planning on using OpenTSDB as long-term storage for Prometheus. It's
data model is roughly compatible with that of Prometheus, with some
caveats.
As a first step, this adds write-only replication from Prometheus to
OpenTSDB, with the following things worth noting:
1)
I tried to keep the integration lightweight, meaning that anything
related to OpenTSDB is isolated to its own package and only main knows
about it (essentially it tees all samples to both the existing storage
and TSDB). It's not touching the existing TieredStorage at all to avoid
more complexity in that area. This might change in the future,
especially if we decide to implement a read path for OpenTSDB through
Prometheus as well.
2)
Backpressure while sending to OpenTSDB is handled by simply dropping
samples on the floor when the in-memory queue of samples destined for
OpenTSDB runs full. Prometheus also only attempts to send samples once,
rather than implementing a complex retry algorithm. Thus, replication to
OpenTSDB is best-effort for now. If needed, this may be extended in the
future.
3)
Samples are sent in batches of limited size to OpenTSDB. The optimal
batch size, timeout parameters, etc. may need to be adjusted in the
future.
4)
OpenTSDB has different rules for legal characters in tag (label) values.
While Prometheus allows any characters in label values, OpenTSDB limits
them to a to z, A to Z, 0 to 9, -, _, . and /. Currently any illegal
characters in Prometheus label values are simply replaced by an
underscore. Especially when integrating OpenTSDB with the read path in
Prometheus, we'll need to reconsider this: either we'll need to
introduce the same limitations for Prometheus labels or escape/encode
illegal characters in OpenTSDB in such a way that they are fully
decodable again when reading through Prometheus, so that corresponding
timeseries in both systems match in their labelsets.
Change-Id: I8394c9c55dbac3946a0fa497f566d5e6e2d600b5
2013-12-09 08:03:49 -08:00
"github.com/prometheus/prometheus/storage/remote"
"github.com/prometheus/prometheus/storage/remote/opentsdb"
2013-02-08 05:49:55 -08:00
"github.com/prometheus/prometheus/web"
2013-05-05 10:32:04 -07:00
"github.com/prometheus/prometheus/web/api"
2012-11-24 03:33:34 -08:00
)
2013-06-25 05:02:27 -07:00
const deletionBatchSize = 100
2013-05-13 01:53:24 -07:00
2013-01-22 10:32:56 -08:00
// Commandline flags.
var (
2013-08-13 04:58:19 -07:00
configFile = flag . String ( "configFile" , "prometheus.conf" , "Prometheus configuration file name." )
metricsStoragePath = flag . String ( "metricsStoragePath" , "/tmp/metrics" , "Base path for metrics storage." )
alertmanagerUrl = flag . String ( "alertmanager.url" , "" , "The URL of the alert manager to send notifications to." )
2013-08-13 04:43:37 -07:00
Add optional sample replication to OpenTSDB.
Prometheus needs long-term storage. Since we don't have enough resources
to build our own timeseries storage from scratch ontop of Riak,
Cassandra or a similar distributed datastore at the moment, we're
planning on using OpenTSDB as long-term storage for Prometheus. It's
data model is roughly compatible with that of Prometheus, with some
caveats.
As a first step, this adds write-only replication from Prometheus to
OpenTSDB, with the following things worth noting:
1)
I tried to keep the integration lightweight, meaning that anything
related to OpenTSDB is isolated to its own package and only main knows
about it (essentially it tees all samples to both the existing storage
and TSDB). It's not touching the existing TieredStorage at all to avoid
more complexity in that area. This might change in the future,
especially if we decide to implement a read path for OpenTSDB through
Prometheus as well.
2)
Backpressure while sending to OpenTSDB is handled by simply dropping
samples on the floor when the in-memory queue of samples destined for
OpenTSDB runs full. Prometheus also only attempts to send samples once,
rather than implementing a complex retry algorithm. Thus, replication to
OpenTSDB is best-effort for now. If needed, this may be extended in the
future.
3)
Samples are sent in batches of limited size to OpenTSDB. The optimal
batch size, timeout parameters, etc. may need to be adjusted in the
future.
4)
OpenTSDB has different rules for legal characters in tag (label) values.
While Prometheus allows any characters in label values, OpenTSDB limits
them to a to z, A to Z, 0 to 9, -, _, . and /. Currently any illegal
characters in Prometheus label values are simply replaced by an
underscore. Especially when integrating OpenTSDB with the read path in
Prometheus, we'll need to reconsider this: either we'll need to
introduce the same limitations for Prometheus labels or escape/encode
illegal characters in OpenTSDB in such a way that they are fully
decodable again when reading through Prometheus, so that corresponding
timeseries in both systems match in their labelsets.
Change-Id: I8394c9c55dbac3946a0fa497f566d5e6e2d600b5
2013-12-09 08:03:49 -08:00
remoteTSDBUrl = flag . String ( "storage.remote.url" , "" , "The URL of the OpenTSDB instance to send samples to." )
remoteTSDBTimeout = flag . Duration ( "storage.remote.timeout" , 30 * time . Second , "The timeout to use when sending samples to OpenTSDB." )
2013-08-13 04:58:19 -07:00
samplesQueueCapacity = flag . Int ( "storage.queue.samplesCapacity" , 4096 , "The size of the unwritten samples queue." )
diskAppendQueueCapacity = flag . Int ( "storage.queue.diskAppendCapacity" , 1000000 , "The size of the queue for items that are pending writing to disk." )
memoryAppendQueueCapacity = flag . Int ( "storage.queue.memoryAppendCapacity" , 10000 , "The size of the queue for items that are pending writing to memory." )
2013-05-07 08:14:04 -07:00
2014-02-26 14:46:49 -08:00
compactInterval = flag . Duration ( "compact.interval" , 3 * time . Hour , "The amount of time between compactions." )
compactGroupSize = flag . Int ( "compact.groupSize" , 500 , "The minimum group size for compacted samples." )
2014-02-19 07:03:30 -08:00
compactAgeInclusiveness = flag . Duration ( "compact.ageInclusiveness" , 5 * time . Minute , "The age beyond which samples should be compacted." )
2013-05-13 01:53:24 -07:00
2013-08-23 06:59:51 -07:00
deleteInterval = flag . Duration ( "delete.interval" , 11 * time . Hour , "The amount of time between deletion of old values." )
2013-05-13 01:53:24 -07:00
2013-08-23 06:59:51 -07:00
deleteAge = flag . Duration ( "delete.ageMaximum" , 15 * 24 * time . Hour , "The relative maximum age for values before they are deleted." )
2013-05-14 08:50:52 -07:00
arenaFlushInterval = flag . Duration ( "arena.flushInterval" , 15 * time . Minute , "The period at which the in-memory arena is flushed to disk." )
arenaTTL = flag . Duration ( "arena.ttl" , 10 * time . Minute , "The relative age of values to purge to disk from memory." )
2013-07-30 08:18:07 -07:00
notificationQueueCapacity = flag . Int ( "alertmanager.notificationQueueCapacity" , 100 , "The size of the queue for pending alert manager notifications." )
2013-08-13 04:52:24 -07:00
2013-08-13 04:58:19 -07:00
concurrentRetrievalAllowance = flag . Int ( "concurrentRetrievalAllowance" , 15 , "The number of concurrent metrics retrieval requests allowed." )
2013-08-13 04:52:24 -07:00
printVersion = flag . Bool ( "version" , false , "print version information" )
2014-04-14 16:02:15 -07:00
shutdownTimeout = flag . Duration ( "shutdownGracePeriod" , 0 * time . Second , "The amount of time Prometheus gives background services to finish running when shutdown is requested." )
2013-01-22 10:32:56 -08:00
)
2013-04-29 02:17:56 -07:00
type prometheus struct {
2014-02-19 07:03:30 -08:00
compactionTimer * time . Ticker
2014-02-26 14:46:49 -08:00
deletionTimer * time . Ticker
2013-08-05 08:31:49 -07:00
2014-04-14 13:51:58 -07:00
curationSema chan struct { }
2014-04-14 14:34:17 -07:00
stopBackgroundOperations chan struct { }
2013-05-07 08:14:04 -07:00
2013-06-25 05:02:27 -07:00
unwrittenSamples chan * extraction . Result
2013-05-07 08:14:04 -07:00
2014-05-28 10:44:54 -07:00
ruleManager manager . RuleManager
Add optional sample replication to OpenTSDB.
Prometheus needs long-term storage. Since we don't have enough resources
to build our own timeseries storage from scratch ontop of Riak,
Cassandra or a similar distributed datastore at the moment, we're
planning on using OpenTSDB as long-term storage for Prometheus. It's
data model is roughly compatible with that of Prometheus, with some
caveats.
As a first step, this adds write-only replication from Prometheus to
OpenTSDB, with the following things worth noting:
1)
I tried to keep the integration lightweight, meaning that anything
related to OpenTSDB is isolated to its own package and only main knows
about it (essentially it tees all samples to both the existing storage
and TSDB). It's not touching the existing TieredStorage at all to avoid
more complexity in that area. This might change in the future,
especially if we decide to implement a read path for OpenTSDB through
Prometheus as well.
2)
Backpressure while sending to OpenTSDB is handled by simply dropping
samples on the floor when the in-memory queue of samples destined for
OpenTSDB runs full. Prometheus also only attempts to send samples once,
rather than implementing a complex retry algorithm. Thus, replication to
OpenTSDB is best-effort for now. If needed, this may be extended in the
future.
3)
Samples are sent in batches of limited size to OpenTSDB. The optimal
batch size, timeout parameters, etc. may need to be adjusted in the
future.
4)
OpenTSDB has different rules for legal characters in tag (label) values.
While Prometheus allows any characters in label values, OpenTSDB limits
them to a to z, A to Z, 0 to 9, -, _, . and /. Currently any illegal
characters in Prometheus label values are simply replaced by an
underscore. Especially when integrating OpenTSDB with the read path in
Prometheus, we'll need to reconsider this: either we'll need to
introduce the same limitations for Prometheus labels or escape/encode
illegal characters in OpenTSDB in such a way that they are fully
decodable again when reading through Prometheus, so that corresponding
timeseries in both systems match in their labelsets.
Change-Id: I8394c9c55dbac3946a0fa497f566d5e6e2d600b5
2013-12-09 08:03:49 -08:00
targetManager retrieval . TargetManager
notifications chan notification . NotificationReqs
2014-04-11 00:27:05 -07:00
storage * tiered . TieredStorage
Add optional sample replication to OpenTSDB.
Prometheus needs long-term storage. Since we don't have enough resources
to build our own timeseries storage from scratch ontop of Riak,
Cassandra or a similar distributed datastore at the moment, we're
planning on using OpenTSDB as long-term storage for Prometheus. It's
data model is roughly compatible with that of Prometheus, with some
caveats.
As a first step, this adds write-only replication from Prometheus to
OpenTSDB, with the following things worth noting:
1)
I tried to keep the integration lightweight, meaning that anything
related to OpenTSDB is isolated to its own package and only main knows
about it (essentially it tees all samples to both the existing storage
and TSDB). It's not touching the existing TieredStorage at all to avoid
more complexity in that area. This might change in the future,
especially if we decide to implement a read path for OpenTSDB through
Prometheus as well.
2)
Backpressure while sending to OpenTSDB is handled by simply dropping
samples on the floor when the in-memory queue of samples destined for
OpenTSDB runs full. Prometheus also only attempts to send samples once,
rather than implementing a complex retry algorithm. Thus, replication to
OpenTSDB is best-effort for now. If needed, this may be extended in the
future.
3)
Samples are sent in batches of limited size to OpenTSDB. The optimal
batch size, timeout parameters, etc. may need to be adjusted in the
future.
4)
OpenTSDB has different rules for legal characters in tag (label) values.
While Prometheus allows any characters in label values, OpenTSDB limits
them to a to z, A to Z, 0 to 9, -, _, . and /. Currently any illegal
characters in Prometheus label values are simply replaced by an
underscore. Especially when integrating OpenTSDB with the read path in
Prometheus, we'll need to reconsider this: either we'll need to
introduce the same limitations for Prometheus labels or escape/encode
illegal characters in OpenTSDB in such a way that they are fully
decodable again when reading through Prometheus, so that corresponding
timeseries in both systems match in their labelsets.
Change-Id: I8394c9c55dbac3946a0fa497f566d5e6e2d600b5
2013-12-09 08:03:49 -08:00
remoteTSDBQueue * remote . TSDBQueueManager
2013-08-13 08:19:13 -07:00
2014-04-11 00:27:05 -07:00
curationState tiered . CurationStateUpdater
2014-04-14 16:02:15 -07:00
closeOnce sync . Once
2013-04-29 02:17:56 -07:00
}
2013-05-07 08:14:04 -07:00
func ( p * prometheus ) interruptHandler ( ) {
2013-04-29 02:17:56 -07:00
notifier := make ( chan os . Signal )
2013-08-14 03:36:55 -07:00
signal . Notify ( notifier , os . Interrupt , syscall . SIGTERM )
2013-04-29 02:17:56 -07:00
<- notifier
2013-08-14 03:36:55 -07:00
glog . Warning ( "Received SIGINT/SIGTERM; Exiting gracefully..." )
2014-04-14 16:02:15 -07:00
p . Close ( )
2013-04-29 02:17:56 -07:00
os . Exit ( 0 )
}
2013-05-07 08:14:04 -07:00
func ( p * prometheus ) compact ( olderThan time . Duration , groupSize int ) error {
2013-08-29 06:15:22 -07:00
select {
2014-04-14 13:51:58 -07:00
case s , ok := <- p . curationSema :
if ! ok {
glog . Warning ( "Prometheus is shutting down; no more curation runs are allowed." )
return nil
}
defer func ( ) {
p . curationSema <- s
} ( )
2013-08-29 06:15:22 -07:00
default :
2013-09-04 09:38:29 -07:00
glog . Warningf ( "Deferred compaction for %s and %s due to existing operation." , olderThan , groupSize )
return nil
2013-08-29 06:15:22 -07:00
}
2014-04-11 00:27:05 -07:00
processor := tiered . NewCompactionProcessor ( & tiered . CompactionProcessorOptions {
2013-05-07 08:14:04 -07:00
MaximumMutationPoolBatch : groupSize * 3 ,
MinimumGroupSize : groupSize ,
2013-08-29 06:15:22 -07:00
} )
defer processor . Close ( )
2013-05-07 08:14:04 -07:00
2014-04-11 00:27:05 -07:00
curator := tiered . NewCurator ( & tiered . CuratorOptions {
2013-05-07 08:14:04 -07:00
Stop : p . stopBackgroundOperations ,
2013-08-26 10:12:43 -07:00
ViewQueue : p . storage . ViewQueue ,
2013-08-29 06:15:22 -07:00
} )
defer curator . Close ( )
2013-05-07 08:14:04 -07:00
Use custom timestamp type for sample timestamps and related code.
So far we've been using Go's native time.Time for anything related to sample
timestamps. Since the range of time.Time is much bigger than what we need, this
has created two problems:
- there could be time.Time values which were out of the range/precision of the
time type that we persist to disk, therefore causing incorrectly ordered keys.
One bug caused by this was:
https://github.com/prometheus/prometheus/issues/367
It would be good to use a timestamp type that's more closely aligned with
what the underlying storage supports.
- sizeof(time.Time) is 192, while Prometheus should be ok with a single 64-bit
Unix timestamp (possibly even a 32-bit one). Since we store samples in large
numbers, this seriously affects memory usage. Furthermore, copying/working
with the data will be faster if it's smaller.
*MEMORY USAGE RESULTS*
Initial memory usage comparisons for a running Prometheus with 1 timeseries and
100,000 samples show roughly a 13% decrease in total (VIRT) memory usage. In my
tests, this advantage for some reason decreased a bit the more samples the
timeseries had (to 5-7% for millions of samples). This I can't fully explain,
but perhaps garbage collection issues were involved.
*WHEN TO USE THE NEW TIMESTAMP TYPE*
The new clientmodel.Timestamp type should be used whenever time
calculations are either directly or indirectly related to sample
timestamps.
For example:
- the timestamp of a sample itself
- all kinds of watermarks
- anything that may become or is compared to a sample timestamp (like the timestamp
passed into Target.Scrape()).
When to still use time.Time:
- for measuring durations/times not related to sample timestamps, like duration
telemetry exporting, timers that indicate how frequently to execute some
action, etc.
*NOTE ON OPERATOR OPTIMIZATION TESTS*
We don't use operator optimization code anymore, but it still lives in
the code as dead code. It still has tests, but I couldn't get all of them to
pass with the new timestamp format. I commented out the failing cases for now,
but we should probably remove the dead code soon. I just didn't want to do that
in the same change as this.
Change-Id: I821787414b0debe85c9fffaeb57abd453727af0f
2013-10-28 06:35:02 -07:00
return curator . Run ( olderThan , clientmodel . Now ( ) , processor , p . storage . DiskStorage . CurationRemarks , p . storage . DiskStorage . MetricSamples , p . storage . DiskStorage . MetricHighWatermarks , p . curationState )
2013-05-07 08:14:04 -07:00
}
2013-05-13 01:53:24 -07:00
func ( p * prometheus ) delete ( olderThan time . Duration , batchSize int ) error {
2013-08-29 06:15:22 -07:00
select {
2014-04-14 13:51:58 -07:00
case s , ok := <- p . curationSema :
if ! ok {
glog . Warning ( "Prometheus is shutting down; no more curation runs are allowed." )
return nil
}
defer func ( ) {
p . curationSema <- s
} ( )
2013-08-29 06:15:22 -07:00
default :
2013-09-04 09:38:29 -07:00
glog . Warningf ( "Deferred deletion for %s due to existing operation." , olderThan )
return nil
2013-08-29 06:15:22 -07:00
}
2013-05-13 01:53:24 -07:00
2014-04-11 00:27:05 -07:00
processor := tiered . NewDeletionProcessor ( & tiered . DeletionProcessorOptions {
2013-05-13 01:53:24 -07:00
MaximumMutationPoolBatch : batchSize ,
2013-08-29 06:15:22 -07:00
} )
defer processor . Close ( )
2013-05-13 01:53:24 -07:00
2014-04-11 00:27:05 -07:00
curator := tiered . NewCurator ( & tiered . CuratorOptions {
2013-05-13 01:53:24 -07:00
Stop : p . stopBackgroundOperations ,
2013-08-26 10:12:43 -07:00
ViewQueue : p . storage . ViewQueue ,
2013-08-29 06:15:22 -07:00
} )
defer curator . Close ( )
2013-05-13 01:53:24 -07:00
Use custom timestamp type for sample timestamps and related code.
So far we've been using Go's native time.Time for anything related to sample
timestamps. Since the range of time.Time is much bigger than what we need, this
has created two problems:
- there could be time.Time values which were out of the range/precision of the
time type that we persist to disk, therefore causing incorrectly ordered keys.
One bug caused by this was:
https://github.com/prometheus/prometheus/issues/367
It would be good to use a timestamp type that's more closely aligned with
what the underlying storage supports.
- sizeof(time.Time) is 192, while Prometheus should be ok with a single 64-bit
Unix timestamp (possibly even a 32-bit one). Since we store samples in large
numbers, this seriously affects memory usage. Furthermore, copying/working
with the data will be faster if it's smaller.
*MEMORY USAGE RESULTS*
Initial memory usage comparisons for a running Prometheus with 1 timeseries and
100,000 samples show roughly a 13% decrease in total (VIRT) memory usage. In my
tests, this advantage for some reason decreased a bit the more samples the
timeseries had (to 5-7% for millions of samples). This I can't fully explain,
but perhaps garbage collection issues were involved.
*WHEN TO USE THE NEW TIMESTAMP TYPE*
The new clientmodel.Timestamp type should be used whenever time
calculations are either directly or indirectly related to sample
timestamps.
For example:
- the timestamp of a sample itself
- all kinds of watermarks
- anything that may become or is compared to a sample timestamp (like the timestamp
passed into Target.Scrape()).
When to still use time.Time:
- for measuring durations/times not related to sample timestamps, like duration
telemetry exporting, timers that indicate how frequently to execute some
action, etc.
*NOTE ON OPERATOR OPTIMIZATION TESTS*
We don't use operator optimization code anymore, but it still lives in
the code as dead code. It still has tests, but I couldn't get all of them to
pass with the new timestamp format. I commented out the failing cases for now,
but we should probably remove the dead code soon. I just didn't want to do that
in the same change as this.
Change-Id: I821787414b0debe85c9fffaeb57abd453727af0f
2013-10-28 06:35:02 -07:00
return curator . Run ( olderThan , clientmodel . Now ( ) , processor , p . storage . DiskStorage . CurationRemarks , p . storage . DiskStorage . MetricSamples , p . storage . DiskStorage . MetricHighWatermarks , p . curationState )
2013-05-13 01:53:24 -07:00
}
2014-04-14 16:02:15 -07:00
func ( p * prometheus ) Close ( ) {
p . closeOnce . Do ( p . close )
}
2013-05-07 08:14:04 -07:00
func ( p * prometheus ) close ( ) {
2014-04-14 16:02:15 -07:00
// The "Done" remarks are a misnomer for some subsystems due to lack of
// blocking and synchronization.
glog . Info ( "Shutdown has been requested; subsytems are closing:" )
p . targetManager . Stop ( )
glog . Info ( "Remote Target Manager: Done" )
p . ruleManager . Stop ( )
glog . Info ( "Rule Executor: Done" )
// Stop any currently active curation (deletion or compaction).
close ( p . stopBackgroundOperations )
glog . Info ( "Current Curation Workers: Requested" )
2014-04-14 14:34:17 -07:00
// Disallow further curation work.
2014-04-14 13:51:58 -07:00
close ( p . curationSema )
2013-08-29 06:15:22 -07:00
2014-04-14 14:34:17 -07:00
// Stop curation timers.
2014-02-19 07:03:30 -08:00
if p . compactionTimer != nil {
p . compactionTimer . Stop ( )
2013-05-07 08:14:04 -07:00
}
2013-05-13 01:53:24 -07:00
if p . deletionTimer != nil {
p . deletionTimer . Stop ( )
}
2014-04-14 16:02:15 -07:00
glog . Info ( "Future Curation Workers: Done" )
2013-05-07 08:14:04 -07:00
2014-04-14 16:02:15 -07:00
glog . Infof ( "Waiting %s for background systems to exit and flush before finalizing (DO NOT INTERRUPT THE PROCESS) ..." , * shutdownTimeout )
// Wart: We should have a concrete form of synchronization for this, not a
// hokey sleep statement.
time . Sleep ( * shutdownTimeout )
2013-05-07 08:14:04 -07:00
2013-12-11 06:30:27 -08:00
close ( p . unwrittenSamples )
2013-04-29 02:17:56 -07:00
p . storage . Close ( )
2014-04-14 16:02:15 -07:00
glog . Info ( "Local Storage: Done" )
2013-07-30 08:18:07 -07:00
Add optional sample replication to OpenTSDB.
Prometheus needs long-term storage. Since we don't have enough resources
to build our own timeseries storage from scratch ontop of Riak,
Cassandra or a similar distributed datastore at the moment, we're
planning on using OpenTSDB as long-term storage for Prometheus. It's
data model is roughly compatible with that of Prometheus, with some
caveats.
As a first step, this adds write-only replication from Prometheus to
OpenTSDB, with the following things worth noting:
1)
I tried to keep the integration lightweight, meaning that anything
related to OpenTSDB is isolated to its own package and only main knows
about it (essentially it tees all samples to both the existing storage
and TSDB). It's not touching the existing TieredStorage at all to avoid
more complexity in that area. This might change in the future,
especially if we decide to implement a read path for OpenTSDB through
Prometheus as well.
2)
Backpressure while sending to OpenTSDB is handled by simply dropping
samples on the floor when the in-memory queue of samples destined for
OpenTSDB runs full. Prometheus also only attempts to send samples once,
rather than implementing a complex retry algorithm. Thus, replication to
OpenTSDB is best-effort for now. If needed, this may be extended in the
future.
3)
Samples are sent in batches of limited size to OpenTSDB. The optimal
batch size, timeout parameters, etc. may need to be adjusted in the
future.
4)
OpenTSDB has different rules for legal characters in tag (label) values.
While Prometheus allows any characters in label values, OpenTSDB limits
them to a to z, A to Z, 0 to 9, -, _, . and /. Currently any illegal
characters in Prometheus label values are simply replaced by an
underscore. Especially when integrating OpenTSDB with the read path in
Prometheus, we'll need to reconsider this: either we'll need to
introduce the same limitations for Prometheus labels or escape/encode
illegal characters in OpenTSDB in such a way that they are fully
decodable again when reading through Prometheus, so that corresponding
timeseries in both systems match in their labelsets.
Change-Id: I8394c9c55dbac3946a0fa497f566d5e6e2d600b5
2013-12-09 08:03:49 -08:00
if p . remoteTSDBQueue != nil {
p . remoteTSDBQueue . Close ( )
2014-04-14 16:02:15 -07:00
glog . Info ( "Remote Storage: Done" )
Add optional sample replication to OpenTSDB.
Prometheus needs long-term storage. Since we don't have enough resources
to build our own timeseries storage from scratch ontop of Riak,
Cassandra or a similar distributed datastore at the moment, we're
planning on using OpenTSDB as long-term storage for Prometheus. It's
data model is roughly compatible with that of Prometheus, with some
caveats.
As a first step, this adds write-only replication from Prometheus to
OpenTSDB, with the following things worth noting:
1)
I tried to keep the integration lightweight, meaning that anything
related to OpenTSDB is isolated to its own package and only main knows
about it (essentially it tees all samples to both the existing storage
and TSDB). It's not touching the existing TieredStorage at all to avoid
more complexity in that area. This might change in the future,
especially if we decide to implement a read path for OpenTSDB through
Prometheus as well.
2)
Backpressure while sending to OpenTSDB is handled by simply dropping
samples on the floor when the in-memory queue of samples destined for
OpenTSDB runs full. Prometheus also only attempts to send samples once,
rather than implementing a complex retry algorithm. Thus, replication to
OpenTSDB is best-effort for now. If needed, this may be extended in the
future.
3)
Samples are sent in batches of limited size to OpenTSDB. The optimal
batch size, timeout parameters, etc. may need to be adjusted in the
future.
4)
OpenTSDB has different rules for legal characters in tag (label) values.
While Prometheus allows any characters in label values, OpenTSDB limits
them to a to z, A to Z, 0 to 9, -, _, . and /. Currently any illegal
characters in Prometheus label values are simply replaced by an
underscore. Especially when integrating OpenTSDB with the read path in
Prometheus, we'll need to reconsider this: either we'll need to
introduce the same limitations for Prometheus labels or escape/encode
illegal characters in OpenTSDB in such a way that they are fully
decodable again when reading through Prometheus, so that corresponding
timeseries in both systems match in their labelsets.
Change-Id: I8394c9c55dbac3946a0fa497f566d5e6e2d600b5
2013-12-09 08:03:49 -08:00
}
2013-07-30 08:18:07 -07:00
close ( p . notifications )
2014-04-14 16:02:15 -07:00
glog . Info ( "Sundry Queues: Done" )
glog . Info ( "See you next time!" )
2013-04-29 02:17:56 -07:00
}
2012-11-24 03:33:34 -08:00
func main ( ) {
2013-04-29 02:17:56 -07:00
// TODO(all): Future additions to main should be, where applicable, glumped
// into the prometheus struct above---at least where the scoping of the entire
// server is concerned.
2013-01-22 10:32:56 -08:00
flag . Parse ( )
2013-04-25 02:47:48 -07:00
2013-04-25 04:14:50 -07:00
versionInfoTmpl . Execute ( os . Stdout , BuildInfo )
2013-04-25 02:47:48 -07:00
if * printVersion {
os . Exit ( 0 )
}
2013-01-22 10:32:56 -08:00
conf , err := config . LoadFromFile ( * configFile )
2013-01-07 14:24:26 -08:00
if err != nil {
2013-08-12 08:18:02 -07:00
glog . Fatalf ( "Error loading configuration from %s: %v" , * configFile , err )
2013-01-07 14:24:26 -08:00
}
2014-04-11 00:27:05 -07:00
ts , err := tiered . NewTieredStorage ( uint ( * diskAppendQueueCapacity ) , 100 , * arenaFlushInterval , * arenaTTL , * metricsStoragePath )
2013-03-27 03:25:05 -07:00
if err != nil {
2013-08-12 09:22:48 -07:00
glog . Fatal ( "Error opening storage: " , err )
2013-05-02 09:27:12 -07:00
}
2013-04-29 02:17:56 -07:00
Add optional sample replication to OpenTSDB.
Prometheus needs long-term storage. Since we don't have enough resources
to build our own timeseries storage from scratch ontop of Riak,
Cassandra or a similar distributed datastore at the moment, we're
planning on using OpenTSDB as long-term storage for Prometheus. It's
data model is roughly compatible with that of Prometheus, with some
caveats.
As a first step, this adds write-only replication from Prometheus to
OpenTSDB, with the following things worth noting:
1)
I tried to keep the integration lightweight, meaning that anything
related to OpenTSDB is isolated to its own package and only main knows
about it (essentially it tees all samples to both the existing storage
and TSDB). It's not touching the existing TieredStorage at all to avoid
more complexity in that area. This might change in the future,
especially if we decide to implement a read path for OpenTSDB through
Prometheus as well.
2)
Backpressure while sending to OpenTSDB is handled by simply dropping
samples on the floor when the in-memory queue of samples destined for
OpenTSDB runs full. Prometheus also only attempts to send samples once,
rather than implementing a complex retry algorithm. Thus, replication to
OpenTSDB is best-effort for now. If needed, this may be extended in the
future.
3)
Samples are sent in batches of limited size to OpenTSDB. The optimal
batch size, timeout parameters, etc. may need to be adjusted in the
future.
4)
OpenTSDB has different rules for legal characters in tag (label) values.
While Prometheus allows any characters in label values, OpenTSDB limits
them to a to z, A to Z, 0 to 9, -, _, . and /. Currently any illegal
characters in Prometheus label values are simply replaced by an
underscore. Especially when integrating OpenTSDB with the read path in
Prometheus, we'll need to reconsider this: either we'll need to
introduce the same limitations for Prometheus labels or escape/encode
illegal characters in OpenTSDB in such a way that they are fully
decodable again when reading through Prometheus, so that corresponding
timeseries in both systems match in their labelsets.
Change-Id: I8394c9c55dbac3946a0fa497f566d5e6e2d600b5
2013-12-09 08:03:49 -08:00
var remoteTSDBQueue * remote . TSDBQueueManager = nil
if * remoteTSDBUrl == "" {
glog . Warningf ( "No TSDB URL provided; not sending any samples to long-term storage" )
} else {
openTSDB := opentsdb . NewClient ( * remoteTSDBUrl , * remoteTSDBTimeout )
remoteTSDBQueue = remote . NewTSDBQueueManager ( openTSDB , 512 )
go remoteTSDBQueue . Run ( )
}
2013-06-25 05:02:27 -07:00
unwrittenSamples := make ( chan * extraction . Result , * samplesQueueCapacity )
2013-08-13 07:14:18 -07:00
ingester := & retrieval . MergeLabelsIngester {
Labels : conf . GlobalLabels ( ) ,
CollisionPrefix : clientmodel . ExporterLabelPrefix ,
Ingester : retrieval . ChannelIngester ( unwrittenSamples ) ,
}
2014-02-19 07:03:30 -08:00
compactionTimer := time . NewTicker ( * compactInterval )
2013-05-13 01:53:24 -07:00
deletionTimer := time . NewTicker ( * deleteInterval )
2013-05-05 10:32:04 -07:00
// Queue depth will need to be exposed
2013-08-13 07:14:18 -07:00
targetManager := retrieval . NewTargetManager ( ingester , * concurrentRetrievalAllowance )
2013-05-05 10:32:04 -07:00
targetManager . AddTargetsFromConfig ( conf )
2013-08-09 10:32:55 -07:00
notifications := make ( chan notification . NotificationReqs , * notificationQueueCapacity )
2013-07-30 08:18:07 -07:00
2013-06-11 02:00:55 -07:00
// Queue depth will need to be exposed
2014-05-28 10:44:54 -07:00
ruleManager := manager . NewRuleManager ( & manager . RuleManagerOptions {
2013-08-20 06:42:06 -07:00
Results : unwrittenSamples ,
Notifications : notifications ,
EvaluationInterval : conf . EvaluationInterval ( ) ,
Storage : ts ,
PrometheusUrl : web . MustBuildServerUrl ( ) ,
} )
2013-08-12 08:18:02 -07:00
if err := ruleManager . AddRulesFromConfig ( conf ) ; err != nil {
2013-08-12 09:22:48 -07:00
glog . Fatal ( "Error loading rule files: " , err )
2013-06-11 02:00:55 -07:00
}
go ruleManager . Run ( )
2013-08-20 06:42:06 -07:00
notificationHandler := notification . NewNotificationHandler ( * alertmanagerUrl , notifications )
2013-07-30 08:18:07 -07:00
go notificationHandler . Run ( )
2013-05-14 02:21:27 -07:00
flags := map [ string ] string { }
flag . VisitAll ( func ( f * flag . Flag ) {
flags [ f . Name ] = f . Value . String ( )
} )
2013-08-13 08:19:13 -07:00
prometheusStatus := & web . PrometheusStatusHandler {
BuildInfo : BuildInfo ,
Config : conf . String ( ) ,
RuleManager : ruleManager ,
TargetPools : targetManager . Pools ( ) ,
Flags : flags ,
Birth : time . Now ( ) ,
2013-05-05 10:32:04 -07:00
}
2013-06-13 07:10:05 -07:00
alertsHandler := & web . AlertsHandler {
RuleManager : ruleManager ,
}
2014-05-28 10:44:54 -07:00
consolesHandler := & web . ConsolesHandler {
Storage : ts ,
}
2013-05-14 02:21:27 -07:00
databasesHandler := & web . DatabasesHandler {
2013-08-05 09:34:19 -07:00
Provider : ts . DiskStorage ,
RefreshInterval : 5 * time . Minute ,
2013-05-14 02:21:27 -07:00
}
2013-05-05 10:32:04 -07:00
metricsService := & api . MetricsService {
Config : & conf ,
TargetManager : targetManager ,
Storage : ts ,
}
2013-06-25 05:02:27 -07:00
prometheus := & prometheus {
2014-02-19 07:03:30 -08:00
compactionTimer : compactionTimer ,
2013-05-13 01:53:24 -07:00
deletionTimer : deletionTimer ,
2013-08-13 08:19:13 -07:00
curationState : prometheusStatus ,
2014-04-14 13:51:58 -07:00
curationSema : make ( chan struct { } , 1 ) ,
2013-05-14 02:21:27 -07:00
2013-06-25 05:02:27 -07:00
unwrittenSamples : unwrittenSamples ,
2013-05-13 01:53:24 -07:00
2014-04-14 14:34:17 -07:00
stopBackgroundOperations : make ( chan struct { } ) ,
2013-05-13 01:53:24 -07:00
Add optional sample replication to OpenTSDB.
Prometheus needs long-term storage. Since we don't have enough resources
to build our own timeseries storage from scratch ontop of Riak,
Cassandra or a similar distributed datastore at the moment, we're
planning on using OpenTSDB as long-term storage for Prometheus. It's
data model is roughly compatible with that of Prometheus, with some
caveats.
As a first step, this adds write-only replication from Prometheus to
OpenTSDB, with the following things worth noting:
1)
I tried to keep the integration lightweight, meaning that anything
related to OpenTSDB is isolated to its own package and only main knows
about it (essentially it tees all samples to both the existing storage
and TSDB). It's not touching the existing TieredStorage at all to avoid
more complexity in that area. This might change in the future,
especially if we decide to implement a read path for OpenTSDB through
Prometheus as well.
2)
Backpressure while sending to OpenTSDB is handled by simply dropping
samples on the floor when the in-memory queue of samples destined for
OpenTSDB runs full. Prometheus also only attempts to send samples once,
rather than implementing a complex retry algorithm. Thus, replication to
OpenTSDB is best-effort for now. If needed, this may be extended in the
future.
3)
Samples are sent in batches of limited size to OpenTSDB. The optimal
batch size, timeout parameters, etc. may need to be adjusted in the
future.
4)
OpenTSDB has different rules for legal characters in tag (label) values.
While Prometheus allows any characters in label values, OpenTSDB limits
them to a to z, A to Z, 0 to 9, -, _, . and /. Currently any illegal
characters in Prometheus label values are simply replaced by an
underscore. Especially when integrating OpenTSDB with the read path in
Prometheus, we'll need to reconsider this: either we'll need to
introduce the same limitations for Prometheus labels or escape/encode
illegal characters in OpenTSDB in such a way that they are fully
decodable again when reading through Prometheus, so that corresponding
timeseries in both systems match in their labelsets.
Change-Id: I8394c9c55dbac3946a0fa497f566d5e6e2d600b5
2013-12-09 08:03:49 -08:00
ruleManager : ruleManager ,
targetManager : targetManager ,
notifications : notifications ,
storage : ts ,
remoteTSDBQueue : remoteTSDBQueue ,
2013-04-29 02:17:56 -07:00
}
2014-04-14 16:02:15 -07:00
defer prometheus . Close ( )
webService := & web . WebService {
StatusHandler : prometheusStatus ,
MetricsHandler : metricsService ,
DatabasesHandler : databasesHandler ,
2014-05-28 10:44:54 -07:00
ConsolesHandler : consolesHandler ,
2014-04-14 16:02:15 -07:00
AlertsHandler : alertsHandler ,
QuitDelegate : prometheus . Close ,
}
2013-04-29 02:17:56 -07:00
2014-04-14 13:51:58 -07:00
prometheus . curationSema <- struct { } { }
2013-06-06 01:42:21 -07:00
storageStarted := make ( chan bool )
go ts . Serve ( storageStarted )
<- storageStarted
2013-04-29 02:17:56 -07:00
go prometheus . interruptHandler ( )
2012-12-11 11:46:16 -08:00
2013-05-07 08:14:04 -07:00
go func ( ) {
2014-02-19 07:03:30 -08:00
for _ = range prometheus . compactionTimer . C {
glog . Info ( "Starting compaction..." )
err := prometheus . compact ( * compactAgeInclusiveness , * compactGroupSize )
2013-05-07 08:14:04 -07:00
if err != nil {
2013-08-12 09:22:48 -07:00
glog . Error ( "could not compact: " , err )
2013-05-07 08:14:04 -07:00
}
2013-08-12 08:18:02 -07:00
glog . Info ( "Done" )
2013-05-07 08:14:04 -07:00
}
} ( )
2013-05-13 01:53:24 -07:00
go func ( ) {
for _ = range prometheus . deletionTimer . C {
2013-08-12 08:18:02 -07:00
glog . Info ( "Starting deletion of stale values..." )
2013-05-13 01:53:24 -07:00
err := prometheus . delete ( * deleteAge , deletionBatchSize )
if err != nil {
2013-08-12 09:22:48 -07:00
glog . Error ( "could not delete: " , err )
2013-05-13 01:53:24 -07:00
}
2013-08-12 08:18:02 -07:00
glog . Info ( "Done" )
2013-05-13 01:53:24 -07:00
}
} ( )
2013-05-05 10:32:04 -07:00
go func ( ) {
err := webService . ServeForever ( )
if err != nil {
2013-08-12 08:18:02 -07:00
glog . Fatal ( err )
2013-05-05 10:32:04 -07:00
}
} ( )
2013-01-04 08:55:58 -08:00
2013-04-29 02:17:56 -07:00
// TODO(all): Migrate this into prometheus.serve().
2013-06-25 05:02:27 -07:00
for block := range unwrittenSamples {
Add optional sample replication to OpenTSDB.
Prometheus needs long-term storage. Since we don't have enough resources
to build our own timeseries storage from scratch ontop of Riak,
Cassandra or a similar distributed datastore at the moment, we're
planning on using OpenTSDB as long-term storage for Prometheus. It's
data model is roughly compatible with that of Prometheus, with some
caveats.
As a first step, this adds write-only replication from Prometheus to
OpenTSDB, with the following things worth noting:
1)
I tried to keep the integration lightweight, meaning that anything
related to OpenTSDB is isolated to its own package and only main knows
about it (essentially it tees all samples to both the existing storage
and TSDB). It's not touching the existing TieredStorage at all to avoid
more complexity in that area. This might change in the future,
especially if we decide to implement a read path for OpenTSDB through
Prometheus as well.
2)
Backpressure while sending to OpenTSDB is handled by simply dropping
samples on the floor when the in-memory queue of samples destined for
OpenTSDB runs full. Prometheus also only attempts to send samples once,
rather than implementing a complex retry algorithm. Thus, replication to
OpenTSDB is best-effort for now. If needed, this may be extended in the
future.
3)
Samples are sent in batches of limited size to OpenTSDB. The optimal
batch size, timeout parameters, etc. may need to be adjusted in the
future.
4)
OpenTSDB has different rules for legal characters in tag (label) values.
While Prometheus allows any characters in label values, OpenTSDB limits
them to a to z, A to Z, 0 to 9, -, _, . and /. Currently any illegal
characters in Prometheus label values are simply replaced by an
underscore. Especially when integrating OpenTSDB with the read path in
Prometheus, we'll need to reconsider this: either we'll need to
introduce the same limitations for Prometheus labels or escape/encode
illegal characters in OpenTSDB in such a way that they are fully
decodable again when reading through Prometheus, so that corresponding
timeseries in both systems match in their labelsets.
Change-Id: I8394c9c55dbac3946a0fa497f566d5e6e2d600b5
2013-12-09 08:03:49 -08:00
if block . Err == nil && len ( block . Samples ) > 0 {
2013-06-25 05:02:27 -07:00
ts . AppendSamples ( block . Samples )
Add optional sample replication to OpenTSDB.
Prometheus needs long-term storage. Since we don't have enough resources
to build our own timeseries storage from scratch ontop of Riak,
Cassandra or a similar distributed datastore at the moment, we're
planning on using OpenTSDB as long-term storage for Prometheus. It's
data model is roughly compatible with that of Prometheus, with some
caveats.
As a first step, this adds write-only replication from Prometheus to
OpenTSDB, with the following things worth noting:
1)
I tried to keep the integration lightweight, meaning that anything
related to OpenTSDB is isolated to its own package and only main knows
about it (essentially it tees all samples to both the existing storage
and TSDB). It's not touching the existing TieredStorage at all to avoid
more complexity in that area. This might change in the future,
especially if we decide to implement a read path for OpenTSDB through
Prometheus as well.
2)
Backpressure while sending to OpenTSDB is handled by simply dropping
samples on the floor when the in-memory queue of samples destined for
OpenTSDB runs full. Prometheus also only attempts to send samples once,
rather than implementing a complex retry algorithm. Thus, replication to
OpenTSDB is best-effort for now. If needed, this may be extended in the
future.
3)
Samples are sent in batches of limited size to OpenTSDB. The optimal
batch size, timeout parameters, etc. may need to be adjusted in the
future.
4)
OpenTSDB has different rules for legal characters in tag (label) values.
While Prometheus allows any characters in label values, OpenTSDB limits
them to a to z, A to Z, 0 to 9, -, _, . and /. Currently any illegal
characters in Prometheus label values are simply replaced by an
underscore. Especially when integrating OpenTSDB with the read path in
Prometheus, we'll need to reconsider this: either we'll need to
introduce the same limitations for Prometheus labels or escape/encode
illegal characters in OpenTSDB in such a way that they are fully
decodable again when reading through Prometheus, so that corresponding
timeseries in both systems match in their labelsets.
Change-Id: I8394c9c55dbac3946a0fa497f566d5e6e2d600b5
2013-12-09 08:03:49 -08:00
if remoteTSDBQueue != nil {
remoteTSDBQueue . Queue ( block . Samples )
}
2012-12-25 04:50:36 -08:00
}
2012-11-24 03:33:34 -08:00
}
}