blob: 51145748f685a903a11b577f7fd78607d0335038 [file] [log] [blame]
Joey Armstrong3f0e2422023-07-05 18:25:41 -04001//go:build profile
Matteo Scandolo8f2b9572020-02-28 15:35:23 -08002// +build profile
3
4/*
Joey Armstrong11f5a572024-01-12 19:11:32 -05005 * Copyright 2018-2024 Open Networking Foundation (ONF) and the ONF Contributors
Matteo Scandolo8f2b9572020-02-28 15:35:23 -08006
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 (
Neha Sharma7025a812020-07-13 12:54:30 +000023 "context"
Matteo Scandolo8f2b9572020-02-28 15:35:23 -080024 "net/http"
25 _ "net/http/pprof"
26)
27
28func realMain() {
29 go func() {
Neha Sharma7025a812020-07-13 12:54:30 +000030 logger.Fatal(context.Background(), http.ListenAndServe("0.0.0.0:6060", nil))
Matteo Scandolo8f2b9572020-02-28 15:35:23 -080031 }()
32
33}