aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard/app/dashboard.go
blob: d206f26452bb2f5e856ca464b66af1f919ff6202 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Copyright 2019 syzkaller project authors. All rights reserved.
// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.

package main

import (
	"cloud.google.com/go/profiler"
	"github.com/google/syzkaller/pkg/log"
	"google.golang.org/appengine/v2"
)

// Doc on https://cloud.google.com/profiler/docs/profiling-go#using-profiler
func enableProfiling() {
	// Profiler initialization, best done as early as possible.
	if err := profiler.Start(profiler.Config{
		// Service and ServiceVersion can be automatically inferred when running
		// on App Engine.
		// ProjectID must be set if not running on GCP.
		// ProjectID: "my-project",
	}); err != nil {
		log.Logf(0, "failed to start profiler: %v", err)
	}
}

func main() {
	enableProfiling()
	installConfig(mainConfig)
	appengine.Main()
}