Joey Armstrong | 03b2087 | 2024-01-12 13:03:07 -0500 | [diff] [blame] | 1 | //go:build profile |
Matteo Scandolo | a98f0dc | 2020-05-13 10:39:29 -0700 | [diff] [blame] | 2 | // +build profile |
| 3 | |
| 4 | /* |
Joey Armstrong | 03b2087 | 2024-01-12 13:03:07 -0500 | [diff] [blame] | 5 | * Copyright 2018-2024 Open Networking Foundation (ONF) and the ONF Contributors |
Matteo Scandolo | a98f0dc | 2020-05-13 10:39:29 -0700 | [diff] [blame] | 6 | |
| 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 | |
| 20 | package main |
| 21 | |
| 22 | import ( |
Rohan Agrawal | c32d993 | 2020-06-15 11:01:47 +0000 | [diff] [blame] | 23 | "context" |
Matteo Scandolo | a98f0dc | 2020-05-13 10:39:29 -0700 | [diff] [blame] | 24 | "net/http" |
| 25 | _ "net/http/pprof" |
| 26 | ) |
| 27 | |
| 28 | func realMain() { |
| 29 | go func() { |
Rohan Agrawal | c32d993 | 2020-06-15 11:01:47 +0000 | [diff] [blame] | 30 | ctx := context.Background() |
| 31 | logger.Fatal(ctx, http.ListenAndServe("0.0.0.0:6060", nil)) |
Matteo Scandolo | a98f0dc | 2020-05-13 10:39:29 -0700 | [diff] [blame] | 32 | }() |
| 33 | |
Matteo Scandolo | 256266d | 2020-06-01 13:44:07 -0700 | [diff] [blame] | 34 | } |