mirror of https://github.com/grafana/grafana.git
blocks: fix codespell issues
This commit is contained in:
parent
3fb204cc0d
commit
9a11b574ca
|
|
@ -38,7 +38,7 @@ CACHE_QUERY_PORT = 7002
|
||||||
|
|
||||||
LOG_UPDATES = False
|
LOG_UPDATES = False
|
||||||
|
|
||||||
# Enable AMQP if you want to receve metrics using an amqp broker
|
# Enable AMQP if you want to receive metrics using an amqp broker
|
||||||
# ENABLE_AMQP = False
|
# ENABLE_AMQP = False
|
||||||
|
|
||||||
# Verbose means a line will be logged for every metric received
|
# Verbose means a line will be logged for every metric received
|
||||||
|
|
|
||||||
|
|
@ -41,7 +41,7 @@ PICKLE_RECEIVER_PORT = 2004
|
||||||
CACHE_QUERY_INTERFACE = 0.0.0.0
|
CACHE_QUERY_INTERFACE = 0.0.0.0
|
||||||
CACHE_QUERY_PORT = 7002
|
CACHE_QUERY_PORT = 7002
|
||||||
|
|
||||||
# Enable AMQP if you want to receve metrics using you amqp broker
|
# Enable AMQP if you want to receive metrics using you amqp broker
|
||||||
ENABLE_AMQP = True
|
ENABLE_AMQP = True
|
||||||
|
|
||||||
# Verbose means a line will be logged for every metric received
|
# Verbose means a line will be logged for every metric received
|
||||||
|
|
|
||||||
|
|
@ -265,7 +265,7 @@ WHISPER_FALLOCATE_CREATE = True
|
||||||
# CARBON_METRIC_PREFIX = carbon
|
# CARBON_METRIC_PREFIX = carbon
|
||||||
# CARBON_METRIC_INTERVAL = 60
|
# CARBON_METRIC_INTERVAL = 60
|
||||||
|
|
||||||
# Enable AMQP if you want to receve metrics using an amqp broker
|
# Enable AMQP if you want to receive metrics using an amqp broker
|
||||||
# ENABLE_AMQP = False
|
# ENABLE_AMQP = False
|
||||||
|
|
||||||
# Verbose means a line will be logged for every metric received
|
# Verbose means a line will be logged for every metric received
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@ give_completer_focus = shift-space
|
||||||
# pertain only to specific metric types.
|
# pertain only to specific metric types.
|
||||||
#
|
#
|
||||||
# The dashboard presents only metrics that fall into specified naming schemes
|
# The dashboard presents only metrics that fall into specified naming schemes
|
||||||
# defined in this file. This creates a simpler, more targetted view of the
|
# defined in this file. This creates a simpler, more targeted view of the
|
||||||
# data. The general form for defining a naming scheme is as follows:
|
# data. The general form for defining a naming scheme is as follows:
|
||||||
#
|
#
|
||||||
#[Metric Type]
|
#[Metric Type]
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,6 @@ log() {
|
||||||
log $RUN_CMD
|
log $RUN_CMD
|
||||||
$RUN_CMD
|
$RUN_CMD
|
||||||
|
|
||||||
# Exit immidiately in case of any errors or when we have interactive terminal
|
# Exit immediately in case of any errors or when we have interactive terminal
|
||||||
if [[ $? != 0 ]] || test -t 0; then exit $?; fi
|
if [[ $? != 0 ]] || test -t 0; then exit $?; fi
|
||||||
log
|
log
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue