爱喝酒的抽屉 · Help And Training ...· 2 月前 · |
活泼的小马驹 · 左公子666 归档 - coser福利社· 4 月前 · |
很酷的脆皮肠 · Path encoding issue ...· 7 月前 · |
行走的猴子 · Lorefnon | Blog | ...· 7 月前 · |
俊逸的冲锋衣 · Linux三剑客系列之awk - 木木博客· 11 月前 · |
Send logs to Datadog from your Android applications with
Datadog’s
dd-sdk-android-logs
client-side logging library
and leverage the following features:
context
and extra custom attributes to each log sent.
Add the Gradle dependency by declaring the library as a dependency in the module-level
build.gradle
file. Make sure to replace
x.x.x
in the following example with the latest version of
dd-sdk-android-logs
.
dependencies {
implementation "com.datadoghq:dd-sdk-android-logs:x.x.x"
Initialize Datadog SDK with your application context, tracking consent, as well as the Datadog client token . For security reasons, you must use a client token; you cannot use Datadog API keys to configure the Datadog SDK, as they would be exposed client-side in the Android application APK byte code.
The
APP_VARIANT_NAME
specifies the variant of the application that generates data. This is required in the initialization credentials; use your
BuildConfig.FLAVOR
value or an empty string if you do not have variants. The appropriate ProGuard
mapping.txt
file will be automatically uploaded at build time, allowing you to view de-obfuscated error stack traces. For more information, see
Android Crash Reporting and Error Tracking
.
For more information about setting up a client token, see the client token documentation .
class SampleApplication : Application() {
override fun onCreate() {
super.onCreate()
val configuration = Configuration.Builder(
clientToken = <CLIENT_TOKEN>,
env = <ENV_NAME>,
variant = <APP_VARIANT_NAME>
).build()
Datadog.initialize(this, configuration, trackingConsent)
public class SampleApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
Configuration configuration =
new Configuration.Builder(<CLIENT_TOKEN>, <ENV_NAME>, <APP_VARIANT_NAME>)
.build();
Datadog.initialize(this, configuration, trackingConsent);
class SampleApplication : Application() {
override fun onCreate() {
super.onCreate()
val configuration = Configuration.Builder(
clientToken = <CLIENT_TOKEN>,
env = <ENV_NAME>,
variant = <APP_VARIANT_NAME>
.useSite(DatadogSite.EU1)
.build()
Datadog.initialize(this, configuration, trackingConsent)
public class SampleApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
Configuration configuration =
new Configuration.Builder(<CLIENT_TOKEN>, <ENV_NAME>, <APP_VARIANT_NAME>)
.useSite(DatadogSite.EU1)
.build();
Datadog.initialize(this, configuration, trackingConsent);
class SampleApplication : Application() {
override fun onCreate() {
super.onCreate()
val configuration = Configuration.Builder(
clientToken = <CLIENT_TOKEN>,
env = <ENV_NAME>,
variant = <APP_VARIANT_NAME>
.useSite(DatadogSite.US3)
.build()
Datadog.initialize(this, configuration, trackingConsent)
public class SampleApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
Configuration configuration =
new Configuration.Builder(<CLIENT_TOKEN>, <ENV_NAME>, <APP_VARIANT_NAME>)
.useSite(DatadogSite.US3)
.build();
Datadog.initialize(this, configuration, trackingConsent);
class SampleApplication : Application() {
override fun onCreate() {
super.onCreate()
val configuration = Configuration.Builder(
clientToken = <CLIENT_TOKEN>,
env = <ENV_NAME>,
variant = <APP_VARIANT_NAME>
.useSite(DatadogSite.US5)
.build()
Datadog.initialize(this, configuration, trackingConsent)
public class SampleApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
Configuration configuration =
new Configuration.Builder(<CLIENT_TOKEN>, <ENV_NAME>, <APP_VARIANT_NAME>)
.useSite(DatadogSite.US5)
.build();
Datadog.initialize(this, configuration, trackingConsent);
class SampleApplication : Application() {
override fun onCreate() {
super.onCreate()
val configuration = Configuration.Builder(
clientToken = <CLIENT_TOKEN>,
env = <ENV_NAME>,
variant = <APP_VARIANT_NAME>
.useSite(DatadogSite.US1_FED)
.build()
Datadog.initialize(this, configuration, trackingConsent)
public class SampleApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
Configuration configuration =
new Configuration.Builder(<CLIENT_TOKEN>, <ENV_NAME>, <APP_VARIANT_NAME>)
.useSite(DatadogSite.US1_FED)
.build();
Datadog.initialize(this, configuration, trackingConsent);
class SampleApplication : Application() {
override fun onCreate() {
super.onCreate()
val configuration = Configuration.Builder(
clientToken = <CLIENT_TOKEN>,
env = <ENV_NAME>,
variant = <APP_VARIANT_NAME>
.useSite(DatadogSite.AP1)
.build()
Datadog.initialize(this, configuration, trackingConsent)
public class SampleApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
Configuration configuration =
new Configuration.Builder(<CLIENT_TOKEN>, <ENV_NAME>, <APP_VARIANT_NAME>)
.useSite(DatadogSite.AP1)
.build();
Datadog.initialize(this, configuration, trackingConsent);
To be compliant with the GDPR regulation, the SDK requires the tracking consent value at initialization. The tracking consent can be one of the following values:
TrackingConsent.PENDING
: The SDK starts collecting and batching the data but does not send it to the data
collection endpoint. The SDK waits for the new tracking consent value to decide what to do with the batched data.
TrackingConsent.GRANTED
: The SDK starts collecting the data and sends it to the data collection endpoint.
TrackingConsent.NOT_GRANTED
: The SDK does not collect any data. You will not be able to manually send any logs, traces, or
RUM events.
To update the tracking consent after the SDK is initialized, call:
Datadog.setTrackingConsent(<NEW CONSENT>)
.
The SDK changes its behavior according to the new consent. For example, if the current tracking consent is
TrackingConsent.PENDING
and you update it to:
TrackingConsent.GRANTED
: The SDK sends all current batched data and future data directly to the data collection endpoint.
TrackingConsent.NOT_GRANTED
: The SDK wipes all batched data and does not collect any future data.
Use the utility method
isInitialized
to check if the SDK is properly initialized:
if (Datadog.isInitialized()) {
// your code here
When writing your application, you can enable development logs by calling the
setVerbosity
method. All internal messages in the library with a priority equal to or higher than the provided level are then logged to Android’s Logcat:
Datadog.setVerbosity(Log.INFO)
Configure and enable Logs feature:
val logsConfig = LogsConfiguration.Builder().build()
Logs.enable(logsConfig)
LogsConfiguration logsConfig = new LogsConfiguration.Builder().build();
Logs.enable(logsConfig);
Configure the Android Logger:
val logger = Logger.Builder()
.setNetworkInfoEnabled(true)
.setLogcatLogsEnabled(true)
.setRemoteSampleRate(100f)
.setBundleWithTraceEnabled(true)
.setName("<LOGGER_NAME>")
.build()
Logger logger = new Logger.Builder()
.setNetworkInfoEnabled(true)
.setLogcatLogsEnabled(true)
.setRemoteSampleRate(100f)
.setBundleWithTraceEnabled(true)
.setName("<LOGGER_NAME>")
.build();
Send a custom log entry directly to Datadog with one of the following functions:
logger.d("A debug message.")
logger.i("Some relevant information ?")
logger.w("An important warning…")
logger.e("An error was met!")
logger.wtf("What a Terrible Failure!")
Exceptions caught can be sent with a message:
try {
doSomething()
} catch (e: IOException) {
logger.e("Error while doing something", e)
try {
doSomething();
} catch (IOException e) {
logger.e("Error while doing something", e);
Note : All logging methods can have a throwable attached to them.
(Optional) Provide a map alongside your log message to add attributes to the emitted log. Each entry of the map is added as an attribute.
logger.i("onPageStarted", attributes = mapOf("http.url" to url))
Map<String, Object> attributes = new HashMap<>();
attributes.put("http.url", url);
logger.i("onPageStarted", null, attributes);
If you need to modify some attributes in your Log events before batching you can do so by providing an implementation of
EventMapper<LogEvent>
when initializing Logs feature:
val logsConfig = LogsConfiguration.Builder()
// ...
.setEventMapper(logEventMapper)
.build()
LogsConfiguration logsConfig = new LogsConfiguration.Builder()
// ...
.setEventMapper(logEventMapper)
.build();
Note
: If you return null or a different instance from the
EventMapper<LogEvent>
implementation, the event will be dropped.
The following methods in
Logger.Builder
can be used when initializing the logger to send logs to Datadog:
Method | Description |
---|---|
setNetworkInfoEnabled(true)
|
Add the
network.client.connectivity
attribute to all logs. The data logged by default is
connectivity
(
Wifi
,
3G
,
4G
…) and
carrier_name
(
AT&T - US
).
carrier_name
is only available for Android API level 28+.
|
setService(<SERVICE_NAME>)
|
Set
<SERVICE_NAME>
as value for the
service
standard attribute
attached to all logs sent to Datadog.
|
setLogcatLogsEnabled(true)
|
Set to
true
to use Logcat as a logger.
|
setBundleWithTraceEnabled(true)
|
Set to
true
(default) to bundle the logs with the active trace in your application. This parameter lets you display all the logs sent during a specific trace by using the Datadog dashboard.
|
setBundleWithRumEnabled(true)
|
Set to
true
(default) to bundle the logs with the current RUM context in your application. This parameter lets you display all the logs sent while a specific View is active by using the Datadog RUM Explorer.
|
setName(<LOGGER_NAME>)
|
Set
<LOGGER_NAME>
as the value for the
logger.name
attribute attached to all logs sent to Datadog.
|
setRemoteSampleRate(<SAMPLE_RATE>)
|
Set the sampling rate for this logger. All the logs produced by the logger instance are randomly sampled according to the provided sample rate (default 1.0 = all logs). Note : The Logcat logs are not sampled. |
build()
|
Build a new logger instance with all options set. |
Find below functions to add/remove tags and attributes to all logs sent by a given logger.
Use the
addTag("<TAG_KEY>", "<TAG_VALUE>")
function to add tags to all logs sent by a specific logger:
// This adds a tag "build_type:debug" or "build_type:release" accordingly
logger.addTag("build_type", BuildConfig.BUILD_TYPE)
// This adds a tag "device:android"
logger.addTag("device", "android")
The
<TAG_VALUE>
must be a
String
.
Use the
removeTagsWithKey("<TAG_KEY>")
function to remove tags from all logs sent by a specific logger:
// This removes any tag starting with "build_type"
logger.removeTagsWithKey("build_type")
For more information, see Getting Started with Tags .
By default, the following attributes are added to all logs sent by a logger:
http.useragent
and its extracted
device
and
OS
properties
network.client.ip
and its extracted geographical properties (
country
,
city
)
Use the
addAttribute("<ATTRIBUTE_KEY>", "<ATTRIBUTE_VALUE>")
function to add a custom attribute to all logs sent by a specific logger:
// This adds an attribute "version_code" with an integer value
logger.addAttribute("version_code", BuildConfig.VERSION_CODE)
// This adds an attribute "version_name" with a String value
logger.addAttribute("version_name", BuildConfig.VERSION_NAME)
The
<ATTRIBUTE_VALUE>
can be any primitive,
String
, or Date.
Use the
removeAttribute("<ATTRIBUTE_KEY>", "<ATTRIBUTE_VALUE>")
function to remove a custom attribute from all logs sent by a specific logger:
// This removes the attribute "version_code" from all further log send.
logger.removeAttribute("version_code")
// This removes the attribute "version_name" from all further log send.
logger.removeAttribute("version_name")
All the logs are first stored on the local device in batches. Each batch follows the intake specification. They are sent as soon as network is available, and the battery is high enough to ensure the Datadog SDK does not impact the end user’s experience. If the network is not available while your application is in the foreground, or if an upload of data fails, the batch is kept until it can be sent successfully.
This means that even if users open your application while being offline, no data will be lost.
The data on disk will automatically be discarded if it gets too old to ensure the SDK does not use too much disk space.
Before data is uploaded to Datadog, it is stored in cleartext in your application’s cache directory. This cache folder is protected by Android’s Application Sandbox , meaning that on most devices this data cannot be read by other applications. However, if the mobile device is rooted, or someone tempers with the Linux kernel, the stored data might become readable.
If your existing codebase is using Timber, you can forward all those logs to Datadog automatically by using the dedicated library .
Additional helpful documentation, links, and articles:
On this Page
rulesets:
- %!s(<nil>) # Rules to enforce .
resources
活泼的小马驹 · 左公子666 归档 - coser福利社 4 月前 |
很酷的脆皮肠 · Path encoding issue after upgrade from 0.9.6 to 1.0.1 · Issue #1561 · karatelabs/karate · GitHub 7 月前 |
俊逸的冲锋衣 · Linux三剑客系列之awk - 木木博客 11 月前 |