-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Generate metric data from PICT files #1414
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1414 +/- ##
==========================================
+ Coverage 90.28% 90.33% +0.05%
==========================================
Files 232 233 +1
Lines 16396 16447 +51
==========================================
+ Hits 14803 14858 +55
+ Misses 1136 1134 -2
+ Partials 457 455 -2
Continue to review full report at Codecov.
|
require.Equal(t, 19, len(mds)) | ||
} | ||
|
||
func TestPICTtoCfg0(t *testing.T) { |
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.
0 is intentional?
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.
Oops, that's vestigial. Fixed.
@@ -54,7 +54,7 @@ func DefaultCfg() MetricCfg { | |||
NumILMPerResource: 1, | |||
NumMetricsPerILM: 1, | |||
NumPtLabels: 1, | |||
NumPts: 1, | |||
NumPtsPerMetric: 1, |
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.
In the future, these kind of changes can be split in small trivial to review PRs :)
…rters/metric/prometheus (open-telemetry#1414) * Bump github.com/prometheus/client_golang in /exporters/metric/prometheus Bumps [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) from 1.8.0 to 1.9.0. - [Release notes](https://github.com/prometheus/client_golang/releases) - [Changelog](https://github.com/prometheus/client_golang/blob/master/CHANGELOG.md) - [Commits](prometheus/client_golang@v1.8.0...v1.9.0) Signed-off-by: dependabot[bot] <support@github.com> * Auto-fix go.sum changes in dependent modules Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <dependabot[bot]@users.noreply.github.com>
* Enable Cloud Foundry receiver The Cloud Foundry receiver has been enabled in the OpenTelementry Collector Contrib repository, and is now supported. This receiver should also be supported in the Splunk distribution. This change adds it as a dependency, adds it to the list of valid receivers, and adds a reference to documentation, and the CHANGELOG.
This is in support of issue #652 and in response to a request by the team to break a large PR into smaller chunks.
This change adds support for producing MetricData from generated PICT files.