W3cubDocs

/OpenTSDB

Configuration

OpenTSDB can be configured via a file on the local system, via command line arguments or a combination or both.

Configuration File

The configuration file conforms to the Java properties specification. Configuration names are lower-case, dotted strings without spaces. Each name is followed by an equals sign, then the value for the property. All OpenTSDB properties start with tsd. Comments or inactive configuration lines are blocked by a hash symbol #. For example:

# List of Zookeeper hosts that manage the HBase cluster
tsd.storage.hbase.zk_quorum = 192.168.1.100

will configure the TSD to connect to Zookeeper on 192.168.1.100.

When combining configuration files and command line arguments, the order of processing is as follows:

  1. Default values are loaded
  2. Configuration file values are loaded, overriding default values
  3. Command line parameters are loaded, overriding config file and default values

File Locations

You can use the --config command line argument to specify the full path to a configuration file. Otherwise if not specified, OpenTSDB and some of the command-line tools will attempt to search for a valid configuration file in the following locations:

  • ./opentsdb.conf
  • /etc/opentsdb.conf
  • /etc/opentsdb/opentsdb.conf
  • /opt/opentsdb/opentsdb.conf

In the event that a valid configuration file cannot be found and the required properties are not set, the TSD will not start. Please see the properties table below for a list of required configuration settings.

Properties

The following is a table of configuration options for all tools. When applicable, the corresponding command line override is provided. Please note that individual command line tools may have their own values so see their documentation for details.

Note

For additional parameters used for tuning the AsyncHBase client, see AsyncHBase Configuration

Property Type Required Description Default CLI
tsd.core.auto_create_metrics Boolean Optional Whether or not a data point with a new metric will assign a UID to the metric. When false, a data point with a metric that is not in the database will be rejected and an exception will be thrown. False --auto-metric
tsd.core.auto_create_tagks (2.1) Boolean Optional Whether or not a data point with a new tag name will assign a UID to the tagk. When false, a data point with a tag name that is not in the database will be rejected and an exception will be thrown. True
tsd.core.auto_create_tagvs (2.1) Boolean Optional Whether or not a data point with a new tag value will assign a UID to the tagv. When false, a data point with a tag value that is not in the database will be rejected and an exception will be thrown. True
tsd.core.connections.limit (2.3) Integer Optional Sets the maximum number of connections a TSD will handle, additional connections are immediately closed. 0
tsd.core.enable_api (2.3) Boolean Optional Whether or not to allow the 2.x HTTP API to function. When disabled, calls to endpoints such as /api/query or /api/suggest will return a 404. True --disable-api
tsd.core.enable_ui (2.3) Boolean Optional Whether or not to allow the built-in GUI and legacy HTTP API to function. When disabled, calls to the root endpoint or other such as /logs or /suggest will return a 404. True --disable-ui
tsd.core.meta.enable_realtime_ts Boolean Optional Whether or not to enable real-time TSMeta object creation. See Metadata False
tsd.core.meta.enable_realtime_uid Boolean Optional Whether or not to enable real-time UIDMeta object creation. See Metadata False
tsd.core.meta.enable_tsuid_incrementing Boolean Optional Whether or not to enable tracking of TSUIDs by incrementing a counter every time a data point is recorded. See Metadata (Overrides "tsd.core.meta.enable_tsuid_tracking") False
tsd.core.meta.enable_tsuid_tracking Boolean Optional Whether or not to enable tracking of TSUIDs by storing a 1 with the current timestamp every time a data point is recorded. See Metadata False
tsd.core.plugin_path String Optional A path to search for plugins when the TSD starts. If the path is invalid, the TSD will fail to start. Plugins can still be enabled if they are in the class path.
tsd.core.preload_uid_cache (2.1) Boolean Optional Enables pre-population of the UID caches when starting a TSD. False
tsd.core.preload_uid_cache.max_entries (2.1) Integer Optional The number of rows to scan for UID pre-loading. 300,000
tsd.core.storage_exception_handler.enable (2.2) Boolean Optional Whether or not to enable the configured storage exception handler plugin. False
tsd.core.storage_exception_handler.plugin (2.2) String Optional The full class name of the storage exception handler plugin you wish to use.
tsd.core.timezone String Optional A localized timezone identification string used to override the local system timezone used when converting absolute times to UTC when executing a query. This does not affect incoming data timestamps. E.g. America/Los_Angeles System Configured
tsd.core.tree.enable_processing Boolean Optional Whether or not to enable processing new/edited TSMeta through tree rule sets false
tsd.core.uid.random_metrics (2.2) Boolean Optional Whether or not to randomly assign UIDs to new metrics as they are created false
tsd.core.bulk.allow_out_of_order_timestamps *(2.3) Boolean Optional Whether or not to allow out-of-order values when bulk importing data from a text file. false
tsd.http.cachedir String Required The full path to a location where temporary files can be written. E.g. /tmp/opentsdb --cachedir
tsd.http.query.allow_delete Boolean Optional Whether or not to allow deleting data points from storage during query time. False
tsd.query.enable_fuzzy_filter Boolean Optional Whether or not to enable the FuzzyRowFilter for HBase when making queries using the explicitTags flag. True
tsd.http.request.cors_domains String Optional A comma separated list of domain names to allow access to OpenTSDB when the Origin header is specified by the client. If empty, CORS requests are passed through without validation. The list may not contain the public wildcard * and specific domains at the same time.
tsd.http.request.cors_headers (2.1) String Optional A comma separated list of headers sent to clients when executing a CORs request. The literal value of this option will be passed to clients. Authorization, Content-Type, Accept, Origin, User-Agent, DNT, Cache-Control, X-Mx-ReqToken, Keep-Alive, X-Requested-With, If-Modified-Since
tsd.http.request.enable_chunked Boolean Optional Whether or not to enable incoming chunk support for the HTTP RPC false
tsd.http.request.max_chunk Integer Optional The maximum request body size to support for incoming HTTP requests when chunking is enabled. 4096
tsd.http.rpc.plugins (2.2) String Optional A comma delimited list of RPC plugins to load when starting a TSD. Must contain the entire class name.
tsd.http.show_stack_trace Boolean Optional Whether or not to return the stack trace with an API query response when an exception occurs. false
tsd.http.staticroot String Required Location of a directory where static files, such as JavaScript files for the web interface, are located. E.g. /opt/opentsdb/staticroot --staticroot
tsd.mode (2.1) String Optional Whether or not the TSD will allow writing data points. Must be either rw to allow writing data or ro to block data point writes. Note that meta data such as UIDs can still be written/modified. rw
tsd.network.async_io Boolean Optional Whether or not to use NIO or traditional blocking IO True --async-io
tsd.network.backlog Integer Optional The connection queue depth for completed or incomplete connection requests depending on OS. The default may be limited by the 'somaxconn' kernel setting or set by Netty to 3072. See Description --backlog
tsd.network.bind String Optional An IPv4 address to bind to for incoming requests. The default is to listen on all interfaces. E.g. 127.0.0.1 0.0.0.0 --bind
tsd.network.keep_alive Boolean Optional Whether or not to allow keep-alive connections True
tsd.network.port Integer Required The TCP port to use for accepting connections --port
tsd.network.reuse_address Boolean Optional Whether or not to allow reuse of the bound port within Netty True
tsd.network.tcp_no_delay Boolean Optional Whether or not to disable TCP buffering before sending data True
tsd.network.worker_threads Integer Optional The number of asynchronous IO worker threads for Netty #CPU cores * 2 --worker-threads
tsd.no_diediedie (2.1) Boolean Optional Enable or disable the diediedie HTML and ASCII commands to shutdown a TSD. False
tsd.query.allow_simultaneous_duplicates (2.2) Boolean Optional Whether or not to allow simultaneous duplicate queries from the same host. If disabled, a second query that comes in matching one already running will receive an exception. False
tsd.query.filter.expansion_limit (2.2) Integer Optional The maximum number of tag values to include in the regular expression sent to storage during scanning for data. A larger value means more computation on the HBase region servers. 4096
tsd.query.skip_unresolved_tagvs (2.2) Boolean Optional Whether or not to continue querying when the query includes a tag value that hasn't been assigned a UID yet and may not exist. False
tsd.query.timeout (2.2) Integer Optional How long, in milliseconds, before canceling a running query. A value of 0 means queries will not timeout. 0
tsd.rollups.enable (2.4) Boolean Optional Whether or not to enable rollup and pre-aggregation storage and writing. false
tsd.rollups.tag_raw (2.4) Boolean Optional Whether or not to tag non-rolled-up and non-pre-aggregated values with the tag key configured in tsd.rollups.agg_tag_key and value configured in tsd.rollups.raw_agg_tag_value false
tsd.rollups.agg_tag_key (2.4) String Optional A special key to tag pre-aggregated data with when writing to storage _aggregate
tsd.rollups.raw_agg_tag_value (2.4) String Optional A special tag value to non-rolled-up and non-pre-aggregated data with when writing to storage. tsd.rollups.tag_raw must be set to true. RAW
tsd.rollups.block_derived (2.4) Boolean Optional Whether or not to block storing derived aggregations such as AVG and DEV. true
tsd.rpc.plugins String Optional A comma delimited list of RPC plugins to load when starting a TSD. Must contain the entire class name.
tsd.rpc.telnet.return_errors (2.4) Boolean Optional Whether or not to return errors to the Telnet style socket when writing data via put or rollup true
tsd.rtpublisher.enable Boolean Optional Whether or not to enable a real time publishing plugin. If true, you must supply a valid tsd.rtpublisher.plugin class name False
tsd.rtpublisher.plugin String Optional The class name of a real time publishing plugin to instantiate. If tsd.rtpublisher.enable is set to false, this value is ignored. E.g. net.opentsdb.tsd.RabbitMQPublisher
tsd.search.enable Boolean Optional Whether or not to enable search functionality. If true, you must supply a valid tsd.search.plugin class name False
tsd.search.plugin String Optional The class name of a search plugin to instantiate. If tsd.search.enable is set to false, this value is ignored. E.g. net.opentsdb.search.ElasticSearch
tsd.stats.canonical Boolean Optional Whether or not the FQDN should be returned with statistics requests. The default stats are returned with host=<hostname> which is not guaranteed to perform a lookup and return the FQDN. Setting this to true will perform a name lookup and return the FQDN if found, otherwise it may return the IP. The stats output should be fqdn=<hostname> false
tsd.storage.compaction.flush_interval (2.2) Integer Optional How long, in seconds, to wait in between compaction queue flush calls 10
tsd.storage.compaction.flush_speed (2.2) Integer Optional A multiplier used to determine how quickly to attempt flushing the compaction queue. E.g. a value of 2 means it will try to flush the entire queue within 30 minutes. A value of 1 would take an hour. 2
tsd.storage.compaction.max_concurrent_flushes (2.2) Integer Optional The maximum number of compaction calls inflight to HBase at any given time 10000
tsd.storage.compaction.min_flush_threshold (2.2) Integer Optional Size of the compaction queue that must be exceeded before flushing is triggered 100
tsd.storage.enable_appends (2.2) Boolean Optional Whether or not to append data to columns when writing data points instead of creating new columns for each value. Avoids the need for compactions after each hour but can use more resources on HBase. False
tsd.storage.enable_compaction Boolean Optional Whether or not to enable compactions True
tsd.storage.fix_duplicates (2.1) Boolean Optional Whether or not to accept the last written value when parsing data points with duplicate timestamps. When enabled in conjunction with compactions, a compacted column will be written with the latest data points. False
tsd.storage.flush_interval Integer Optional How often, in milliseconds, to flush the data point storage write buffer 1000 --flush-interval
tsd.storage.hbase.data_table String Optional Name of the HBase table where data points are stored tsdb --table
tsd.storage.hbase.meta_table String Optional Name of the HBase table where meta data are stored tsdb-meta
tsd.storage.hbase.prefetch_meta (2.2) Boolean Optional Whether or not to prefetch the regions for the TSDB tables before starting the network interface. This can improve performance. False
tsd.storage.hbase.tree_table String Optional Name of the HBase table where tree data are stored tsdb-tree
tsd.storage.hbase.uid_table String Optional Name of the HBase table where UID information is stored tsdb-uid --uidtable
tsd.storage.hbase.zk_basedir String Optional Path under which the znode for the -ROOT- region is located /hbase --zkbasedir
tsd.storage.hbase.zk_quorum String Optional A comma-separated list of ZooKeeper hosts to connect to, with or without port specifiers. E.g. 192.168.1.1:2181,192.168.1.2:2181 localhost --zkquorum
tsd.storage.repair_appends (2.2) Boolean Optional Whether or not to re-write appended data point columns at query time when the columns contain duplicate or out of order data. False
tsd.storage.max_tags (2.2) Integer Optional The maximum number of tags allowed per data point. NOTE Please be aware of the performance tradeoffs of overusing tags writing 8
tsd.storage.salt.buckets (2.2) Integer Optional The number of salt buckets used to distribute load across regions. NOTE Changing this value after writing data may cause TSUID based queries to fail. 20
tsd.storage.salt.width (2.2) Integer Optional The width, in bytes, of the salt prefix used to indicate which bucket a time series belongs in. A value of 0 means salting is disabled. WARNING Do not change after writing data to HBase or you will corrupt your tables and not be able to query any more. 0
tsd.storage.uid.width.metric (2.2) Integer Optional The width, in bytes, of metric UIDs. WARNING Do not change after writing data to HBase or you will corrupt your tables and not be able to query any more. 3
tsd.storage.uid.width.tagk (2.2) Integer Optional The width, in bytes, of tag name UIDs. WARNING Do not change after writing data to HBase or you will corrupt your tables and not be able to query any more. 3
tsd.storage.uid.width.tagv (2.2) Integer Optional The width, in bytes, of tag value UIDs. WARNING Do not change after writing data to HBase or you will corrupt your tables and not be able to query any more. 3

Data Types

Some configuration values require special consideration:

  • Booleans - The following literals will parse to True:

    • 1
    • true
    • yes

    Any other values will result in a False. Parsing is case insensitive

  • Strings - Strings, even those with spaces, do not require quotation marks, but some considerations apply:

    • Special characters must be escaped with a backslash include: #, !, =, and : E.g.:

      my.property = Hello World\!
      
    • Unicode characters must be escaped with their hexadecimal representation, e.g.:

      my.property = \u0009
      

© 2010–2016 The OpenTSDB Authors
Licensed under the GNU LGPLv2.1+ and GPLv3+ licenses.
http://opentsdb.net/docs/build/html/user_guide/configuration.html