|
|
@@ -6,7 +6,7 @@ type = "docs"
|
|
|
[menu.docs]
|
|
|
name = "Microsoft SQL Server"
|
|
|
parent = "datasources"
|
|
|
-weight = 7
|
|
|
+weight = 8
|
|
|
+++
|
|
|
|
|
|
# Using Microsoft SQL Server in Grafana
|
|
|
@@ -33,6 +33,24 @@ Name | Description
|
|
|
*User* | Database user's login/username
|
|
|
*Password* | Database user's password
|
|
|
|
|
|
+### Min time interval
|
|
|
+
|
|
|
+A lower limit for the [$__interval](/reference/templating/#the-interval-variable) and [$__interval_ms](/reference/templating/#the-interval-ms-variable) variables.
|
|
|
+Recommended to be set to write frequency, for example `1m` if your data is written every minute.
|
|
|
+This option can also be overridden/configured in a dashboard panel under data source options. It's important to note that this value **needs** to be formatted as a
|
|
|
+number followed by a valid time identifier, e.g. `1m` (1 minute) or `30s` (30 seconds). The following time identifiers are supported:
|
|
|
+
|
|
|
+Identifier | Description
|
|
|
+------------ | -------------
|
|
|
+`y` | year
|
|
|
+`M` | month
|
|
|
+`w` | week
|
|
|
+`d` | day
|
|
|
+`h` | hour
|
|
|
+`m` | minute
|
|
|
+`s` | second
|
|
|
+`ms` | millisecond
|
|
|
+
|
|
|
### Database User Permissions (Important!)
|
|
|
|
|
|
The database user you specify when you add the data source should only be granted SELECT permissions on
|