| James Hawkins | 6f28299 | 2016-03-22 14:13:06 -0700 | [diff] [blame] | 1 | /* | 
| James Hawkins | 9aec926 | 2017-01-31 11:42:24 -0800 | [diff] [blame] | 2 | * Copyright (C) 2017 The Android Open Source Project | 
| James Hawkins | 6f28299 | 2016-03-22 14:13:06 -0700 | [diff] [blame] | 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 |  | 
| James Hawkins | 9aec926 | 2017-01-31 11:42:24 -0800 | [diff] [blame] | 17 | #include "metricslogger/metrics_logger.h" | 
| James Hawkins | 6f28299 | 2016-03-22 14:13:06 -0700 | [diff] [blame] | 18 |  | 
|  | 19 | #include <cstdlib> | 
| Mark Salyzyn | ff2dcd9 | 2016-09-28 15:54:45 -0700 | [diff] [blame] | 20 |  | 
| Mark Salyzyn | 472245d | 2016-11-18 10:45:45 -0800 | [diff] [blame] | 21 | #include <log/log_event_list.h> | 
| Mark Salyzyn | ff2dcd9 | 2016-09-28 15:54:45 -0700 | [diff] [blame] | 22 |  | 
| James Hawkins | 9aec926 | 2017-01-31 11:42:24 -0800 | [diff] [blame] | 23 | namespace android { | 
|  | 24 | namespace metricslogger { | 
| James Hawkins | 6f28299 | 2016-03-22 14:13:06 -0700 | [diff] [blame] | 25 |  | 
|  | 26 | void LogHistogram(const std::string& event, int32_t data) { | 
| Mark Salyzyn | 472245d | 2016-11-18 10:45:45 -0800 | [diff] [blame] | 27 | android_log_event_list log(HISTOGRAM_LOG_TAG); | 
| Mark Salyzyn | 343b76e | 2016-10-19 10:51:25 -0700 | [diff] [blame] | 28 | log << event << data << LOG_ID_EVENTS; | 
| James Hawkins | 6f28299 | 2016-03-22 14:13:06 -0700 | [diff] [blame] | 29 | } | 
|  | 30 |  | 
| James Hawkins | 9aec926 | 2017-01-31 11:42:24 -0800 | [diff] [blame] | 31 | }  // namespace metricslogger | 
|  | 32 | }  // namespace android |