-
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
Simplify interpretation of produced metrics #23
Open
Izzette
wants to merge
13
commits into
main
Choose a base branch
from
change-metric-spec
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
5942e0e
Simplify interpretation of produced metrics
Izzette cd29082
Update existing tests to use new fields
Izzette d3d39b6
Validate json schemas in-line
Izzette 5ef3f16
Dont lose my mind with pre-commit
Izzette 258f398
More changes to spec
Izzette 23533ea
Try out jsonschema2md
Izzette 342e57a
Remove binary added
Izzette e79fb84
Try json-schema-for-humans
Izzette 0ccbd51
Update schema doc
Izzette a0ecde0
Add json-schema-for-humans to pre-commit
Izzette 0d5cc08
Increase pre-commit timeout
Izzette c70e36d
Add metrics overview
Izzette d5b7db4
Update some metric titles
Izzette File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
@@ -13,6 +13,9 @@ type containerStatistic struct { | |||||||||
pod *podStatistic | ||||||||||
imagePull imagePullStatistic | ||||||||||
|
||||||||||
// Previous init container, null if first init container or non-init container | ||||||||||
previous *containerStatistic | ||||||||||
|
||||||||||
// The timestamp for when the container first turned Running. | ||||||||||
runningTimestamp time.Time | ||||||||||
|
||||||||||
|
@@ -46,21 +49,53 @@ func (cs containerStatistic) logger() zerolog.Logger { | |||||||||
Logger() | ||||||||||
} | ||||||||||
|
||||||||||
func (cs containerStatistic) appendInitFields(event *zerolog.Event) { | ||||||||||
if !cs.runningTimestamp.IsZero() && cs.previous != nil && !cs.previous.readyTimestamp.IsZero() { | ||||||||||
event.Dur("previous_to_running_seconds", cs.runningTimestamp.Sub(cs.previous.readyTimestamp)) | ||||||||||
} | ||||||||||
} | ||||||||||
|
||||||||||
func (cs containerStatistic) appendNonInitFields(event *zerolog.Event) { | ||||||||||
if !cs.runningTimestamp.IsZero() && !cs.pod.initializingTimestamp.IsZero() { | ||||||||||
event.Dur("initialized_to_running_seconds", cs.runningTimestamp.Sub(cs.pod.initializingTimestamp)) | ||||||||||
} | ||||||||||
} | ||||||||||
|
||||||||||
func (cs containerStatistic) event() *zerolog.Event { | ||||||||||
event := zerolog.Dict() | ||||||||||
|
||||||||||
event.Bool("init_container", cs.initContainer) | ||||||||||
if cs.initContainer { | ||||||||||
cs.appendInitFields(event) | ||||||||||
} else { | ||||||||||
cs.appendNonInitFields(event) | ||||||||||
} | ||||||||||
|
||||||||||
if !cs.runningTimestamp.IsZero() { | ||||||||||
event.Time("running_timestamp", cs.runningTimestamp) | ||||||||||
} | ||||||||||
if !cs.startedTimestamp.IsZero() { | ||||||||||
event.Float64("started_latency", | ||||||||||
cs.startedTimestamp.Sub(cs.pod.creationTimestamp).Seconds()) | ||||||||||
event.Time("started_timestamp", cs.startedTimestamp) | ||||||||||
if !cs.runningTimestamp.IsZero() { | ||||||||||
event.Dur("running_to_started_seconds", cs.startedTimestamp.Sub(cs.runningTimestamp)) | ||||||||||
} | ||||||||||
} | ||||||||||
if !cs.readyTimestamp.IsZero() { | ||||||||||
event.Float64("ready_latency", | ||||||||||
cs.readyTimestamp.Sub(cs.pod.creationTimestamp).Seconds()) | ||||||||||
} | ||||||||||
if !cs.runningTimestamp.IsZero() { | ||||||||||
event.Float64("running_latency", | ||||||||||
cs.runningTimestamp.Sub(cs.pod.creationTimestamp).Seconds()) | ||||||||||
event.Time("ready_timestamp", cs.readyTimestamp) | ||||||||||
|
||||||||||
// As init containers do not supported startup, liveliness, or readiness probes the Started container status field is | ||||||||||
// not set for init containers. | ||||||||||
// Instead, readiness represents the time an init container has excited successfully,allowing the following containers | ||||||||||
// to proceed. | ||||||||||
Comment on lines
+90
to
+91
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
// Given this, presenting both running_to_ready_seconds and started_to_ready_seconds is useful to cover the differing | ||||||||||
// meanings for both container types. | ||||||||||
// See: https://github.com/kubernetes/website/blob/b397a8f/content/en/docs/concepts/workloads/pods/init-containers.md | ||||||||||
if !cs.runningTimestamp.IsZero() { | ||||||||||
event.Dur("running_to_ready_seconds", cs.readyTimestamp.Sub(cs.runningTimestamp)) | ||||||||||
} | ||||||||||
if !cs.startedTimestamp.IsZero() { | ||||||||||
event.Dur("started_to_ready_seconds", cs.readyTimestamp.Sub(cs.runningTimestamp)) | ||||||||||
} | ||||||||||
} | ||||||||||
|
||||||||||
return event | ||||||||||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cs.runningTimeStamp
is always != nil ?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah, it's a
time.Time
not a pointer totime.Time
so it's thetime.Time
zero value until set, which is—I believe—the unix epoch.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So yes technically this code won't work before 1970
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(it was a joke, happy to see that someone read my comment 😀 )