* Add generic logger support The current KCL has tight coupling with logrus and it causes issue for customer to use different logging system such as zap log. The issue has been opened via: https://github.com/vmware/vmware-go-kcl/issues/27 This change is to created a logger interface be able to abstract above logrus and zap log. It makes easy to add support for other logging system in the fugure. The work is based on: https://www.mountedthoughts.com/golang-logger-interface/ Some updates are made in order to make logging system easily injectable and add more unit tests. Tested against real kinesis and dyamodb as well. Signed-off-by: Tao Jiang <taoj@vmware.com> * Add lumberjack configuration options to have fine grained control Update the file log configuratio by adding most of luberjack configuration to avoid hardcode default value. Let user to specify the value because log retention and rotation are very important for prod environment. Signed-off-by: Tao Jiang <taoj@vmware.com>
359 lines
11 KiB
Go
359 lines
11 KiB
Go
/*
|
|
* Copyright (c) 2018 VMware, Inc.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
* associated documentation files (the "Software"), to deal in the Software without restriction, including
|
|
* without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is furnished to do
|
|
* so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
* portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
|
|
* NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
// The implementation is derived from https://github.com/patrobinson/gokini
|
|
//
|
|
// Copyright 2018 Patrick robinson
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
package metrics
|
|
|
|
import (
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/aws/aws-sdk-go/aws"
|
|
"github.com/aws/aws-sdk-go/aws/credentials"
|
|
"github.com/aws/aws-sdk-go/aws/session"
|
|
"github.com/aws/aws-sdk-go/service/cloudwatch"
|
|
"github.com/aws/aws-sdk-go/service/cloudwatch/cloudwatchiface"
|
|
|
|
"github.com/vmware/vmware-go-kcl/logger"
|
|
)
|
|
|
|
type CloudWatchMonitoringService struct {
|
|
Namespace string
|
|
KinesisStream string
|
|
WorkerID string
|
|
Region string
|
|
Credentials *credentials.Credentials
|
|
Logger logger.Logger
|
|
|
|
// control how often to pusblish to CloudWatch
|
|
MetricsBufferTimeMillis int
|
|
MetricsMaxQueueSize int
|
|
|
|
stop *chan struct{}
|
|
waitGroup *sync.WaitGroup
|
|
svc cloudwatchiface.CloudWatchAPI
|
|
shardMetrics *sync.Map
|
|
}
|
|
|
|
type cloudWatchMetrics struct {
|
|
processedRecords int64
|
|
processedBytes int64
|
|
behindLatestMillis []float64
|
|
leasesHeld int64
|
|
leaseRenewals int64
|
|
getRecordsTime []float64
|
|
processRecordsTime []float64
|
|
sync.Mutex
|
|
}
|
|
|
|
func (cw *CloudWatchMonitoringService) Init() error {
|
|
cfg := &aws.Config{Region: aws.String(cw.Region)}
|
|
cfg.Credentials = cw.Credentials
|
|
s, err := session.NewSession(cfg)
|
|
if err != nil {
|
|
cw.Logger.Errorf("Error in creating session for cloudwatch. %+v", err)
|
|
return err
|
|
}
|
|
cw.svc = cloudwatch.New(s)
|
|
cw.shardMetrics = new(sync.Map)
|
|
|
|
stopChan := make(chan struct{})
|
|
cw.stop = &stopChan
|
|
wg := sync.WaitGroup{}
|
|
cw.waitGroup = &wg
|
|
|
|
return nil
|
|
}
|
|
|
|
func (cw *CloudWatchMonitoringService) Start() error {
|
|
cw.waitGroup.Add(1)
|
|
// entering eventloop for sending metrics to CloudWatch
|
|
go cw.eventloop()
|
|
return nil
|
|
}
|
|
|
|
func (cw *CloudWatchMonitoringService) Shutdown() {
|
|
cw.Logger.Infof("Shutting down cloudwatch metrics system...")
|
|
close(*cw.stop)
|
|
cw.waitGroup.Wait()
|
|
cw.Logger.Infof("Cloudwatch metrics system has been shutdown.")
|
|
}
|
|
|
|
// Start daemon to flush metrics periodically
|
|
func (cw *CloudWatchMonitoringService) eventloop() {
|
|
defer cw.waitGroup.Done()
|
|
|
|
for {
|
|
if err := cw.flush(); err != nil {
|
|
cw.Logger.Errorf("Error sending metrics to CloudWatch. %+v", err)
|
|
}
|
|
|
|
select {
|
|
case <-*cw.stop:
|
|
cw.Logger.Infof("Shutting down monitoring system")
|
|
if err := cw.flush(); err != nil {
|
|
cw.Logger.Errorf("Error sending metrics to CloudWatch. %+v", err)
|
|
}
|
|
return
|
|
case <-time.After(time.Duration(cw.MetricsBufferTimeMillis) * time.Millisecond):
|
|
}
|
|
}
|
|
}
|
|
|
|
func (cw *CloudWatchMonitoringService) flushShard(shard string, metric *cloudWatchMetrics) bool {
|
|
metric.Lock()
|
|
defaultDimensions := []*cloudwatch.Dimension{
|
|
{
|
|
Name: aws.String("Shard"),
|
|
Value: &shard,
|
|
},
|
|
{
|
|
Name: aws.String("KinesisStreamName"),
|
|
Value: &cw.KinesisStream,
|
|
},
|
|
}
|
|
|
|
leaseDimensions := []*cloudwatch.Dimension{
|
|
{
|
|
Name: aws.String("Shard"),
|
|
Value: &shard,
|
|
},
|
|
{
|
|
Name: aws.String("KinesisStreamName"),
|
|
Value: &cw.KinesisStream,
|
|
},
|
|
{
|
|
Name: aws.String("WorkerID"),
|
|
Value: &cw.WorkerID,
|
|
},
|
|
}
|
|
metricTimestamp := time.Now()
|
|
|
|
data := []*cloudwatch.MetricDatum{
|
|
{
|
|
Dimensions: defaultDimensions,
|
|
MetricName: aws.String("RecordsProcessed"),
|
|
Unit: aws.String("Count"),
|
|
Timestamp: &metricTimestamp,
|
|
Value: aws.Float64(float64(metric.processedRecords)),
|
|
},
|
|
{
|
|
Dimensions: defaultDimensions,
|
|
MetricName: aws.String("DataBytesProcessed"),
|
|
Unit: aws.String("Bytes"),
|
|
Timestamp: &metricTimestamp,
|
|
Value: aws.Float64(float64(metric.processedBytes)),
|
|
},
|
|
{
|
|
Dimensions: leaseDimensions,
|
|
MetricName: aws.String("RenewLease.Success"),
|
|
Unit: aws.String("Count"),
|
|
Timestamp: &metricTimestamp,
|
|
Value: aws.Float64(float64(metric.leaseRenewals)),
|
|
},
|
|
{
|
|
Dimensions: leaseDimensions,
|
|
MetricName: aws.String("CurrentLeases"),
|
|
Unit: aws.String("Count"),
|
|
Timestamp: &metricTimestamp,
|
|
Value: aws.Float64(float64(metric.leasesHeld)),
|
|
},
|
|
}
|
|
|
|
if len(metric.behindLatestMillis) > 0 {
|
|
data = append(data, &cloudwatch.MetricDatum{
|
|
Dimensions: defaultDimensions,
|
|
MetricName: aws.String("MillisBehindLatest"),
|
|
Unit: aws.String("Milliseconds"),
|
|
Timestamp: &metricTimestamp,
|
|
StatisticValues: &cloudwatch.StatisticSet{
|
|
SampleCount: aws.Float64(float64(len(metric.behindLatestMillis))),
|
|
Sum: sumFloat64(metric.behindLatestMillis),
|
|
Maximum: maxFloat64(metric.behindLatestMillis),
|
|
Minimum: minFloat64(metric.behindLatestMillis),
|
|
}})
|
|
}
|
|
|
|
if len(metric.getRecordsTime) > 0 {
|
|
data = append(data, &cloudwatch.MetricDatum{
|
|
Dimensions: defaultDimensions,
|
|
MetricName: aws.String("KinesisDataFetcher.getRecords.Time"),
|
|
Unit: aws.String("Milliseconds"),
|
|
Timestamp: &metricTimestamp,
|
|
StatisticValues: &cloudwatch.StatisticSet{
|
|
SampleCount: aws.Float64(float64(len(metric.getRecordsTime))),
|
|
Sum: sumFloat64(metric.getRecordsTime),
|
|
Maximum: maxFloat64(metric.getRecordsTime),
|
|
Minimum: minFloat64(metric.getRecordsTime),
|
|
}})
|
|
}
|
|
|
|
if len(metric.processRecordsTime) > 0 {
|
|
data = append(data, &cloudwatch.MetricDatum{
|
|
Dimensions: defaultDimensions,
|
|
MetricName: aws.String("RecordProcessor.processRecords.Time"),
|
|
Unit: aws.String("Milliseconds"),
|
|
Timestamp: &metricTimestamp,
|
|
StatisticValues: &cloudwatch.StatisticSet{
|
|
SampleCount: aws.Float64(float64(len(metric.processRecordsTime))),
|
|
Sum: sumFloat64(metric.processRecordsTime),
|
|
Maximum: maxFloat64(metric.processRecordsTime),
|
|
Minimum: minFloat64(metric.processRecordsTime),
|
|
}})
|
|
}
|
|
|
|
// Publish metrics data to cloud watch
|
|
_, err := cw.svc.PutMetricData(&cloudwatch.PutMetricDataInput{
|
|
Namespace: aws.String(cw.Namespace),
|
|
MetricData: data,
|
|
})
|
|
|
|
if err == nil {
|
|
metric.processedRecords = 0
|
|
metric.processedBytes = 0
|
|
metric.behindLatestMillis = []float64{}
|
|
metric.leaseRenewals = 0
|
|
metric.getRecordsTime = []float64{}
|
|
metric.processRecordsTime = []float64{}
|
|
} else {
|
|
cw.Logger.Errorf("Error in publishing cloudwatch metrics. Error: %+v", err)
|
|
}
|
|
|
|
metric.Unlock()
|
|
return true
|
|
}
|
|
|
|
func (cw *CloudWatchMonitoringService) flush() error {
|
|
cw.Logger.Debugf("Flushing metrics data. Stream: %s, Worker: %s", cw.KinesisStream, cw.WorkerID)
|
|
// publish per shard metrics
|
|
cw.shardMetrics.Range(func(k, v interface{}) bool {
|
|
shard, metric := k.(string), v.(*cloudWatchMetrics)
|
|
return cw.flushShard(shard, metric)
|
|
})
|
|
|
|
return nil
|
|
}
|
|
|
|
func (cw *CloudWatchMonitoringService) IncrRecordsProcessed(shard string, count int) {
|
|
m := cw.getOrCreatePerShardMetrics(shard)
|
|
m.Lock()
|
|
defer m.Unlock()
|
|
m.processedRecords += int64(count)
|
|
}
|
|
|
|
func (cw *CloudWatchMonitoringService) IncrBytesProcessed(shard string, count int64) {
|
|
m := cw.getOrCreatePerShardMetrics(shard)
|
|
m.Lock()
|
|
defer m.Unlock()
|
|
m.processedBytes += count
|
|
}
|
|
|
|
func (cw *CloudWatchMonitoringService) MillisBehindLatest(shard string, millSeconds float64) {
|
|
m := cw.getOrCreatePerShardMetrics(shard)
|
|
m.Lock()
|
|
defer m.Unlock()
|
|
m.behindLatestMillis = append(m.behindLatestMillis, millSeconds)
|
|
}
|
|
|
|
func (cw *CloudWatchMonitoringService) LeaseGained(shard string) {
|
|
m := cw.getOrCreatePerShardMetrics(shard)
|
|
m.Lock()
|
|
defer m.Unlock()
|
|
m.leasesHeld++
|
|
}
|
|
|
|
func (cw *CloudWatchMonitoringService) LeaseLost(shard string) {
|
|
m := cw.getOrCreatePerShardMetrics(shard)
|
|
m.Lock()
|
|
defer m.Unlock()
|
|
m.leasesHeld--
|
|
}
|
|
|
|
func (cw *CloudWatchMonitoringService) LeaseRenewed(shard string) {
|
|
m := cw.getOrCreatePerShardMetrics(shard)
|
|
m.Lock()
|
|
defer m.Unlock()
|
|
m.leaseRenewals++
|
|
}
|
|
|
|
func (cw *CloudWatchMonitoringService) RecordGetRecordsTime(shard string, time float64) {
|
|
m := cw.getOrCreatePerShardMetrics(shard)
|
|
m.Lock()
|
|
defer m.Unlock()
|
|
m.getRecordsTime = append(m.getRecordsTime, time)
|
|
}
|
|
func (cw *CloudWatchMonitoringService) RecordProcessRecordsTime(shard string, time float64) {
|
|
m := cw.getOrCreatePerShardMetrics(shard)
|
|
m.Lock()
|
|
defer m.Unlock()
|
|
m.processRecordsTime = append(m.processRecordsTime, time)
|
|
}
|
|
|
|
func (cw *CloudWatchMonitoringService) getOrCreatePerShardMetrics(shard string) *cloudWatchMetrics {
|
|
var i interface{}
|
|
var ok bool
|
|
if i, ok = cw.shardMetrics.Load(shard); !ok {
|
|
m := &cloudWatchMetrics{}
|
|
cw.shardMetrics.Store(shard, m)
|
|
return m
|
|
}
|
|
|
|
return i.(*cloudWatchMetrics)
|
|
}
|
|
|
|
func sumFloat64(slice []float64) *float64 {
|
|
sum := float64(0)
|
|
for _, num := range slice {
|
|
sum += num
|
|
}
|
|
return &sum
|
|
}
|
|
|
|
func maxFloat64(slice []float64) *float64 {
|
|
if len(slice) < 1 {
|
|
return aws.Float64(0)
|
|
}
|
|
max := slice[0]
|
|
for _, num := range slice {
|
|
if num > max {
|
|
max = num
|
|
}
|
|
}
|
|
return &max
|
|
}
|
|
|
|
func minFloat64(slice []float64) *float64 {
|
|
if len(slice) < 1 {
|
|
return aws.Float64(0)
|
|
}
|
|
min := slice[0]
|
|
for _, num := range slice {
|
|
if num < min {
|
|
min = num
|
|
}
|
|
}
|
|
return &min
|
|
}
|