Sfoglia il codice sorgente

Fix error in InfluxDB query

Minor error in sql query to retrieve annotations
Grégoire Bellon-Gervais 7 anni fa
parent
commit
7b3652af67
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      docs/sources/features/datasources/influxdb.md

+ 1 - 1
docs/sources/features/datasources/influxdb.md

@@ -188,7 +188,7 @@ queries via the Dashboard menu / Annotations view.
 An example query:
 An example query:
 
 
 ```SQL
 ```SQL
-SELECT title, description from events WHERE $timeFilter order asc
+SELECT title, description from events WHERE $timeFilter ORDER BY time ASC
 ```
 ```
 
 
 For InfluxDB you need to enter a query like in the above example. You need to have the ```where $timeFilter```
 For InfluxDB you need to enter a query like in the above example. You need to have the ```where $timeFilter```