4.2.0 • Published 2 days ago

@microsoft/1ds-core-js v4.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 days ago

Microsoft 1DS Web SDK Core

Description

1DS Web SDK Core is the telemetry orchestrator, responsible for initializing all attached plugins and calling process() on each of them.

npm

Packages available here.

Basic Usage

Setup

import { AppInsightsCore, IExtendedConfiguration } from '@microsoft/1ds-core-js';
var appInsightsCore: AppInsightsCore = new AppInsightsCore();
var coreConfig: IExtendedConfiguration = {
      instrumentationKey: "YOUR_TENANT_KEY"
};
//Initialize SDK
appInsightsCore.initialize(coreConfig, []);

Configuration

IExtendedConfiguration

ConfigDescriptionType
instrumentationKeyInstrumentation key of resource.string
diagnosticLogIntervalPolling interval (in ms) for internal logging queue.number
maxMessageLimitMaximum number of iKey transmitted logging telemetry per page view.number
loggingLevelConsoleConsole logging level. All logs with a severity level higher than the configured level will be printed to console. Otherwise they are suppressed.number
loggingLevelTelemetryTelemtry logging level to instrumentation key. All logs with a severity level higher than the configured level will sent as telemetry data to the configured instrumentation key.number
enableDebugExceptionsIf enabled, uncaught exceptions will be thrown to help with debugging.boolean
endpointUrlEndpoint where telemetry data is sent.string
extensionConfigExtension configs loaded in SDK.key: string: any;
extensionsAdditional plugins that should be loaded by core at runtime.Array< ITelemetryPlugin>
channelsChannel queues that is setup by caller in desired order.Array< IChannelControls[]>
propertyStorageOverrideThe property storage override that should be used to store internal SDK properties, otherwise stored as cookies. It is needed where cookies are not available.IPropertyStorageOverride
cookieCfgDefaults to cookie usage enabled see ICookieCfgConfig settings for full defaults.ICookieCfgConfigOptional(Since 3.1.0)
disableCookiesUsageA boolean that indicated whether to disable the use of cookies by the Aria SDK. The cookies added by the SDK are MicrosoftApplicationsTelemetryDeviceId and MicrosoftApplicationsTelemetryFirstLaunchTime. If cookies are disabled, then session events are not sent unless propertyStorageOverride is provided to store the values elsewhere.boolean
cookieDomainCustom cookie domain. This is helpful if you want to share Application Insights cookies across subdomains.(Since v3.1.0) If cookieCfg.domain is defined it will take precedence over this value.alias for cookieCfg.domainOptional(Since 3.1.0)
cookiePathCustom cookie path. This is helpful if you want to share Application Insights cookies behind an application gateway.If cookieCfg.path is defined it will take precedence over this value.alias for cookieCfg.pathOptional(Since 3.1.0)
anonCookieNameName of the Anon cookie. The value will be set in the qsp header to collector requests. Collector will use this value to look for specific cookie to use for anid property.string
enablePerfMgrOptional When enabled (true) this will create local perfEvents for code that has been instrumented to emit perfEvents (via the doPerf() helper). This can be used to identify performance issues within the SDK based on your usage or optionally within your own instrumented code. More details are available by the basic documentation. Since v2.4.0booleanDefaults to false
perfEvtsSendAllOptional When enablePerfMgr is enabled and the IPerfManager fires a INotificationManager.perfEvent() this flag determines whether an event is fired (and sent to all listeners) for all events (true) or only for 'parent' events (false <default>).A parent IPerfEvent is an event where no other IPerfEvent is still running at the point of this event being created and it's parent property is not null or undefined. Since v2.4.0booleanDefaults to false
idLengthOptional Identifies the default length used to generate new random session and user id's. Defaults to 22, previous default value was 5 (v2.4.2 or less), if you need to keep the previous maximum length you should set this value to 5.numberDefault: 22
disableEventTimingsOptional Disables additional internal event timings that are added during processing of events, the timings are not sent as part telemetry items to the server.booleanDefault: false
enableCompoundKeyOptional Enables support for objects with compound keys which indirectly represent an object where the "key" of the object contains a "." as part of it's name.Example: event: { "somedata.embeddedvalue": 123 } booleanDefault: false
disablePageUnloadEventsOptional An array of the page unload events that you would like to be ignored, special note there must be at least one valid unload event hooked, if you list all or the runtime environment only supports a listed "disabled" event it will still be hooked, if required by the SDK. Unload events include "beforeunload", "unload", "visibilitychange" (with 'hidden' state) and "pagehide"string[]Default: not specified
disablePageShowEventsOptional An array of page show events that you would like to be ignored, special note there must be at lease one valid show event hooked, if you list all or the runtime environment only supports a listed (disabled) event it will STILL be hooked, if required by the SDK. Page Show events include "pageshow" and "visibilitychange" (with 'visible' state)string[] Default: not specified

IPropertyStorageOverride

ConfigDescriptionType
setPropertyA function for passing key value pairs to be stored.function
getPropertyA function that gets a value for a given key.function

ICookieMgrConfig

Cookie Configuration for instance based cookie management added in version 3.1.0.

NameDescriptionType
enabledA boolean that indicates whether the use of cookies by the SDK is enabled by the current instance. If false, the instance of the SDK initialized by this configuration will not store or read any data from cookiesbooleantrue
domainCustom cookie domain. This is helpful if you want to share Application Insights cookies across subdomains. If not provided uses the value from root cookieDomain value.stringDefaults: null
pathSpecifies the path to use for the cookie, if not provided it will use any value from the root cookiePath value.stringDefaults: /
ignoreCookiesSpecify the cookie name(s) to be ignored, this will cause any matching cookie name to never be read or written. They may still be explicitly purged or deleted. You do not need to repeat the name in the blockedCookies configuration.(Since v3.2.7)string[] Defaults: undefined
blockedCookiesSpecify the cookie name(s) to never be written, this will cause any cookie name to never be created or updated, they will still be read unless also included in the ignoreCookies and may still be explicitly purged or deleted. If not provided defaults to the same list provided in ignoreCookies. (Since v3.2.7)string[] Defaults: undefined
getCookieFunction to fetch the named cookie value, if not provided it will use the internal cookie parsing / caching.(name: string) => stringDefaults: null
setCookieFunction to set the named cookie with the specified value, only called when adding or updating a cookie.(name: string, value: string) => voidDefaults: null
delCookieFunction to delete the named cookie with the specified value, separated from setCookie to avoid the need to parse the value to determine whether the cookie is being added or removed.if not provided it will use the internal cookie parsing / caching.(name: string, value: string) => voidDefaults: null

Cookie Handling

From version 3.1.0, cookie management is now available directly from the instance and can be disabled and re-enabled after initialization.

If cookie usage is disabled during initialization via the disableCookiesUsage configurations, you can now re-enable via the ICookieMgr setEnabled function.

The instance based cookie management also replaces the previous CoreUtils and global functions of disableCookies(), setCookie(...), getCookie(...) and deleteCookie(...). And to benefit from the tree-shaking enhancements also introduced as part of version 3.1.0 you should no longer uses the global functions.

Simplified Usage of new instance Cookie Manager

Blocking individual cookies

Since v3.2.7 you can now specify which Cookie name(s) that you want the SDK to either ignore (never read, written or created) or blocked (will be read if already present but will not write or create), this is useful for blocking non-critical Cookies that your site does not need but the SDK automatically populates. These settings only affect the Javascript SDK reading, writing and creation of the cookies and do NOT affect automatic cookies added by the Collector. See the "Cookies Set/Read by 1DS Web SDK" section of the linked page.

Example.

var coreConfig: IExtendedConfiguration = {
    instrumentationKey: "YOUR_TENANT_KEY",
    cookieCfg: {
        ignoreCookies: [ "MicrosoftApplicationsTelemetryDeviceId" ]
    }
    extensions: [ /* Your extensions */ ],
    extensionConfig: []
};

API documentation

Typedoc generated API reference

Learn More

You can learn more in 1DS First party (Internal) getting started.

Data Collection

The software may collect information about you and your use of the software and send it to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may turn off the telemetry as described in the repository. There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications together with a copy of Microsoft's privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and use in the help documentation and our privacy statement. Your use of the software operates as your consent to these practices.

To turn off sending telemetry to Microsoft, ensure that the POST channel is not configured in the extensions. See below configuration for example:

var coreConfig: IExtendedConfiguration = {
      instrumentationKey: "YOUR_TENANT_KEY",
      extensions: [
        postChannel  // << REMOVE THIS EXTENSION TO STOP SENDING TELEMETRY TO MICROSOFT
      ],
      extensionConfig: []
};

Contributing

Read our contributing guide to learn about our development process, how to propose bugfixes and improvements, and how to build and test your changes to Application Insights.

Data Collection

As this SDK is designed to enable applications to perform data collection which is sent to the Microsoft collection endpoints the following is required to identify our privacy statement.

The software may collect information about you and your use of the software and send it to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may turn off the telemetry as described in the repository. There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications together with a copy of Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and use in the help documentation and our privacy statement. Your use of the software operates as your consent to these practices.

Trademarks

This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft’s Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party’s policies.

License

MIT

4.2.0

9 days ago

4.0.7

1 month ago

4.1.2

1 month ago

3.2.17

2 months ago

4.1.1

2 months ago

4.1.0

3 months ago

3.2.16

3 months ago

4.0.6

3 months ago

4.0.5

5 months ago

4.0.4

6 months ago

4.0.3

6 months ago

4.0.2

8 months ago

3.2.13

9 months ago

3.2.15

6 months ago

3.2.14

8 months ago

3.2.12

11 months ago

3.2.11

12 months ago

4.0.1

11 months ago

4.0.0

12 months ago

3.2.10

1 year ago

3.2.9

1 year ago

3.2.8

2 years ago

3.2.7

2 years ago

3.2.6

2 years ago

3.2.5

2 years ago

3.2.4

2 years ago

3.2.2

2 years ago

3.2.3

2 years ago

3.2.1

2 years ago

3.2.0

2 years ago

3.1.11

2 years ago

3.1.10

2 years ago

3.1.9

2 years ago

3.1.8

2 years ago

3.1.7

3 years ago

3.1.6

3 years ago

3.1.5

3 years ago

3.1.4

3 years ago

3.1.3

3 years ago

3.1.2

3 years ago

3.1.1

3 years ago

3.1.0

3 years ago

3.0.2

3 years ago

0.0.0

3 years ago