package client import ( "time" ) type ReportDataItem struct { Metric string `json:"metric,omitempty"` Tags map[string]string `json:"tags,omitempty"` Timestamp time.Time `json:"timestamp"` Value any `json:"value,omitempty"` } func (c *Client) Report() { }