Interface IReporter
IReporter can send events to an alternative api key, differ from
api key, passed to AppMetrica.activate(android.content.Context, AppMetricaConfig)
IReporter, can be obtained via
AppMetrica.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 TypeMethodDescriptionvoidClears app environment and removes it from storage.Creates anIPluginReporterthat can send plugin events to this reporter.voidHelper method for sessions tracking.voidputAppEnvironmentValue(String key, String value) Sets key - value pair to be used as additional information, associated with your application runtime's environment.voidreportAdRevenue(AdRevenue adRevenue) Sends information about ad revenue.voidreportAnr(Map<Thread, StackTraceElement[]> allThreads) Sends an ANR event (the application is not responding) manually.voidreportECommerce(ECommerceEvent event) Sends e-commerce event.voidreportError(String identifier, String message) Sends an error.voidreportError(String identifier, String message, Throwable error) Sends an error.voidreportError(String message, Throwable error) Sends an error.voidreportEvent(String eventName) Sends report by event name.voidreportEvent(String eventName, String jsonValue) Sends report by event name and event value.voidreportEvent(String eventName, Map<String, Object> attributes) Sends report by dictionary.voidreportRevenue(Revenue revenue) Sends information about the purchase.voidreportUnhandledException(Throwable exception) Sends unhandled exception byThrowableobject.voidreportUserProfile(UserProfile profile) Sends information about the user profile.voidHelper method for sessions tracking.voidInitiates forced sending of all stored events from the buffer.voidsetDataSendingEnabled(boolean enabled) Enables/disables data sending to the AppMetrica server.voidsetUserProfileID(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
Sends report by event name.- Parameters:
eventName- Event name. In theeventNameparameter, pass a short name or description of the event.- Throws:
IllegalArgumentException- IfeventNameis null.- See Also:
-
reportEvent
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:
IllegalArgumentException- IfeventNameorjsonValueis null.- See Also:
-
reportEvent(String, String)JSONObject.toString()
-
reportEvent
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:
IllegalArgumentException- IfeventNameorattributesis null.- See Also:
-
reportError
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:
IllegalArgumentException- Ifmessageis null.- See Also:
-
reportError
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:
IllegalArgumentException- Ifidentifieris null.
-
reportError
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:
IllegalArgumentException- Ifidentifieris null.
-
reportUnhandledException
Sends unhandled exception byThrowableobject.- Parameters:
exception-Throwableobject for the unhandled exception.- Throws:
IllegalArgumentException- Ifexceptionis null.- See Also:
-
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
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:
-
setDataSendingEnabled
void setDataSendingEnabled(boolean enabled) Enables/disables data 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 data, 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:
-
putAppEnvironmentValue
Sets key - value pair to be used as additional information, associated with your application runtime's environment. This environment is unique for every unique APIKey and shared between processes. Application's environment persists to storage and retained between application launches. To reset environment useAppMetrica.clearAppEnvironment()If called before metrica initialization, environment will be added right after metrica initialize
WARNING: Application's environment is a global permanent state and can't be changed too often. For frequently changed parameters use extended reportMessage methods.
- Parameters:
key- the environment key.value- the environment value. To remove pair from environment passnullvalue.- See Also:
-
clearAppEnvironment
void clearAppEnvironment()Clears app environment and removes it from storage.If called before metrica initialization, app environment will be cleared right after init
-
reportAnr
Sends an ANR event (the application is not responding) manually.- Parameters:
allThreads- A snapshot of all streams with stack traces. Can be received by callingThread.getAllStackTraces().
-