Google Analytics के लिए, एमसीपी सर्वर आज़माएं. इसे
GitHub से इंस्टॉल करें. साथ ही, ज़्यादा जानकारी के लिए
सूचना देखें.
Row
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
हर पंक्ति के लिए डेटा रिपोर्ट करें. उदाहरण के लिए, अगर RunReportRequest में ये शामिल हैं:
"dimensions": [
{
"name": "eventName"
},
{
"name": "countryId"
}
],
"metrics": [
{
"name": "eventCount"
}
]
eventName के तौर पर 'in_app_purchase', countryId के तौर पर 'JP', और eventCount के तौर पर 15 वाली एक लाइन इस तरह होगी:
"dimensionValues": [
{
"value": "in_app_purchase"
},
{
"value": "JP"
}
],
"metricValues": [
{
"value": "15"
}
]
फ़ील्ड |
dimensionValues[] |
object (DimensionValue )
अनुरोध की गई डाइमेंशन वैल्यू की सूची. पिवट रिपोर्ट में, डाइमेंशन वैल्यू सिर्फ़ उन डाइमेंशन के लिए दी जाती हैं जिन्हें पिवट में शामिल किया गया है.
|
metricValues[] |
object (MetricValue )
दिखाई गई मीट्रिक की वैल्यू की सूची.
|
DimensionValue
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
अगर डाइमेंशन टाइप स्ट्रिंग है, तो वैल्यू स्ट्रिंग के तौर पर.
|
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
मेज़रमेंट वैल्यू. टाइप के लिए MetricHeader देखें.
|
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 2025-07-26 (UTC) को अपडेट किया गया.
[null,null,["आखिरी बार 2025-07-26 (UTC) को अपडेट किया गया."],[[["\u003cp\u003eData is structured in rows, each containing dimension values and metric values.\u003c/p\u003e\n"],["\u003cp\u003eDimension values represent categorical data like eventName or countryId, stored as strings.\u003c/p\u003e\n"],["\u003cp\u003eMetric values represent quantitative data like eventCount, also stored as strings, with their type specified in the MetricHeader.\u003c/p\u003e\n"],["\u003cp\u003eRows align with requested dimensions and metrics defined in the RunReportRequest.\u003c/p\u003e\n"],["\u003cp\u003ePivotReports only include dimension values for pivoted dimensions.\u003c/p\u003e\n"]]],["The content outlines the structure of report data, specifically `DimensionValue` and `MetricValue`. Report rows contain lists of `dimensionValues` and `metricValues`. `DimensionValue` represents a dimension's value (e.g., \"in_app_purchase\"), and `MetricValue` represents a metric's value (e.g., \"15\"). Both `DimensionValue` and `MetricValue` have a single field, `value`, which is a string. A JSON representation of a row shows the association between dimensions and metrics.\n"],null,["# Row\n\n- [JSON representation](#SCHEMA_REPRESENTATION)\n- [DimensionValue](#DimensionValue)\n - [JSON representation](#DimensionValue.SCHEMA_REPRESENTATION)\n- [MetricValue](#MetricValue)\n - [JSON representation](#MetricValue.SCHEMA_REPRESENTATION)\n\nReport data for each row. For example if RunReportRequest contains: \n\n \"dimensions\": [\n {\n \"name\": \"eventName\"\n },\n {\n \"name\": \"countryId\"\n }\n ],\n \"metrics\": [\n {\n \"name\": \"eventCount\"\n }\n ]\n\nOne row with 'in_app_purchase' as the eventName, 'JP' as the countryId, and 15 as the eventCount, would be: \n\n \"dimensionValues\": [\n {\n \"value\": \"in_app_purchase\"\n },\n {\n \"value\": \"JP\"\n }\n ],\n \"metricValues\": [\n {\n \"value\": \"15\"\n }\n ]\n\n| JSON representation |\n|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"dimensionValues\": [ { object (/analytics/devguides/reporting/data/v1/rest/v1alpha/Row#DimensionValue) } ], \"metricValues\": [ { object (/analytics/devguides/reporting/data/v1/rest/v1alpha/Row#MetricValue) } ] } ``` |\n\n| Fields ||\n|-----------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `dimension``Values[]` | `object (`[DimensionValue](/analytics/devguides/reporting/data/v1/rest/v1alpha/Row#DimensionValue)`)` List of requested dimension values. In a PivotReport, dimensionValues are only listed for dimensions included in a pivot. |\n| `metric``Values[]` | `object (`[MetricValue](/analytics/devguides/reporting/data/v1/rest/v1alpha/Row#MetricValue)`)` List of requested visible metric values. |\n\nDimensionValue\n--------------\n\nThe value of a dimension.\n\n| JSON representation |\n|--------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { // Union field `one_value` can be only one of the following: \"value\": string // End of list of possible types for union field `one_value`. } ``` |\n\n| Fields ||\n|---------|---------------------------------------------------------------|\n| Union field `one_value`. One kind of dimension value `one_value` can be only one of the following: ||\n| `value` | `string` Value as a string if the dimension type is a string. |\n\nMetricValue\n-----------\n\nThe value of a metric.\n\n| JSON representation |\n|--------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { // Union field `one_value` can be only one of the following: \"value\": string // End of list of possible types for union field `one_value`. } ``` |\n\n| Fields ||\n|---------|--------------------------------------------------------|\n| Union field `one_value`. One of metric value `one_value` can be only one of the following: ||\n| `value` | `string` Measurement value. See MetricHeader for type. |"]]