Row
প্রতিটি সারির জন্য ডেটা রিপোর্ট করুন। উদাহরণস্বরূপ যদি RunReportRequest এ থাকে:
"dimensions": [
{
"name": "eventName"
},
{
"name": "countryId"
}
],
"metrics": [
{
"name": "eventCount"
}
]
ইভেন্টের নাম হিসাবে 'in_app_purchase' সহ একটি সারি, countryId হিসাবে 'JP' এবং ইভেন্টকাউন্ট হিসাবে 15টি হবে:
"dimensionValues": [
{
"value": "in_app_purchase"
},
{
"value": "JP"
}
],
"metricValues": [
{
"value": "15"
}
]
ক্ষেত্র |
---|
dimensionValues[] | object ( DimensionValue ) অনুরোধ করা মাত্রা মান তালিকা. একটি PivotReport-এ, মাত্রার মানগুলি শুধুমাত্র একটি পিভটে অন্তর্ভুক্ত মাত্রার জন্য তালিকাভুক্ত করা হয়। |
metricValues[] | object ( MetricValue ) অনুরোধ করা দৃশ্যমান মেট্রিক মানগুলির তালিকা৷ |
মেট্রিক ভ্যালু
JSON প্রতিনিধিত্ব |
---|
{
// Union field one_value can be only one of the following:
"value": string
// End of list of possible types for union field one_value .
} |
ক্ষেত্র |
---|
ইউনিয়ন ক্ষেত্র one_value । মেট্রিক মানের একটি one_value নিম্নলিখিতগুলির মধ্যে একটি হতে পারে: |
value | string পরিমাপ মান। প্রকারের জন্য মেট্রিক হেডার দেখুন। |
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট Creative Commons Attribution 4.0 License-এর অধীনে এবং কোডের নমুনাগুলি Apache 2.0 License-এর অধীনে লাইসেন্স প্রাপ্ত। আরও জানতে, Google Developers সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-01-06 UTC-তে শেষবার আপডেট করা হয়েছে।
[null,null,["2025-01-06 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["Report data is structured in rows, with each row containing dimension values and corresponding metric values."],["Dimension values represent categories or attributes, like 'eventName' or 'countryId', while metric values represent quantitative data, like 'eventCount'."],["The structure of the report allows for flexible data exploration by combining different dimensions and metrics."],["Metric values can be of various types, including but not limited to string type and are stored under the 'one_value' field as a 'value' entry."]]],["The document outlines data structures for reporting, using JSON. A row contains `dimensionValues` and `metricValues`. `dimensionValues` lists dimension data, while `metricValues` shows metric data. For example, with dimensions like `eventName` and `countryId`, and a metric like `eventCount`, a row might show \"in_app_purchase\" (event), \"JP\" (country), and \"15\" (count). `MetricValue` stores a metric's value as a string. A `MetricValue` can only contain one value, as specified in the union `one_value`.\n"]]