// GetTSDBContext returns an OpenTSDB context limited to // c.ResponseLimit. A nil context is returned if TSDBHost is not set. func (sc *SystemConf) GetTSDBContext() opentsdb.Context { if sc.OpenTSDBConf.Host == "" { return nil } return opentsdb.NewLimitContext(sc.OpenTSDBConf.Host, sc.OpenTSDBConf.ResponseLimit, sc.OpenTSDBConf.Version) }
// TSDBContext returns an OpenTSDB context limited to // c.ResponseLimit. A nil context is returned if TSDBHost is not set. func (c *Conf) TSDBContext() opentsdb.Context { if c.TSDBHost == "" { return nil } return opentsdb.NewLimitContext(c.TSDBHost, c.ResponseLimit) }