refactor fix after profiler patch
Signed-off-by: Ahmet Alp Balkan <ahmetb@google.com>
This commit is contained in:
parent
9486bc24fd
commit
e4664c22ea
5 changed files with 8 additions and 9 deletions
|
@ -43,7 +43,7 @@ func main() {
|
||||||
// ProjectID must be set if not running on GCP.
|
// ProjectID must be set if not running on GCP.
|
||||||
// ProjectID: "my-project",
|
// ProjectID: "my-project",
|
||||||
}); err != nil {
|
}); err != nil {
|
||||||
// TODO: Handle error.
|
log.Fatalf("failed to start profiler: %+v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
port := listenPort
|
port := listenPort
|
||||||
|
|
|
@ -3,6 +3,7 @@ package main
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"log"
|
||||||
"net/http"
|
"net/http"
|
||||||
"os"
|
"os"
|
||||||
"time"
|
"time"
|
||||||
|
@ -62,14 +63,13 @@ type frontendServer struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
// Profiler initialization, best done as early as possible.
|
|
||||||
if err := profiler.Start(profiler.Config{
|
if err := profiler.Start(profiler.Config{
|
||||||
Service: "frontendservice",
|
Service: "frontendservice",
|
||||||
ServiceVersion: "1.0.0",
|
ServiceVersion: "1.0.0",
|
||||||
// ProjectID must be set if not running on GCP.
|
// ProjectID must be set if not running on GCP.
|
||||||
// ProjectID: "my-project",
|
// ProjectID: "my-project",
|
||||||
}); err != nil {
|
}); err != nil {
|
||||||
// TODO: Handle error.
|
log.Fatalf("failed to start profiler: %+v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
ctx := context.Background()
|
ctx := context.Background()
|
||||||
|
|
|
@ -94,7 +94,7 @@ func main() {
|
||||||
// ProjectID must be set if not running on GCP.
|
// ProjectID must be set if not running on GCP.
|
||||||
// ProjectID: "my-project",
|
// ProjectID: "my-project",
|
||||||
}); err != nil {
|
}); err != nil {
|
||||||
// TODO: Handle error.
|
log.Fatalf("failed to start profiler: %+v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
|
|
|
@ -42,7 +42,7 @@ if __name__ == "__main__":
|
||||||
try:
|
try:
|
||||||
googleclouddebugger.enable(
|
googleclouddebugger.enable(
|
||||||
module='recommendationserver',
|
module='recommendationserver',
|
||||||
version='[VERSION]'
|
version='1.0.0'
|
||||||
)
|
)
|
||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
|
|
|
@ -29,14 +29,13 @@ func main() {
|
||||||
}
|
}
|
||||||
port = fmt.Sprintf(":%s", port)
|
port = fmt.Sprintf(":%s", port)
|
||||||
|
|
||||||
// Profiler initialization, best done as early as possible.
|
|
||||||
if err := profiler.Start(profiler.Config{
|
if err := profiler.Start(profiler.Config{
|
||||||
Service: "shippingservice",
|
Service: "shippingservice",
|
||||||
ServiceVersion: "1.0.0",
|
ServiceVersion: "1.0.0",
|
||||||
// ProjectID must be set if not running on GCP.
|
// ProjectID must be set if not running on GCP.
|
||||||
// ProjectID: "my-project",
|
// ProjectID: "my-project",
|
||||||
}); err != nil {
|
}); err != nil {
|
||||||
// TODO: Handle error.
|
log.Fatalf("failed to start profiler: %+v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
go initTracing()
|
go initTracing()
|
||||||
|
|
Loading…
Add table
Reference in a new issue