mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2025-02-09 15:27:11 +00:00
15 lines
346 B
Go
15 lines
346 B
Go
![]() |
package datasource
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
// Metrics the data returns from storage
|
||
|
type Metrics struct{}
|
||
|
|
||
|
// VMStorage represents vmstorage entity with ability to read and write metrics
|
||
|
type VMStorage struct{}
|
||
|
|
||
|
//Query basic query to the datasource
|
||
|
func (s *VMStorage) Query(ctx context.Context, query string) ([]Metrics, error) {
|
||
|
return nil, nil
|
||
|
}
|