예제 #1
0
파일: statcap.go 프로젝트: dustin/statcap
func store(db statstore.Storer, ts time.Time, m map[string]interface{}) error {
	_, _, err := db.Insert(statstore.NewItem(m, ts))
	if err != nil {
		log.Printf("Error inserting data:  %v", err)
	}
	return err
}
예제 #2
0
파일: convert.go 프로젝트: dustin/statcap
func storer(w statstore.Storer, ch <-chan statstore.StoredItem) {
	defer wg.Done()

	for e := range ch {
		w.Insert(e)
	}
}