| 12345678910111213141516171819202122232425262728293031323334353637 |
- <datasource-http-settings current="ctrl.current" suggest-url="http://localhost:8086">
- </datasource-http-settings>
- <h3 class="page-heading">InfluxDB Details</h3>
- <div class="gf-form-group">
- <div class="gf-form-inline">
- <div class="gf-form max-width-30">
- <span class="gf-form-label width-7">Database</span>
- <input type="text" class="gf-form-input" ng-model='ctrl.current.database' placeholder="" required></input>
- </div>
- </div>
- <div class="gf-form-inline">
- <div class="gf-form max-width-15">
- <span class="gf-form-label width-7">User</span>
- <input type="text" class="gf-form-input" ng-model='ctrl.current.user' placeholder=""></input>
- </div>
- <div class="gf-form max-width-15">
- <span class="gf-form-label width-7">Password</span>
- <input type="password" class="gf-form-input" ng-model='ctrl.current.password' placeholder=""></input>
- </div>
- </div>
- </div>
- <div class="gf-form-group">
- <div class="gf-form-inline">
- <div class="gf-form">
- <span class="gf-form-label">Min time interval</span>
- <input type="text" class="gf-form-input width-6" ng-model="ctrl.current.jsonData.timeInterval" spellcheck='false' placeholder="10s"></input>
- <info-popover mode="right-absolute">
- A lower limit for the auto group by time interval. Recommended to be set to write frequency,
- for example <code>1m</code> if your data is written every minute.
- </info-popover>
- </div>
- </div>
- </div>
|