با مجموعهها، منظم بمانید
ذخیره و طبقهبندی محتوا براساس اولویتهای شما.
ویژگیهای کاربر ویژگیهایی هستند که برای توصیف بخشهایی از پایگاه کاربر خود، مانند ترجیح زبان یا موقعیت جغرافیایی، تعریف میکنید.
Analytics به طور خودکار برخی از ویژگی های کاربر را ثبت می کند. برای فعال کردن آنها نیازی به اضافه کردن کد ندارید. اگر برنامه شما نیاز به جمعآوری دادههای اضافی دارد، میتوانید حداکثر ۲۵ ویژگی کاربر Analytics مختلف را در برنامه خود تنظیم کنید.
قبل از شروع
مطمئن شوید که پروژه خود را راهاندازی کردهاید و میتوانید همانطور که در Get Started with Analytics for C++ توضیح داده شده به Analytics دسترسی داشته باشید.
ویژگی های کاربر را تنظیم کنید
می توانید ویژگی های کاربر Analytics را برای توصیف کاربران برنامه خود تنظیم کنید. میتوانید با اعمال این ویژگیها بهعنوان فیلتر در گزارشهای خود، رفتار بخشهای مختلف کاربر را تحلیل کنید.
برای مشاهده داشبورد گزارش Analytics ، Analytics از منو انتخاب کنید.
تب User Properties لیستی از ویژگی های کاربر را نشان می دهد که برای برنامه خود تعریف کرده اید. میتوانید از این ویژگیها به عنوان فیلتر روی بسیاری از گزارشهای موجود در Google Analytics استفاده کنید. درباره داشبورد گزارش Analytics در مرکز راهنمایی Firebase بیشتر بخوانید.
تاریخ آخرین بهروزرسانی 2025-09-03 بهوقت ساعت هماهنگ جهانی.
[[["درک آسان","easyToUnderstand","thumb-up"],["مشکلم را برطرف کرد","solvedMyProblem","thumb-up"],["غیره","otherUp","thumb-up"]],[["اطلاعاتی که نیاز دارم وجود ندارد","missingTheInformationINeed","thumb-down"],["بیشازحد پیچیده/ مراحل بسیار زیاد","tooComplicatedTooManySteps","thumb-down"],["قدیمی","outOfDate","thumb-down"],["مشکل ترجمه","translationIssue","thumb-down"],["مشکل کد / نمونهها","samplesCodeIssue","thumb-down"],["غیره","otherDown","thumb-down"]],["تاریخ آخرین بهروزرسانی 2025-09-03 بهوقت ساعت هماهنگ جهانی."],[],[],null,["\u003cbr /\u003e\n\nUser properties are attributes you define to describe segments of your user\nbase, such as language preference or geographic location.\n\nAnalytics automatically logs some\n[user properties](https://support.google.com/analytics/answer/9268042);\nyou don't need to add any code to enable them. If your app needs to collect\nadditional data, you can set up to 25 different Analytics user properties\nin your app.\n\nBefore you begin\n\nMake sure that you've set up your project and can access Analytics as\ndescribed in\n[Get Started with Analytics for C++](/docs/analytics/cpp/start#before_you_begin).\n\nSet user properties\n\nYou can set Analytics user properties to describe the users of your app.\nYou can analyze behaviors of various user segments by applying these\nproperties as filters to your reports.\n\nSet a user property as follows:\n\n1. [Register](https://support.google.com/firebase/answer/6317519?hl=en&ref_topic=6317489#create-property) the property in the **Analytics** tab\n of the [Firebase console](//console.firebase.google.com/).\n\n2. Add code to set an Analytics user property with the\n [`SetUserProperty()`](/docs/reference/cpp/namespace/firebase/analytics#setuserproperty) method. You can use the name and\n value of your choosing for each property.\n\nThe following example shows adding a hypothetical favorite food property, which\nassigns the value in the string `mFavoriteFood` to the active user: \n\n```c++\nSetUserProperty(\"favorite_food\", mFavoriteFood);\n```\n| **Note:** Once the property is registered, it can take several hours for data collected with the property to be included in reports. When the new data is available, the user property can be used as a report filter.\n\nYou can access this data as follows:\n\n1. In the [Firebase console](//console.firebase.google.com/), open your project.\n2. Select **Analytics** from the menu to view the Analytics reporting dashboard.\n\nThe **User Properties** tab shows a list of user properties that you have\ndefined for your app. You can use these properties as a filter on many of the\nreports available in Google Analytics. Read more about the\n[Analytics reporting dashboard](https://support.google.com/analytics/answer/11014767) in the Firebase Help Center.\n| **Note:** Data in the Analytics reporting dashboard refreshes periodically throughout the day."]]