]> git.proxmox.com Git - ceph.git/blob - ceph/src/jaegertracing/jaeger-client-cpp/src/jaegertracing/LogRecord.cpp
buildsys: switch source download to quincy
[ceph.git] / ceph / src / jaegertracing / jaeger-client-cpp / src / jaegertracing / LogRecord.cpp
1 /*
2 * Copyright (c) 2017 Uber Technologies, Inc.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 #include "jaegertracing/LogRecord.h"
18 #include "jaegertracing/thrift-gen/jaeger_types.h"
19
20 namespace jaegertracing {
21 void LogRecord::thrift(thrift::Log& log) const
22 {
23 log.__set_timestamp(std::chrono::duration_cast<std::chrono::microseconds>(
24 _timestamp.time_since_epoch())
25 .count());
26
27 std::vector<thrift::Tag> fields;
28 fields.reserve(_fields.size());
29 std::transform(std::begin(_fields),
30 std::end(_fields),
31 std::back_inserter(fields),
32 [](const Tag& tag) {
33 thrift::Tag thriftTag;
34 tag.thrift(thriftTag);
35 return thriftTag;
36 });
37 log.__set_fields(fields);
38 }
39 } // namespace jaegertracing