@@ -1584,9 +1584,13 @@ template <> inline std::string toString(std::string t) { return t; }
1584
1584
1585
1585
template <> inline std::string toString (bool t) { return t ? " true" : " false" ; }
1586
1586
1587
- template <typename T> struct StringToStringView { typedef T type; };
1587
+ template <typename T> struct StringToStringView {
1588
+ typedef T type;
1589
+ };
1588
1590
1589
- template <> struct StringToStringView <std::string> { typedef std::string_view type; };
1591
+ template <> struct StringToStringView <std::string> {
1592
+ typedef std::string_view type;
1593
+ };
1590
1594
1591
1595
inline uint32_t MetricBase::resolveFullName (const std::string &n) {
1592
1596
auto it = metric_ids.find (n);
@@ -1712,9 +1716,9 @@ struct SimpleHistogram {
1712
1716
template <typename ... Tags> struct Counter : public MetricBase {
1713
1717
static Counter<Tags...> *New (std::string_view name, MetricTagDescriptor<Tags>... fieldnames);
1714
1718
1715
- Counter<Tags...>(std::string_view name, MetricTagDescriptor<Tags> ... descriptors)
1716
- : Counter<Tags...> (std::string( name), std::vector<MetricTag>({ toMetricTag (descriptors) ...})) {
1717
- }
1719
+ template < typename ... T>
1720
+ Counter (std::string_view name, MetricTagDescriptor<T> ... descriptors)
1721
+ : Counter<T...>(std::string(name), std::vector<MetricTag>({ toMetricTag (descriptors)...})) { }
1718
1722
1719
1723
SimpleCounter resolve (Tags... f) {
1720
1724
std::vector<std::string> fields{toString (f)...};
@@ -1763,8 +1767,9 @@ inline Counter<Tags...> *Counter<Tags...>::New(std::string_view name,
1763
1767
template <typename ... Tags> struct Gauge : public MetricBase {
1764
1768
static Gauge<Tags...> *New (std::string_view name, MetricTagDescriptor<Tags>... fieldnames);
1765
1769
1766
- Gauge<Tags...>(std::string_view name, MetricTagDescriptor<Tags>... descriptors)
1767
- : Gauge<Tags...>(std::string(name), std::vector<MetricTag>({toMetricTag (descriptors)...})) {}
1770
+ template <typename ... T>
1771
+ Gauge (std::string_view name, MetricTagDescriptor<T>... descriptors)
1772
+ : Gauge<T...>(std::string(name), std::vector<MetricTag>({toMetricTag (descriptors)...})) {}
1768
1773
1769
1774
SimpleGauge resolve (Tags... f) {
1770
1775
std::vector<std::string> fields{toString (f)...};
@@ -1809,9 +1814,9 @@ inline Gauge<Tags...> *Gauge<Tags...>::New(std::string_view name,
1809
1814
template <typename ... Tags> struct Histogram : public MetricBase {
1810
1815
static Histogram<Tags...> *New (std::string_view name, MetricTagDescriptor<Tags>... fieldnames);
1811
1816
1812
- Histogram<Tags...>(std::string_view name, MetricTagDescriptor<Tags> ... descriptors)
1813
- : Histogram<Tags...> (std::string( name),
1814
- std::vector<MetricTag>({toMetricTag (descriptors)...})) {}
1817
+ template < typename ... T>
1818
+ Histogram (std::string_view name, MetricTagDescriptor<T>... descriptors)
1819
+ : Histogram<T...>(std::string(name), std::vector<MetricTag>({toMetricTag (descriptors)...})) {}
1815
1820
1816
1821
SimpleHistogram resolve (Tags... f) {
1817
1822
std::vector<std::string> fields{toString (f)...};
0 commit comments