-
Notifications
You must be signed in to change notification settings - Fork 370
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
Prometheus metrics: Change summary type metrics to histogram type metrics. #905
Labels
good first issue
Good for newcomers
Comments
There are only three Antrea controller metrics that need to be changed to histogram type: |
I posted the intention of this change in Slack and google groups, and there were no concerns. |
srikartati
changed the title
Change summary type metrics to histogram type metrics.
Prometheus metrics: Change summary type metrics to histogram type metrics.
Jul 20, 2020
dreamtalen
pushed a commit
to dreamtalen/antrea
that referenced
this issue
Sep 2, 2020
Resolves issue: antrea-io#905 The summary types are tagged for deprecation, Kubernetes recommended to use histograms instead of summaries. The main advantages of histogram types are aggregation and inexpensive. In this commit, we changed three Antrea controller metrics from summary to histogram type. They are DurationAppliedToGroupSyncing, DurationAddressGroupSyncing, and DurationInternalNetworkPolicySyncing.
dreamtalen
pushed a commit
to dreamtalen/antrea
that referenced
this issue
Sep 10, 2020
Resolves issue: antrea-io#905 The summary types are tagged for deprecation, Kubernetes recommended to use histograms instead of summaries. The main advantages of histogram types are aggregation and inexpensive. In this commit, we changed three Antrea controller metrics from summary to histogram type. They are DurationAppliedToGroupSyncing, DurationAddressGroupSyncing, and DurationInternalNetworkPolicySyncing.
dreamtalen
pushed a commit
to dreamtalen/antrea
that referenced
this issue
Sep 11, 2020
Resolves issue: antrea-io#905 The summary types are tagged for deprecation, Kubernetes recommended to use histograms instead of summaries. The main advantages of histogram types are aggregation and inexpensive. In this commit, we changed three Antrea controller metrics from summary to histogram type. They are DurationAppliedToGroupSyncing, DurationAddressGroupSyncing, and DurationInternalNetworkPolicySyncing.
dreamtalen
pushed a commit
to dreamtalen/antrea
that referenced
this issue
Sep 11, 2020
The summary types are tagged for deprecation, Kubernetes recommended to use histograms instead of summaries. The main advantages of histogram types are aggregation and inexpensive. In this commit, we changed three Antrea controller metrics from summary to histogram type. They are DurationAppliedToGroupSyncing, DurationAddressGroupSyncing, and DurationInternalNetworkPolicySyncing. Fixes antrea-io#905
srikartati
pushed a commit
that referenced
this issue
Sep 14, 2020
The summary types are tagged for deprecation, Kubernetes recommended to use histograms instead of summaries. The main advantages of histogram types are aggregation and inexpensive. In this commit, we changed three Antrea controller metrics from summary to histogram type. They are DurationAppliedToGroupSyncing, DurationAddressGroupSyncing, and DurationInternalNetworkPolicySyncing. Fixes #905 Co-authored-by: Yongming Ding <dyongming@vmware.com>
GraysonWu
pushed a commit
to GraysonWu/antrea
that referenced
this issue
Sep 22, 2020
) The summary types are tagged for deprecation, Kubernetes recommended to use histograms instead of summaries. The main advantages of histogram types are aggregation and inexpensive. In this commit, we changed three Antrea controller metrics from summary to histogram type. They are DurationAppliedToGroupSyncing, DurationAddressGroupSyncing, and DurationInternalNetworkPolicySyncing. Fixes antrea-io#905 Co-authored-by: Yongming Ding <dyongming@vmware.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There are summary/summary vector type metrics in Antrea. As per Kubernetes metric overhaul, it is recommended to use histograms instead of summaries. And the summary types are tagged for deprecation.
The main advantages of histogram types are aggregation and inexpensive.
The text was updated successfully, but these errors were encountered: