Skip to content
This repository was archived by the owner on Oct 3, 2023. It is now read-only.
This repository was archived by the owner on Oct 3, 2023. It is now read-only.

Can't see any metrics after running example code #269

Open
@simplylizz

Description

@simplylizz

What version of the Exporter are you using?

v0.13.1

What version of OpenCensus are you using?

v0.22.4

What version of Go are you using?

1.14

What did you do?

Ran a slightly modified code from the examples:

package main

import (
	"context"
	"fmt"
	"log"
	"time"

	"contrib.go.opencensus.io/exporter/stackdriver"
	"contrib.go.opencensus.io/exporter/stackdriver/monitoredresource"
	"go.opencensus.io/stats"
	"go.opencensus.io/stats/view"
)

// Create measures. The program will record measures for the size of
// processed videos and the nubmer of videos marked as spam.
var videoSize = stats.Int64("cwexample.com/measure/video_size", "size of processed videos", stats.UnitBytes)

func main() {
	ctx := context.Background()

	// Collected view data will be reported to Stackdriver Monitoring API
	// via the Stackdriver exporter.
	//
	// In order to use the Stackdriver exporter, enable Stackdriver Monitoring API
	// at https://console.cloud.google.com/apis/dashboard.
	//
	// Once API is enabled, you can use Google Application Default Credentials
	// to setup the authorization.
	// See https://developers.google.com/identity/protocols/application-default-credentials
	// for more details.
	se, err := stackdriver.NewExporter(stackdriver.Options{
		ProjectID:         "cw-dev-data-001", // Google Cloud Console project ID for stackdriver.
		MonitoredResource: monitoredresource.Autodetect(),
	})
	if err != nil {
		log.Fatal(err)
	}
	err = se.StartMetricsExporter()
	if err != nil {
		log.Fatal(err)
	}
	defer se.StopMetricsExporter()

	// Create view to see the processed video size cumulatively.
	// Subscribe will allow view data to be exported.
	// Once no longer need, you can unsubscribe from the view.
	if err := view.Register(&view.View{
		Name:        "cwexample.com/views/video_size_cum",
		Description: "processed video size over time",
		Measure:     videoSize,
		Aggregation: view.Distribution(1<<16, 1<<32),
	}); err != nil {
		log.Fatalf("Cannot subscribe to the view: %v", err)
	}

	processVideo(ctx)

	// Wait for a duration longer than reporting duration to ensure the stats
	// library reports the collected data.
	fmt.Println("Wait longer than the reporting duration...")
	time.Sleep(1 * time.Minute)
}

func processVideo(ctx context.Context) {
	// Do some processing and record stats.
	stats.Record(ctx, videoSize.M(25648))
}

What did you expect to see?

Error or related metrics in metrics explorer.

What did you see instead?

Neither error, nor metrics (tried to search by 'cwexample' in the stackdriver's metrics explorer).

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions