You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docker run -p 3000:3000 -e GF_INSTALL_PLUGINS="https://github.com/quickwit-oss/quickwit-datasource/releases/download/v0.3.2/quickwit-quickwit-datasource-0.3.2.zip;quickwit-quickwit-datasource" grafana/grafana-oss run
docker run -p 3000:3000 -e GF_INSTALL_PLUGINS="https://github.com/quickwit-oss/quickwit-datasource/releases/download/v0.2.4/quickwit-quickwit-datasource-0.2.4.zip;quickwit-quickwit-datasource" grafana/grafana-oss run
64
55
```
65
56
57
+
## Additional instructions
58
+
66
59
If you are running a local Quickwit instance on Linux, add the `--network=host` argument to the `docker run` command. This will allow Grafana to access services on the host machine. You can later use `http://localhost:7280/api/v1` in the Quickwit API URL when configuring the data source.
67
60
68
61
The default username and password are `admin` and `admin`.
@@ -79,8 +72,6 @@ locally, please check out the [Plugin management docs](https://grafana.com/docs/
79
72
To configure the Quickwit datasource, you need to provide the following information:
80
73
- The Quickwit API URL with the `/api/v1` suffix. If you have a Quickwit local instance, set the host to `http://host.docker.internal:7280/api/v1` on macOS or `http://localhost:7280/api/v1` on Linux.
81
74
- The index name.
82
-
- The timestamp field name.
83
-
- The output format of the timestamp field: only `unix_timestamp_secs`, `unix_timestamp_millis`, `unix_timestamp_micros`, `unix_timestamp_nanos`, `iso8601` and `rfc3339` are supported.
84
75
- The log message field name (optional). This is the field displayed in the explorer view.
85
76
- The log level field name (optional). It must be a fast field.
86
77
@@ -99,17 +90,18 @@ datasources:
99
90
url: http://localhost:7280/api/v1
100
91
jsonData:
101
92
index: 'hdfs-logs'
102
-
timeField: timestamp
103
-
timeOutputFormat: unix_timestamp_secs
104
93
logMessageField: body
105
94
logLevelField: severity_text
106
95
```
107
96
108
-
## Template variables
109
-
110
-
## Learn more
97
+
## Features
111
98
112
-
* Set up alerting; refer to [Alerts overview](https://grafana.com/docs/grafana/latest/alerting/).
0 commit comments