package metrics import ( "os" "code.cloudfoundry.org/lager" "code.cloudfoundry.org/runtimeschema/metric" ) const ( bbsMasterElected = metric.Counter("BBSMasterElected") ) type PeriodicMetronNotifier struct { Logger lager.Logger } func NewPeriodicMetronNotifier(logger lager.Logger) *PeriodicMetronNotifier { return &PeriodicMetronNotifier{ Logger: logger, } } func (notifier PeriodicMetronNotifier) Run(signals <-chan os.Signal, ready chan<- struct{}) error { logger := notifier.Logger.Session("metrics-notifier") logger.Info("starting") close(ready) logger.Info("started") defer logger.Info("finished")
package middleware import ( "net/http" "time" "code.cloudfoundry.org/lager" "code.cloudfoundry.org/runtimeschema/metric" ) const ( requestLatency = metric.Duration("RequestLatency") requestCount = metric.Counter("RequestCount") ) type LoggableHandlerFunc func(logger lager.Logger, w http.ResponseWriter, r *http.Request) func LogWrap(logger, accessLogger lager.Logger, loggableHandlerFunc LoggableHandlerFunc) http.HandlerFunc { lagerDataFromReq := func(r *http.Request) lager.Data { return lager.Data{ "method": r.Method, "request": r.URL.String(), } } if accessLogger != nil { return func(w http.ResponseWriter, r *http.Request) { requestLog := logger.Session("request", lagerDataFromReq(r)) requestAccessLogger := accessLogger.Session("request", lagerDataFromReq(r)) requestAccessLogger.Info("serving")
"path" "sync" "sync/atomic" "time" "code.cloudfoundry.org/auctioneer" "code.cloudfoundry.org/bbs/models" "code.cloudfoundry.org/workpool" "code.cloudfoundry.org/clock" "code.cloudfoundry.org/lager" "code.cloudfoundry.org/runtimeschema/metric" ) const ( convergeLRPRunsCounter = metric.Counter("ConvergenceLRPRuns") convergeLRPDuration = metric.Duration("ConvergenceLRPDuration") malformedSchedulingInfosMetric = metric.Counter("ConvergenceLRPPreProcessingMalformedSchedulingInfos") malformedRunInfosMetric = metric.Counter("ConvergenceLRPPreProcessingMalformedRunInfos") actualLRPsDeleted = metric.Counter("ConvergenceLRPPreProcessingActualLRPsDeleted") orphanedRunInfosMetric = metric.Counter("ConvergenceLRPPreProcessingOrphanedRunInfos") desiredLRPs = metric.Metric("LRPsDesired") claimedLRPs = metric.Metric("LRPsClaimed") unclaimedLRPs = metric.Metric("LRPsUnclaimed") runningLRPs = metric.Metric("LRPsRunning") missingLRPs = metric.Metric("LRPsMissing") extraLRPs = metric.Metric("LRPsExtra")
package etcd import ( "time" "code.cloudfoundry.org/auctioneer" "code.cloudfoundry.org/bbs/models" "code.cloudfoundry.org/lager" "code.cloudfoundry.org/runtimeschema/metric" "code.cloudfoundry.org/workpool" ) const ( convergeTaskRunsCounter = metric.Counter("ConvergenceTaskRuns") convergeTaskDuration = metric.Duration("ConvergenceTaskDuration") tasksKickedCounter = metric.Counter("ConvergenceTasksKicked") tasksPrunedCounter = metric.Counter("ConvergenceTasksPruned") pendingTasks = metric.Metric("TasksPending") runningTasks = metric.Metric("TasksRunning") completedTasks = metric.Metric("TasksCompleted") resolvingTasks = metric.Metric("TasksResolving") ) type compareAndSwappableTask struct { OldIndex uint64 NewTask *models.Task } func (db *ETCDDB) ConvergeTasks(
"github.com/tedsuo/ifrit" "context" "code.cloudfoundry.org/clock" "code.cloudfoundry.org/lager" "code.cloudfoundry.org/runtimeschema/metric" "code.cloudfoundry.org/voldriver" "code.cloudfoundry.org/voldriver/driverhttp" "code.cloudfoundry.org/volman" "github.com/tedsuo/ifrit/grouper" "os" ) const ( volmanMountErrorsCounter = metric.Counter("VolmanMountErrors") volmanMountDuration = metric.Duration("VolmanMountDuration") volmanUnmountErrorsCounter = metric.Counter("VolmanUnmountErrors") volmanUnmountDuration = metric.Duration("VolmanUnmountDuration") ) var ( driverMountDurations = map[string]metric.Duration{} driverUnmountDurations = map[string]metric.Duration{} ) type DriverConfig struct { DriverPaths []string SyncInterval time.Duration }
"database/sql" "fmt" "strconv" "strings" "sync" "time" "code.cloudfoundry.org/auctioneer" "code.cloudfoundry.org/bbs/models" "code.cloudfoundry.org/lager" "code.cloudfoundry.org/runtimeschema/metric" "code.cloudfoundry.org/workpool" ) const ( convergeLRPRunsCounter = metric.Counter("ConvergenceLRPRuns") convergeLRPDuration = metric.Duration("ConvergenceLRPDuration") domainMetricPrefix = "Domain." instanceLRPs = metric.Metric("LRPsDesired") // this is the number of desired instances claimedLRPs = metric.Metric("LRPsClaimed") unclaimedLRPs = metric.Metric("LRPsUnclaimed") runningLRPs = metric.Metric("LRPsRunning") missingLRPs = metric.Metric("LRPsMissing") extraLRPs = metric.Metric("LRPsExtra") crashedActualLRPs = metric.Metric("CrashedActualLRPs") crashingDesiredLRPs = metric.Metric("CrashingDesiredLRPs") )