ref: master
server/grafana/model_api_endpoints_query_request.go
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
/** * Yats - yats * * This file is licensed under the Affero General Public License version 3 or * later. See the COPYING file. * * @author Paolo Lulli <kevwe.com> * @copyright Paolo Lulli 2024 */ package grafana type ApiEndpointsQueryRequest struct { PanelId ApiEndpointsQueryRequestPanelId `json:"panelId,omitempty"` Range ApiEndpointsQueryRequestRange `json:"range,omitempty"` RangeRaw RawTimeFrame `json:"rangeRaw,omitempty"` Interval string `json:"interval,omitempty"` IntervalMs float32 `json:"intervalMs,omitempty"` MaxDataPoints float32 `json:"maxDataPoints,omitempty"` Targets []ApiEndpointsQueryRequestTargetsInner `json:"targets,omitempty"` ScopedVars map[string]interface{} `json:"scopedVars,omitempty"` AdhocFilters []ApiEndpointsQueryRequestAdhocFiltersInner `json:"adhocFilters,omitempty"` } |