Add a possible sequence flow for queries

pull/10616/head
Chris Goller 2016-09-02 12:38:34 -05:00
parent b3152a7ca7
commit 1d2c6e352d
1 changed files with 13 additions and 0 deletions

View File

@ -36,6 +36,19 @@ Design
- New client in design phase
- non-SELECT queries need either Plutonium client or Influx oss client
```sequence
App->Proxy: POST query
Note right of Proxy: Query Validation
Proxy-->App: Location of query resource
App->Proxy: GET Location
Note right of Proxy: Load balance query
Proxy->Influx/Relay/Cluster: SELECT
Note right of Influx/Relay/Cluster: Prepared Telegraf query
Influx/Relay/Cluster-->Proxy: Time Series
Note right of Proxy: Format and Decimate
Proxy-->App:
Note left of App: Format to dygraph
```
Example:
```http