@@ -83,7 +83,7 @@ namespace
83
83
};
84
84
85
85
std::string version = std::getenv(" VERSION" );
86
- std::string name{ " currencyservice " };
86
+ std::string name{ " currency " };
87
87
88
88
nostd::unique_ptr<metrics_api::Counter<uint64_t >> currency_counter;
89
89
nostd::shared_ptr<opentelemetry::logs::Logger> logger;
@@ -115,15 +115,15 @@ class CurrencyService final : public oteldemo::CurrencyService::Service
115
115
auto new_context = prop->Extract (carrier, current_ctx);
116
116
options.parent = GetSpan (new_context)->GetContext ();
117
117
118
- std::string span_name = " CurrencyService /GetSupportedCurrencies" ;
118
+ std::string span_name = " Currency /GetSupportedCurrencies" ;
119
119
auto span =
120
- get_tracer (" currencyservice " )->StartSpan (span_name,
120
+ get_tracer (" currency " )->StartSpan (span_name,
121
121
{{SemanticConventions::kRpcSystem , " grpc" },
122
122
{SemanticConventions::kRpcService , " oteldemo.CurrencyService" },
123
123
{SemanticConventions::kRpcMethod , " GetSupportedCurrencies" },
124
124
{SemanticConventions::kRpcGrpcStatusCode , 0 }},
125
125
options);
126
- auto scope = get_tracer (" currencyservice " )->WithActiveSpan (span);
126
+ auto scope = get_tracer (" currency " )->WithActiveSpan (span);
127
127
128
128
span->AddEvent (" Processing supported currencies request" );
129
129
@@ -176,15 +176,15 @@ class CurrencyService final : public oteldemo::CurrencyService::Service
176
176
auto new_context = prop->Extract (carrier, current_ctx);
177
177
options.parent = GetSpan (new_context)->GetContext ();
178
178
179
- std::string span_name = " CurrencyService /Convert" ;
179
+ std::string span_name = " Currency /Convert" ;
180
180
auto span =
181
- get_tracer (" currencyservice " )->StartSpan (span_name,
181
+ get_tracer (" currency " )->StartSpan (span_name,
182
182
{{SemanticConventions::kRpcSystem , " grpc" },
183
183
{SemanticConventions::kRpcService , " oteldemo.CurrencyService" },
184
184
{SemanticConventions::kRpcMethod , " Convert" },
185
185
{SemanticConventions::kRpcGrpcStatusCode , 0 }},
186
186
options);
187
- auto scope = get_tracer (" currencyservice " )->WithActiveSpan (span);
187
+ auto scope = get_tracer (" currency " )->WithActiveSpan (span);
188
188
189
189
span->AddEvent (" Processing currency conversion request" );
190
190
@@ -257,7 +257,7 @@ void RunServer(uint16_t port)
257
257
int main (int argc, char **argv) {
258
258
259
259
if (argc < 2 ) {
260
- std::cout << " Usage: currencyservice <port>" ;
260
+ std::cout << " Usage: currency <port>" ;
261
261
return 0 ;
262
262
}
263
263
0 commit comments