blob: 78c39c4580af8cd0faed94bc3049b2096ffa30cc [file] [log] [blame]
Joey Armstrong03b20872024-01-12 13:03:07 -05001//go:build profile
Matteo Scandoloa98f0dc2020-05-13 10:39:29 -07002// +build profile
3
4/*
Joey Armstrong03b20872024-01-12 13:03:07 -05005 * Copyright 2018-2024 Open Networking Foundation (ONF) and the ONF Contributors
Matteo Scandoloa98f0dc2020-05-13 10:39:29 -07006
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10
11 * http://www.apache.org/licenses/LICENSE-2.0
12
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 */
19
20package main
21
22import (
Rohan Agrawalc32d9932020-06-15 11:01:47 +000023 "context"
Matteo Scandoloa98f0dc2020-05-13 10:39:29 -070024 "net/http"
25 _ "net/http/pprof"
26)
27
28func realMain() {
29 go func() {
Rohan Agrawalc32d9932020-06-15 11:01:47 +000030 ctx := context.Background()
31 logger.Fatal(ctx, http.ListenAndServe("0.0.0.0:6060", nil))
Matteo Scandoloa98f0dc2020-05-13 10:39:29 -070032 }()
33
Matteo Scandolo256266d2020-06-01 13:44:07 -070034}