forked from enfein/mieru
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
357 additions
and
176 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
// Package log is is imported from https://github.com/sirupsen/logrus | ||
package log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
// Copyright (C) 2022 mieru authors | ||
// | ||
// This program is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// This program is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
|
||
package metrics | ||
|
||
import ( | ||
"fmt" | ||
"sort" | ||
"sync" | ||
"time" | ||
|
||
"github.com/enfein/mieru/pkg/log" | ||
) | ||
|
||
var ticker *time.Ticker | ||
var logDuration time.Duration | ||
var done chan struct{} | ||
var mutex sync.Mutex | ||
|
||
func init() { | ||
logDuration = time.Minute | ||
done = make(chan struct{}) | ||
} | ||
|
||
// Enable metrics logging with the given time duration. | ||
func EnableLogging() { | ||
mutex.Lock() | ||
defer mutex.Unlock() | ||
if ticker == nil { | ||
ticker = time.NewTicker(logDuration) | ||
go logMetrics() | ||
log.Infof("enabled metrics logging with duration %v", logDuration) | ||
} | ||
} | ||
|
||
// Disable metrics logging. | ||
func DisableLogging() { | ||
mutex.Lock() | ||
defer mutex.Unlock() | ||
done <- struct{}{} | ||
if ticker != nil { | ||
ticker.Stop() | ||
ticker = nil | ||
log.Infof("disabled metrics logging") | ||
} | ||
} | ||
|
||
// Set the metrics logging time duration. | ||
func SetLoggingDuration(duration time.Duration) error { | ||
if duration.Seconds() <= 0 { | ||
return fmt.Errorf("duration must be a positive number") | ||
} | ||
mutex.Lock() | ||
defer mutex.Unlock() | ||
logDuration = duration | ||
return nil | ||
} | ||
|
||
func logMetrics() { | ||
for { | ||
select { | ||
case <-ticker.C: | ||
log.Infof("[metrics]") | ||
list := MetricGroupList{} | ||
metricMap.Range(func(k, v any) bool { | ||
group := v.(*MetricGroup) | ||
if group.IsLoggingEnabled() { | ||
list = list.Append(group) | ||
} | ||
return true | ||
}) | ||
sort.Sort(list) | ||
for _, group := range list { | ||
log.WithFields(group.NewLogFields()).Infof(group.NewLogMsg()) | ||
} | ||
LogUDPPackets() | ||
LogKCPSegments() | ||
LogUDPBytes() | ||
LogKCPBytes() | ||
LogTCPBytes() | ||
LogUDPAssociation() | ||
LogUDPErrors() | ||
LogTCPErrors() | ||
LogSocks5Errors() | ||
case <-done: | ||
return | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.