
com.microsoft.applicationinsights.telemetry.Telemetry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of applicationinsights-core Show documentation
Show all versions of applicationinsights-core Show documentation
This is the core module of Microsoft Application Insights Java SDK
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.microsoft.applicationinsights.telemetry;
import java.util.Date;
import java.util.Map;
/** The base telemetry type interface for application insights. */
public interface Telemetry {
/** Gets the time when telemetry was recorded */
Date getTimestamp();
/** Sets the time when telemetry was recorded */
void setTimestamp(Date date);
/** Gets the context associated with this telemetry instance. */
TelemetryContext getContext();
/** Gets the map of application-defined property names and values. */
Map getProperties();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy