Features of Splunk Mint:-
1) Monitoring slow transactions(track process) from start to finish.
2) Track user activity and events
3) Generate exception logs that occured in app.
4) Debug messages based on platform.
5) Examining errors by particular user.
Steps to add Splunk Mint in Android Project:-
1.Requirements for application compatibility
android:minSdkVersion="7"
android:targetSdkVersion="23"
2.Add Splunk Mint repositry to your project
apply plugin: 'android'
repositories {
maven {
url "https://mint.splunk.com/gradle/"
}
}
3.Add dependency to your build.gradle
dependencies {
compile "com.splunk.mint:mint:5.0.0"
}
4.Now after signUp, fill your app details like App name, Billing account, platform and stage, and you will get YOUR_API_KEY(eg- c62839e7) having 8-digit alpha_numeric code.
5.Need to add only a single line of code in your onCreate() method of launcher activity.
Mint.initAndStartSession(YourActivity.this, "YOUR_API_KEY");
0 Comment(s)