Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

botbuilder-instrumentation

Package Overview
Dependencies
Maintainers
4
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

botbuilder-instrumentation - npm Package Compare versions

Comparing version 1.1.16 to 1.1.17

0

.vscode/tasks.json

@@ -0,0 +0,0 @@ {

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ var monitor = require('./');

3

dist/main.js

@@ -321,2 +321,5 @@ "use strict";

properties.forEach(property => {
if (Array.isArray(property)) {
item[property.join('.')] = _.get(session, [propertyBag, ...property], '');
}
item[property] = session[propertyBag][property] || null;

@@ -323,0 +326,0 @@ });

2

package.json
{
"name": "botbuilder-instrumentation",
"version": "1.1.16",
"version": "1.1.17",
"description": "",

@@ -5,0 +5,0 @@ "main": "dist/main.js",

@@ -87,3 +87,3 @@ # Microsoft Bot Builder Instrumentation

}
customFields: {

@@ -98,2 +98,4 @@ userData: [ "CUSTOM_PROPERTY_1" ],

The `CUSTOM_PROPERTY` could be a String or an Array. If it's an array it will as a path. [Lodash#get](https://lodash.com/docs#get)
The `CUSTOM_PROPERTY` will be searched for in the session/context object of each event and will be added automatically under customDimensions in Application Insights.

@@ -100,0 +102,0 @@ If it does not exist, it will not be added to the logged events.

@@ -0,0 +0,0 @@ export default {

@@ -0,0 +0,0 @@ var monitor = require('./');

@@ -423,2 +423,5 @@ import * as util from 'util';

properties.forEach(property => {
if (Array.isArray(property)) {
item[property.join('.')] = _.get(session, [propertyBag, ...property], '');
}
item[property] = session[propertyBag][property] || null;

@@ -425,0 +428,0 @@ });

@@ -0,0 +0,0 @@ {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc