Skip to content
This repository has been archived by the owner on Oct 9, 2023. It is now read-only.

Add endpoint exposing runtime metrics #524

Merged
merged 29 commits into from
Mar 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
a221f4c
metrics manager working for task nodes
hamersaw Feb 15, 2023
b49bc56
dynamic tasks working
hamersaw Feb 15, 2023
2a1a0e3
subworkflow node working
hamersaw Feb 16, 2023
06bccf0
refactored to allow branch and gate node parsing
hamersaw Feb 17, 2023
bc7ce54
added node transition times
hamersaw Feb 17, 2023
87c232b
sorting node and task executions
hamersaw Feb 17, 2023
dbe0dfe
added metrics metrics ... inception
hamersaw Feb 17, 2023
241f6d8
fixed duplicate metrics
hamersaw Feb 17, 2023
40f5387
branch node working?
hamersaw Feb 17, 2023
779faa1
implemented gate node
hamersaw Feb 17, 2023
31d0424
working with partial completions and failures and cache hits
hamersaw Feb 21, 2023
beac75c
added unit tests
hamersaw Feb 23, 2023
b373ddc
fixed most lint issues
hamersaw Feb 23, 2023
f2adc24
fixed lint issues
hamersaw Feb 23, 2023
dd46a55
added docs
hamersaw Feb 23, 2023
b5ebd32
updated flyteidl dependency
hamersaw Feb 23, 2023
7a4b392
fixed unit tests
hamersaw Feb 23, 2023
4797f9b
chnaged to local flyteidl for testing
hamersaw Feb 24, 2023
40d9a0a
using task event reported_at timestamps for updated_at in task execut…
hamersaw Feb 24, 2023
a99cb87
updated flyteidl
hamersaw Feb 28, 2023
9d83a0a
fixed lint issues
hamersaw Feb 28, 2023
fc97d72
using reported_at for node executions
hamersaw Mar 2, 2023
051645f
Merge branch 'master' into feature/runtime-metrics
hamersaw Mar 17, 2023
46f0691
updated flyteidl
hamersaw Mar 17, 2023
a81e931
fixes unit tests and lint issues
hamersaw Mar 17, 2023
c8d206a
updated flyteidl
hamersaw Mar 21, 2023
666098f
Merge branch 'master' into feature/runtime-metrics
hamersaw Mar 22, 2023
047f18f
bumped flyteidl deps
hamersaw Mar 22, 2023
a4a2330
using consts for start-node and end-node
hamersaw Mar 27, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ require (
github.com/cloudevents/sdk-go/v2 v2.8.0
github.com/coreos/go-oidc v2.2.1+incompatible
github.com/evanphx/json-patch v4.12.0+incompatible
github.com/flyteorg/flyteidl v1.3.13
github.com/flyteorg/flyteidl v1.3.14
github.com/flyteorg/flyteplugins v1.0.40
github.com/flyteorg/flytepropeller v1.1.70
github.com/flyteorg/flytestdlib v1.0.15
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -312,8 +312,8 @@ github.com/fatih/structs v1.0.0/go.mod h1:9NiDSp5zOcgEDl+j00MP/WkGVPOlPRLejGD8Ga
github.com/fatih/structs v1.1.0/go.mod h1:9NiDSp5zOcgEDl+j00MP/WkGVPOlPRLejGD8Ga6PJ7M=
github.com/felixge/httpsnoop v1.0.1 h1:lvB5Jl89CsZtGIWuTcDM1E/vkVs49/Ml7JJe07l8SPQ=
github.com/felixge/httpsnoop v1.0.1/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U=
github.com/flyteorg/flyteidl v1.3.13 h1:jOjiHl6jmSCOGC094QaRdSjjhThhzYPm0jHSxwAZ6UM=
github.com/flyteorg/flyteidl v1.3.13/go.mod h1:Pkt2skI1LiHs/2ZoekBnyPhuGOFMiuul6HHcKGZBsbM=
github.com/flyteorg/flyteidl v1.3.14 h1:o5M0g/r6pXTPu5PEurbYxbQmuOu3hqqsaI2M6uvK0N8=
github.com/flyteorg/flyteidl v1.3.14/go.mod h1:Pkt2skI1LiHs/2ZoekBnyPhuGOFMiuul6HHcKGZBsbM=
github.com/flyteorg/flyteplugins v1.0.40 h1:RTsYingqmqr13qBbi4CB2ArXDHNHUOkAF+HTLJQiQ/s=
github.com/flyteorg/flyteplugins v1.0.40/go.mod h1:qyUPqVspLcLGJpKxVwHDWf+kBpOGuItOxCaF6zAmDio=
github.com/flyteorg/flytepropeller v1.1.70 h1:/d1qqz13rdVADM85ST70eerAdBstJJz9UUB/mNSZi0w=
Expand Down
Loading