You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
rition/rition-probe/client/http.go

16 lines
310 B

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() {
}