Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Metrics docs #948

Closed
rogeralsing opened this issue Apr 30, 2021 · 2 comments
Closed

Metrics docs #948

rogeralsing opened this issue Apr 30, 2021 · 2 comments

Comments

@rogeralsing
Copy link
Contributor

rogeralsing commented Apr 30, 2021

ThreadPoolLatencyHistogram = metrics.CreateHistogram("protoactor_threadpool_latency_duration_seconds", "", "id", "address");

DeadletterCount = metrics.CreateCount("protoactor_deadletter_count", "", "id", "address", "messagetype");

ActorSpawnCount = metrics.CreateCount("protoactor_actor_spawn_count", "", "id", "address", "actortype");

ActorStoppedCount = metrics.CreateCount("protoactor_actor_stopped_count", "", "id", "address", "actortype");

ActorRestartedCount = metrics.CreateCount("protoactor_actor_restarted_count", "", "id", "address", "actortype");

ActorFailureCount = metrics.CreateCount("protoactor_actor_failure_count", "", "id", "address", "actortype");

ActorMailboxLength = metrics.CreateGauge("protoactor_actor_mailbox_length", "", "id", "address", "actortype");

ActorMessageReceiveHistogram = metrics.CreateHistogram("protoactor_actor_messagereceive_duration_seconds", "", "id", "address","actortype", "messagetype");

FuturesStartedCount = metrics.CreateCount("protoactor_future_started_count", "", "id", "address");

FuturesTimedOutCount = metrics.CreateCount("protoactor_future_timedout_count", "", "id", "address");

FuturesCompletedCount = metrics.CreateCount("protoactor_future_completed_count", "", "id", "address");

@rogeralsing
Copy link
Contributor Author

rogeralsing commented Apr 30, 2021

RemoteSerializedMessageCount = metrics.CreateCount("protoremote_message_serialize_count", "", "id", "address", "messagetype");

RemoteDeserializedMessageCount = metrics.CreateCount("protoremote_message_deserialize_count", "", "id", "address", "messagetype");

RemoteKindCount = metrics.CreateCount("protoremote_kind_count", "", "id", "address");

RemoteActorSpawnCount = metrics.CreateCount("protoremote_spawn_count", "", "id", "address", "kind");

RemoteEndpointConnectedCount = metrics.CreateCount("protoremote_endpoint_connected_count", "", "id", "address", "destinationaddress");

RemoteEndpointDisconnectedCount =
metrics.CreateCount("protoremote_endpoint_disconnected_count", "", "id", "address", "destinationaddress");

@rogeralsing
Copy link
Contributor Author

rogeralsing commented Apr 30, 2021

ClusterActorGauge = metrics.CreateGauge("protocluster_virtualactors", "", "id", "address", "clusterkind");

ClusterActorSpawnHistogram =
metrics.CreateHistogram("protocluster_virtualactor_spawn_duration_seconds", "", "id", "address", "clusterkind");

ClusterRequestHistogram = metrics.CreateHistogram("protocluster_virtualactor_requestasync_duration_seconds", "", "id", "address", "clusterkind", "messagetype", "pidsource");

ClusterRequestRetryCount = metrics.CreateCount("protocluster_virtualactor_requestasync_retry_count", "", "id", "address", "clusterkind","messagetype");

ClusterTopologyEventGauge = metrics.CreateGauge("protocluster_topology_events", "", "id", "address", "membershiphashcode");

ClusterResolvePidHistogram =
metrics.CreateHistogram("protocluster_resolve_pid_duration_seconds", "", "id", "address", "clusterkind");

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant