2021-06-28 13:20:23 +00:00
|
|
|
package metrics
|
|
|
|
|
|
|
|
import (
|
2021-10-30 23:19:03 +00:00
|
|
|
"context"
|
|
|
|
|
|
|
|
logging "github.com/ipfs/go-log"
|
2021-06-28 13:20:23 +00:00
|
|
|
"go.opencensus.io/stats"
|
|
|
|
"go.opencensus.io/stats/view"
|
|
|
|
"go.opencensus.io/tag"
|
|
|
|
)
|
|
|
|
|
2021-10-30 23:19:03 +00:00
|
|
|
var log = logging.Logger("metrics")
|
|
|
|
|
2021-06-28 13:20:23 +00:00
|
|
|
var (
|
2021-10-16 21:50:49 +00:00
|
|
|
Messages = stats.Int64("node_messages", "Number of messages received", stats.UnitDimensionless)
|
|
|
|
Peers = stats.Int64("peers", "Number of connected peers", stats.UnitDimensionless)
|
|
|
|
Dials = stats.Int64("dials", "Number of peer dials", stats.UnitDimensionless)
|
2021-06-28 13:20:23 +00:00
|
|
|
StoreMessages = stats.Int64("store_messages", "Number of historical messages", stats.UnitDimensionless)
|
|
|
|
FilterSubscriptions = stats.Int64("filter_subscriptions", "Number of filter subscriptions", stats.UnitDimensionless)
|
2021-10-30 23:19:03 +00:00
|
|
|
StoreErrors = stats.Int64("errors", "Number of errors in store protocol", stats.UnitDimensionless)
|
|
|
|
LightpushErrors = stats.Int64("errors", "Number of errors in lightpush protocol", stats.UnitDimensionless)
|
2021-06-28 13:20:23 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2021-10-30 23:19:03 +00:00
|
|
|
KeyType, _ = tag.NewKey("type")
|
|
|
|
ErrorType, _ = tag.NewKey("error_type")
|
2021-06-28 13:20:23 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2021-10-16 21:50:49 +00:00
|
|
|
PeersView = &view.View{
|
|
|
|
Name: "gowaku_connected_peers",
|
|
|
|
Measure: Peers,
|
|
|
|
Description: "Number of connected peers",
|
|
|
|
Aggregation: view.Sum(),
|
|
|
|
}
|
|
|
|
DialsView = &view.View{
|
|
|
|
Name: "gowaku_peers_dials",
|
|
|
|
Measure: Dials,
|
|
|
|
Description: "Number of peer dials",
|
|
|
|
Aggregation: view.Count(),
|
|
|
|
}
|
|
|
|
MessageView = &view.View{
|
|
|
|
Name: "gowaku_node_messages",
|
2021-06-28 13:20:23 +00:00
|
|
|
Measure: Messages,
|
2021-10-16 21:50:49 +00:00
|
|
|
Description: "The number of the messages received",
|
2021-06-28 13:20:23 +00:00
|
|
|
Aggregation: view.Count(),
|
|
|
|
}
|
2021-10-16 21:50:49 +00:00
|
|
|
StoreMessagesView = &view.View{
|
|
|
|
Name: "gowaku_store_messages",
|
2021-06-28 13:20:23 +00:00
|
|
|
Measure: StoreMessages,
|
|
|
|
Description: "The distribution of the store protocol messages",
|
|
|
|
Aggregation: view.LastValue(),
|
2021-10-30 23:19:03 +00:00
|
|
|
TagKeys: []tag.Key{KeyType},
|
2021-06-28 13:20:23 +00:00
|
|
|
}
|
|
|
|
FilterSubscriptionsView = &view.View{
|
2021-10-16 21:50:49 +00:00
|
|
|
Name: "gowaku_filter_subscriptions",
|
2021-06-28 13:20:23 +00:00
|
|
|
Measure: FilterSubscriptions,
|
|
|
|
Description: "The number of content filter subscriptions",
|
|
|
|
Aggregation: view.LastValue(),
|
|
|
|
}
|
|
|
|
StoreErrorTypesView = &view.View{
|
2021-10-16 21:50:49 +00:00
|
|
|
Name: "gowaku_store_errors",
|
2021-10-30 23:19:03 +00:00
|
|
|
Measure: StoreErrors,
|
2021-06-28 13:20:23 +00:00
|
|
|
Description: "The distribution of the store protocol errors",
|
|
|
|
Aggregation: view.Count(),
|
|
|
|
TagKeys: []tag.Key{KeyType},
|
|
|
|
}
|
2021-10-30 23:19:03 +00:00
|
|
|
LightpushErrorTypesView = &view.View{
|
|
|
|
Name: "gowaku_lightpush_errors",
|
|
|
|
Measure: LightpushErrors,
|
|
|
|
Description: "The distribution of the lightpush protocol errors",
|
|
|
|
Aggregation: view.Count(),
|
|
|
|
TagKeys: []tag.Key{KeyType},
|
|
|
|
}
|
2021-06-28 13:20:23 +00:00
|
|
|
)
|
2021-10-30 23:19:03 +00:00
|
|
|
|
|
|
|
func RecordLightpushError(ctx context.Context, tagType string) {
|
|
|
|
if err := stats.RecordWithTags(ctx, []tag.Mutator{tag.Insert(tag.Key(ErrorType), tagType)}, LightpushErrors.M(1)); err != nil {
|
|
|
|
log.Error("failed to record with tags", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func RecordMessage(ctx context.Context, tagType string, len int) {
|
|
|
|
if err := stats.RecordWithTags(ctx, []tag.Mutator{tag.Insert(KeyType, tagType)}, StoreMessages.M(int64(len))); err != nil {
|
|
|
|
log.Error("failed to record with tags", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func RecordStoreError(ctx context.Context, tagType string) {
|
|
|
|
if err := stats.RecordWithTags(ctx, []tag.Mutator{tag.Insert(ErrorType, tagType)}, StoreErrors.M(1)); err != nil {
|
|
|
|
log.Error("failed to record with tags", err)
|
|
|
|
}
|
|
|
|
}
|