mirror of
https://github.com/google/gops.git
synced 2024-11-19 20:31:58 +02:00
22 lines
415 B
Go
22 lines
415 B
Go
// Copyright 2016 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package main
|
|
|
|
import (
|
|
"log"
|
|
"time"
|
|
|
|
"github.com/google/gops/agent"
|
|
)
|
|
|
|
func main() {
|
|
if err := agent.Listen(agent.Options{
|
|
ShutdownCleanup: true, // automatically closes on os.Interrupt
|
|
}); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
time.Sleep(time.Hour)
|
|
}
|