type go.opencensus.io/stats/view.viewInternal

21 uses

	go.opencensus.io/stats/view (current package)
		view.go#L119: type viewInternal struct {
		view.go#L126: func newViewInternal(v *View) (*viewInternal, error) {
		view.go#L127: 	return &viewInternal{
		view.go#L134: func (v *viewInternal) subscribe() {
		view.go#L138: func (v *viewInternal) unsubscribe() {
		view.go#L144: func (v *viewInternal) isSubscribed() bool {
		view.go#L148: func (v *viewInternal) clearRows() {
		view.go#L152: func (v *viewInternal) collectedRows() []*Row {
		view.go#L156: func (v *viewInternal) addSample(m *tag.Map, val float64, attachments map[string]interface{}, t time.Time) {
		view_to_metric.go#L122: func rowToTimeseries(v *viewInternal, row *Row, now time.Time, startTime time.Time) *metricdata.TimeSeries {
		view_to_metric.go#L130: func viewToMetric(v *viewInternal, r *resource.Resource, now time.Time, startTime time.Time) *metricdata.Metric {
		worker.go#L40: 	views   map[*viewInternal]struct{}
		worker.go#L45: 	views      map[string]*viewInternal
		worker.go#L46: 	startTimes map[*viewInternal]time.Time
		worker.go#L248: 		views:      make(map[string]*viewInternal),
		worker.go#L249: 		startTimes: make(map[*viewInternal]time.Time),
		worker.go#L304: 		views:   make(map[*viewInternal]struct{}),
		worker.go#L310: func (w *worker) tryRegisterView(v *View) (*viewInternal, error) {
		worker.go#L333: func (w *worker) unregisterView(v *viewInternal) {
		worker.go#L343: func (w *worker) reportView(v *viewInternal) {
		worker.go#L369: func (w *worker) toMetric(v *viewInternal, now time.Time) *metricdata.Metric {