We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00fc9cb commit a0a6d9cCopy full SHA for a0a6d9c
README.md
@@ -90,9 +90,10 @@ public class Startup
90
p.DefaultTags.Add("tier", "dev");
91
}
92
)
93
- // by default, common metric sources are added
+ // add common metric sources
94
// that includes ProcessMetricSource, AspNetMetricSource & RuntimeMetricSource
95
- // here we add our application-specific metric source
+ .AddDefaultSources()
96
+ // and then add our application-specific metric source
97
.AddSource<AppMetricSource>()
98
// add endpoints we care about. By default we add a `LocalMetricHandler` that
99
// just maintains the latest metrics in memory (useful for debugging)
0 commit comments