blob: 469a2a6d9fa455c68947e6ff7cd0f8a650b80b3d [file] [log] [blame]
Joey Armstrong393daca2023-07-06 08:47:54 -04001//go:build profile
Don Newton8eca4622020-02-10 16:44:48 -05002// +build profile
3
4/*
Joey Armstrong7a9af442024-01-03 19:26:36 -05005 * Copyright 2018-2024 Open Networking Foundation (ONF) and the ONF Contributors
Don Newton8eca4622020-02-10 16:44:48 -05006
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 Agrawal9395a812020-07-13 12:07:58 +000023 "context"
Don Newton8eca4622020-02-10 16:44:48 -050024 "net/http"
25 _ "net/http/pprof"
26)
27
28func realMain() {
29 go func() {
Rohan Agrawal9395a812020-07-13 12:07:58 +000030 logger.Infoln(context.Background(), http.ListenAndServe("0.0.0.0:6060", nil))
Don Newton8eca4622020-02-10 16:44:48 -050031 }()
32
33}