forked from flyteorg/flytekit
-
Notifications
You must be signed in to change notification settings - Fork 0
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
flytekit metrics note #1
Comments
what is WorkflowExecutionIdentifier, NodeExecutionIdentifier and TaskExecutionIdentifier? // Encapsulation of fields that uniquely identifies a Flyte workflow execution
message WorkflowExecutionIdentifier {
// Name of the project the resource belongs to.
string project = 1;
// Name of the domain the resource belongs to.
// A domain can be considered as a subset within a specific project.
string domain = 2;
// User or system provided value for the resource.
string name = 4;
}
// Encapsulation of fields that identify a Flyte node execution entity.
message NodeExecutionIdentifier {
string node_id = 1;
WorkflowExecutionIdentifier execution_id = 2;
}
// Encapsulation of fields that identify a Flyte task execution entity.
message TaskExecutionIdentifier {
core.Identifier task_id = 1;
core.NodeExecutionIdentifier node_execution_id = 2;
uint32 retry_attempt = 3;
}
// Encapsulation of fields that uniquely identifies a Flyte resource.
message Identifier {
// Identifies the specific type of resource that this identifier corresponds to.
core.ResourceType resource_type = 1;
// Name of the project the resource belongs to.
string project = 2;
// Name of the domain the resource belongs to.
// A domain can be considered as a subset within a specific project.
string domain = 3;
// User provided value for the resource.
string name = 4;
// Specific version of the resource.
string version = 5;
}
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Current frame work:
flyteorg/flyte#3272
propeller:
https://github.com/flyteorg/flytepropeller/blob/f4cadb0062320086096306c8d6e5a1e412090ef8/events/admin_eventsink.go#LL43C1-L43C1
flyteidl:
https://github.com/flyteorg/flyteidl/pull/367/files
flyteadmin:
https://github.com/flyteorg/flyteadmin/pull/524/files
receive event. reportedAt
https://github.com/flyteorg/flyteadmin/blob/master/pkg/manager/impl/metrics_manager.go
flyteconsole:
https://github.com/flyteorg/flyteconsole/pull/747/files
The text was updated successfully, but these errors were encountered: