summaryrefslogtreecommitdiff
path: root/doc/administration/monitoring
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-01-18 03:08:23 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-01-18 03:08:23 +0000
commit47e35934185ed4292b1b7ef365a3156cc3e0293f (patch)
tree3880aa972283ab7d88448b2b51af29e88b2c9da4 /doc/administration/monitoring
parenta1565a8243dd2cce29d0489d5ed40f9291d828d4 (diff)
downloadgitlab-ce-47e35934185ed4292b1b7ef365a3156cc3e0293f.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/administration/monitoring')
-rw-r--r--doc/administration/monitoring/performance/grafana_configuration.md6
-rw-r--r--doc/administration/monitoring/performance/influxdb_configuration.md12
-rw-r--r--doc/administration/monitoring/performance/influxdb_schema.md2
3 files changed, 10 insertions, 10 deletions
diff --git a/doc/administration/monitoring/performance/grafana_configuration.md b/doc/administration/monitoring/performance/grafana_configuration.md
index 9047a572fd2..2fbbeb0b774 100644
--- a/doc/administration/monitoring/performance/grafana_configuration.md
+++ b/doc/administration/monitoring/performance/grafana_configuration.md
@@ -57,14 +57,14 @@ repository.
To use this repository you must first clone it:
-```
+```shell
git clone https://gitlab.com/gitlab-org/influxdb-management.git
cd influxdb-management
```
Next you must install the required dependencies:
-```
+```shell
gem install bundler
bundle install
```
@@ -139,7 +139,7 @@ echo "0" > /var/opt/gitlab/grafana/CVE_reset_status
To reinstate your old data, move it back into its original location:
-```
+```shell
sudo mv /var/opt/gitlab/grafana/data.bak.xxxx/ /var/opt/gitlab/grafana/data/
```
diff --git a/doc/administration/monitoring/performance/influxdb_configuration.md b/doc/administration/monitoring/performance/influxdb_configuration.md
index 49076d3f47d..b18be09ef4b 100644
--- a/doc/administration/monitoring/performance/influxdb_configuration.md
+++ b/doc/administration/monitoring/performance/influxdb_configuration.md
@@ -48,7 +48,7 @@ upcoming InfluxDB releases.
Make sure you have the following in your configuration file:
-```
+```toml
[data]
dir = "/var/lib/influxdb/data"
engine = "tsm1"
@@ -60,7 +60,7 @@ Production environments should have the InfluxDB admin panel **disabled**. This
feature can be disabled by adding the following to your InfluxDB configuration
file:
-```
+```toml
[admin]
enabled = false
```
@@ -71,7 +71,7 @@ HTTP is required when using the [InfluxDB CLI] or other tools such as Grafana,
thus it should be enabled. When enabling make sure to _also_ enable
authentication:
-```
+```toml
[http]
enabled = true
auth-enabled = true
@@ -85,7 +85,7 @@ admin user](#create-a-new-admin-user)._
GitLab writes data to InfluxDB via UDP and thus this must be enabled. Enabling
UDP can be done using the following settings:
-```
+```toml
[[udp]]
enabled = true
bind-address = ":8089"
@@ -138,7 +138,7 @@ allowing traffic from members of said VLAN.
If you want to [enable authentication](#http), you might want to [create an
admin user][influx-admin]:
-```
+```shell
influx -execute "CREATE USER jeff WITH PASSWORD '1234' WITH ALL PRIVILEGES"
```
@@ -168,7 +168,7 @@ influx -execute 'SHOW DATABASES'
The output should be similar to:
-```
+```plaintext
name: databases
---------------
name
diff --git a/doc/administration/monitoring/performance/influxdb_schema.md b/doc/administration/monitoring/performance/influxdb_schema.md
index 34d35492ccf..adbccdaaeb8 100644
--- a/doc/administration/monitoring/performance/influxdb_schema.md
+++ b/doc/administration/monitoring/performance/influxdb_schema.md
@@ -43,7 +43,7 @@ while the method name is stored in the tag `method`. The tag `action` contains
the full name of the transaction action. Both the `method` and `action` fields
are in the following format:
-```
+```plaintext
ClassName#method_name
```