Interface IReporter
public interface IReporter
IReporter can send events to an alternative api key, differ from
api key, passed to YandexMetrica.activate(android.content.Context, com.yandex.metrica.YandexMetricaConfig)
IReporter, can be obtained via
YandexMetrica.getReporter(android.content.Context, String) method call.
For every api key only one IReporter instance is created.
You can either query it each time you need it, or save the reference by yourself.
-
Method Summary
Modifier and Type Method Description IPluginReportergetPluginExtension()Creates anIPluginReporterthat can send plugin events to this reporter.voidpauseSession()Helper method for sessions tracking.voidreportAdRevenue(AdRevenue adRevenue)Sends information about ad revenue.voidreportECommerce(ECommerceEvent event)Sends e-commerce event.voidreportError(java.lang.String identifier, java.lang.String message)Sends an error.voidreportError(java.lang.String identifier, java.lang.String message, java.lang.Throwable error)Sends an error.voidreportError(java.lang.String message, java.lang.Throwable error)Sends an error.voidreportEvent(java.lang.String eventName)Sends report by event name.voidreportEvent(java.lang.String eventName, java.lang.String jsonValue)Sends report by event name and event value.voidreportEvent(java.lang.String eventName, java.util.Map<java.lang.String,java.lang.Object> attributes)Sends report by dictionary.voidreportRevenue(Revenue revenue)Sends information about the purchase.voidreportUnhandledException(java.lang.Throwable exception)Sends unhandled exception byThrowableobject.voidreportUserProfile(UserProfile profile)Sends information about the user profile.voidresumeSession()Helper method for sessions tracking.voidsendEventsBuffer()Initiates forced sending of all stored events from the buffer.voidsetStatisticsSending(boolean enabled)Enables/disables statistics sending to the AppMetrica server.voidsetUserProfileID(java.lang.String profileID)Sets the ID of the user profile.
-
Method Details
-
sendEventsBuffer
void sendEventsBuffer()Initiates forced sending of all stored events from the buffer.AppMetrica SDK doesn't send events immediately after they occurred. It stores events data in the buffer. This method forcibly initiates sending all the data from the buffer and flushes it.
Use the method after important checkpoints of user scenarios.
WARNING: Frequent use of the method can lead to increasing outgoing internet traffic and energy consumption.
-
reportEvent
void reportEvent(@NonNull java.lang.String eventName)Sends report by event name.- Parameters:
eventName- Event name. In theeventNameparameter, pass a short name or description of the event.- Throws:
java.lang.IllegalArgumentException- IfeventNameis null.- See Also:
reportEvent(String)
-
reportEvent
void reportEvent(@NonNull java.lang.String eventName, @Nullable java.lang.String jsonValue)Sends report by event name and event value.- Parameters:
eventName- Event name. In theeventNameparameter, pass a short name or description of the event.jsonValue- Event value. In theeventValueparameter, pass aJSONObjectrepresented as aStringobject or pass aStringobject represented in theJava JSON format. Maximum level of nesting (for JSON object) - 5.EXAMPLE:
{ "firstName": "John", "lastName": "Smith", "age": 25, "nickname": "JS" "address": { "streetAddress": "21 2nd Street", "city": "New York", "state": "NY", }, "phoneNumbers": [ { "type": "HOME", "number": "212 555-1234" }, { "type": "FAX", "number": "646 555-4567" } ] }- Throws:
java.lang.IllegalArgumentException- IfeventNameorjsonValueis null.- See Also:
reportEvent(String, String),JSONObject.toString()
-
reportEvent
void reportEvent(@NonNull java.lang.String eventName, @Nullable java.util.Map<java.lang.String,java.lang.Object> attributes)Sends report by dictionary.- Parameters:
eventName- Event name. In theeventNameparameter, pass a short name or description of the event.attributes- Event value. In theattributesparameter, pass aMapwhose keys are of typeStringand whose values are of supported types:Boolean,String, and the wrappers for the primitive number typesDouble,Integer, ...- Throws:
java.lang.IllegalArgumentException- IfeventNameorattributesis null.- See Also:
reportEvent(String, java.util.Map)
-
reportError
void reportError(@NonNull java.lang.String message, @Nullable java.lang.Throwable error)Sends an error. Use this method to report un unexpected situation. If you use this method errors will be grouped byerrorstacktrace. If you want to influence the way errors are grouped usereportError(String, String, Throwable)orreportError(String, String)- Parameters:
message- Short description or name of the error.error-Throwableobject for the error. Can be null.- Throws:
java.lang.IllegalArgumentException- Ifmessageis null.- See Also:
reportUnhandledException(Throwable)
-
reportError
void reportError(@NonNull java.lang.String identifier, @Nullable java.lang.String message)Sends an error. Use this method to report un unexpected situation. This method should be used if you want to customize error grouping. If not usereportError(String, Throwable)- Parameters:
identifier- An identifier used for grouping errors. Errors that have the same identifiers will belong in one group. Do not use dynamically formed strings or exception messages as identifiers to avoid having too many small crash groups. Cannot be null.message- Short description or name of the error. Can be null.- Throws:
java.lang.IllegalArgumentException- Ifidentifieris null.
-
reportError
void reportError(@NonNull java.lang.String identifier, @Nullable java.lang.String message, @Nullable java.lang.Throwable error)Sends an error. Use this method to report un unexpected situation. This method should be used if you want to customize error grouping. If not usereportError(String, Throwable)errorstacktrace will NOT be used for grouping, onlyidentifier.- Parameters:
identifier- An identifier used for grouping errors. Errors that have the same identifiers will belong in one group. Do not use dynamically formed strings or exception messages as identifiers to avoid having too many small crash groups. Cannot be null.message- Short description or name of the error. Can be null.error-Throwableobject for the error. Its stacktrace will not be considered for error grouping. Can be null.- Throws:
java.lang.IllegalArgumentException- Ifidentifieris null.
-
reportUnhandledException
void reportUnhandledException(@NonNull java.lang.Throwable exception)Sends unhandled exception byThrowableobject.- Parameters:
exception-Throwableobject for the unhandled exception.- Throws:
java.lang.IllegalArgumentException- Ifexceptionis null.- See Also:
reportUnhandledException(Throwable)
-
resumeSession
void resumeSession()Helper method for sessions tracking.
Usually, it should be called intoActivity.onResume().- See Also:
Activity.onResume(),pauseSession()
-
pauseSession
void pauseSession()Helper method for sessions tracking.
Usually, it should be called intoActivity.onPause().- See Also:
Activity.onPause(),resumeSession()
-
setUserProfileID
void setUserProfileID(@Nullable java.lang.String profileID)Sets the ID of the user profile. NOTE: The string value can contain up to 200 characters.- Parameters:
profileID- The custom user profile ID.
-
reportUserProfile
Sends information about the user profile.- Parameters:
profile- TheUserProfileobject. Contains user profile information.
-
reportRevenue
Sends information about the purchase.- Parameters:
revenue- TheRevenueobject. It contains purchase information.
-
reportECommerce
Sends e-commerce event.- Parameters:
event- TheECommerceEventobject to be sent.- See Also:
ECommerceEvent
-
setStatisticsSending
void setStatisticsSending(boolean enabled)Enables/disables statistics sending to the AppMetrica server. By default, the sending is enabled.NOTE: Disabling this option doesn't affect data sending from the main apiKey and other reporters.
- Parameters:
enabled-trueto allow AppMetrica sending statistics, otherwisefalse.
-
getPluginExtension
Creates an
For every reporter only oneIPluginReporterthat can send plugin events to this reporter.IPluginReporterinstance is created. You can either query it each time you need it, or save the reference by yourself.- Returns:
- plugin extension instance for this reporter
-
reportAdRevenue
Sends information about ad revenue.- Parameters:
adRevenue- Object containing the information about ad revenue.- See Also:
AdRevenue
-