Skip to content

Instantly share code, notes, and snippets.

@imaman
Created November 15, 2018 10:17
Show Gist options
  • Select an option

  • Save imaman/7d232840b6b68b15a8b64ad9e7925d67 to your computer and use it in GitHub Desktop.

Select an option

Save imaman/7d232840b6b68b15a8b64ad9e7925d67 to your computer and use it in GitHub Desktop.
update error: log + error message "cannot be executed in its current status of [CREATE_IN_PROGRESS]"
This file has been truncated, but you can view the full file.
2018-11-12T22:04:14.366Z [main] silly: Packagr.run(spec_compiled, spec_compiled, undefined)
2018-11-12T22:04:14.368Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-12T22:04:14.368Z [main] silly: Executing:
2018-11-12T22:04:16.591Z [main] silly: Packagr.run(build, build, undefined)
2018-11-12T22:04:16.591Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-12T22:04:16.591Z [main] silly: Executing:
2018-11-12T22:04:20.684Z [main] silly: Packagr.run(build, build, undefined)
2018-11-12T22:04:20.684Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-12T22:04:20.684Z [main] silly: Executing:
2018-11-12T22:04:22.158Z [main] silly: Packagr.run(build, build, undefined)
2018-11-12T22:04:22.158Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-12T22:04:22.158Z [main] silly: Executing:
2018-11-12T22:04:26.916Z [main] silly: StackSpec: {
"AWSTemplateFormatVersion": "2010-09-09",
"Transform": "AWS::Serverless-2016-10-31",
"Description": "description goes here",
"Resources": {
"ingestionStore": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"dynamodb:*"
],
"Resource": "arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-topN"
}
]
},
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"lambda:InvokeFunction"
],
"Resource": "arn:aws:lambda:eu-central-1:274788167589:function:mm-prod-major-ingestion-errorSink"
}
]
},
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"lambda:InvokeFunction"
],
"Resource": "arn:aws:lambda:eu-central-1:274788167589:function:mm-prod-major-ingestion-trafficStatsSink"
}
]
}
],
"Handler": "ingestion-store_Handler.handle",
"Description": "Ingest data into the metric machine",
"MemorySize": 1024,
"Timeout": 30,
"FunctionName": "mm-prod-major-ingestion-store",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-store.zip"
}
},
"ingestionErrorSink": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [],
"Handler": "ingestion-errorSink_Handler.handle",
"Description": "Track error reports",
"MemorySize": 1024,
"Timeout": 5,
"FunctionName": "mm-prod-major-ingestion-errorSink",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-errorSink.zip"
}
},
"ingestionTrafficStatsSink": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"dynamodb:*"
],
"Resource": "arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-trafficStats"
}
]
}
],
"Handler": "ingestion-trafficStatsSink_Handler.handle",
"Description": "Record various stats about RPC calls",
"MemorySize": 1024,
"Timeout": 5,
"FunctionName": "mm-prod-major-ingestion-trafficStatsSink",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-trafficStatsSink.zip"
}
},
"storageTrafficStats": {
"Type": "AWS::DynamoDB::Table",
"Properties": {
"AttributeDefinitions": [
{
"AttributeName": "metricName",
"AttributeType": "S"
},
{
"AttributeName": "slot",
"AttributeType": "N"
}
],
"KeySchema": [
{
"AttributeName": "metricName",
"KeyType": "HASH"
},
{
"AttributeName": "slot",
"KeyType": "RANGE"
}
],
"ProvisionedThroughput": {
"ReadCapacityUnits": 20,
"WriteCapacityUnits": 50
},
"TableName": "mm-prod-major-storage-trafficStats"
}
},
"storageTopN": {
"Type": "AWS::DynamoDB::Table",
"Properties": {
"AttributeDefinitions": [
{
"AttributeName": "id",
"AttributeType": "S"
},
{
"AttributeName": "slot",
"AttributeType": "N"
}
],
"KeySchema": [
{
"AttributeName": "id",
"KeyType": "HASH"
},
{
"AttributeName": "slot",
"KeyType": "RANGE"
}
],
"ProvisionedThroughput": {
"ReadCapacityUnits": 6,
"WriteCapacityUnits": 200
},
"TableName": "mm-prod-major-storage-topN"
}
}
}
}
2018-11-12T22:04:26.916Z [main] silly: Creating change set
2018-11-12T22:04:27.506Z [main] info: Waiting for ChangeSet (cs-ebd26f30-e6c6-11e8-86d3-1fa1870dc94f) to be ready
2018-11-12T22:04:27.506Z [main] info: Polling cycle #0
2018-11-12T22:04:27.866Z [main] silly: ChangeSet created. description=
{
"ResponseMetadata": {
"RequestId": "ec535f49-e6c6-11e8-b040-9db051f95411"
},
"ChangeSetName": "cs-ebd26f30-e6c6-11e8-86d3-1fa1870dc94f",
"ChangeSetId": "arn:aws:cloudformation:eu-central-1:274788167589:changeSet/cs-ebd26f30-e6c6-11e8-86d3-1fa1870dc94f/68d23e7c-55fc-4b45-8fbc-e0d836329ba2",
"StackId": "arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e",
"StackName": "mm-prod-major",
"Parameters": [],
"CreationTime": "2018-11-12T22:04:27.423Z",
"ExecutionStatus": "UNAVAILABLE",
"Status": "CREATE_IN_PROGRESS",
"NotificationARNs": [],
"RollbackConfiguration": {},
"Capabilities": [
"CAPABILITY_IAM"
],
"Tags": [],
"Changes": []
}
2018-11-12T22:04:37.873Z [main] info: Polling cycle #1
2018-11-12T22:04:38.387Z [main] silly: ChangeSet created. description=
{
"ResponseMetadata": {
"RequestId": "f29a468d-e6c6-11e8-a3a3-83ac8ae32d85"
},
"ChangeSetName": "cs-ebd26f30-e6c6-11e8-86d3-1fa1870dc94f",
"ChangeSetId": "arn:aws:cloudformation:eu-central-1:274788167589:changeSet/cs-ebd26f30-e6c6-11e8-86d3-1fa1870dc94f/68d23e7c-55fc-4b45-8fbc-e0d836329ba2",
"StackId": "arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e",
"StackName": "mm-prod-major",
"Parameters": [],
"CreationTime": "2018-11-12T22:04:27.423Z",
"ExecutionStatus": "UNAVAILABLE",
"Status": "FAILED",
"StatusReason": "No updates are to be performed.",
"NotificationARNs": [],
"RollbackConfiguration": {},
"Capabilities": [
"CAPABILITY_IAM"
],
"Tags": [],
"Changes": []
}
2018-11-12T22:04:38.388Z [main] info: Change set is empty
2018-11-12T22:10:19.591Z [main] silly: Packagr.run(spec_compiled, spec_compiled, undefined)
2018-11-12T22:10:19.595Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-12T22:10:19.595Z [main] silly: Executing:
2018-11-12T22:10:21.114Z [main] info:
2018-11-12T22:10:21.114Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-12T22:10:21.114Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-12T22:10:21.114Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-12T22:10:21.114Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-12T22:10:21.114Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-12T22:10:21.114Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-12T22:10:21.114Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-12T22:10:21.115Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-12T22:10:21.115Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-12T22:10:21.115Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-12T22:10:21.115Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-12T22:10:21.115Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-12T22:10:21.115Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-12T22:10:21.115Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-12T22:10:21.115Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-12T22:10:21.115Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-12T22:10:21.115Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-12T22:10:21.115Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-12T22:10:21.115Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-12T22:10:21.115Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-12T22:10:21.115Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-12T22:10:21.115Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-12T22:10:21.115Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-12T22:10:21.115Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-12T22:10:21.115Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-12T22:10:21.115Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-12T22:10:21.115Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-12T22:10:21.115Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-12T22:10:21.115Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-12T22:10:21.115Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-12T22:10:21.115Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-12T22:10:21.115Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-12T22:10:21.115Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-12T22:10:21.115Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-12T22:10:21.115Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-12T22:10:21.115Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-12T22:10:21.116Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-12T22:10:21.116Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-12T22:10:21.116Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-12T22:10:21.116Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-12T22:10:21.116Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-12T22:10:21.116Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-12T22:10:21.116Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-12T22:10:21.116Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-12T22:10:21.116Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-12T22:10:21.116Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-12T22:10:21.116Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-12T22:10:21.116Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-12T22:10:21.830Z [main] silly: Packagr.run(build, build, undefined)
2018-11-12T22:10:21.831Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-12T22:10:21.831Z [main] silly: Executing:
2018-11-12T22:10:25.880Z [main] info:
2018-11-12T22:10:25.884Z [main] silly: Packagr.run(build, build, undefined)
2018-11-12T22:10:25.884Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-12T22:10:25.884Z [main] silly: Executing:
2018-11-12T22:10:27.381Z [main] info:
2018-11-12T22:10:27.381Z [main] silly: Packagr.run(build, build, undefined)
2018-11-12T22:10:27.381Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-12T22:10:27.381Z [main] silly: Executing:
2018-11-12T22:10:31.523Z [main] info:
2018-11-12T22:10:32.248Z [main] silly: StackSpec: {
"AWSTemplateFormatVersion": "2010-09-09",
"Transform": "AWS::Serverless-2016-10-31",
"Description": "description goes here",
"Resources": {
"ingestionStore": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"dynamodb:*"
],
"Resource": "arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-topN"
}
]
},
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"lambda:InvokeFunction"
],
"Resource": "arn:aws:lambda:eu-central-1:274788167589:function:mm-prod-major-ingestion-errorSink"
}
]
},
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"lambda:InvokeFunction"
],
"Resource": "arn:aws:lambda:eu-central-1:274788167589:function:mm-prod-major-ingestion-trafficStatsSink"
}
]
}
],
"Handler": "ingestion-store_Handler.handle",
"Description": "Ingest data into the metric machine",
"MemorySize": 1024,
"Timeout": 30,
"FunctionName": "mm-prod-major-ingestion-store",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-store.zip"
}
},
"ingestionErrorSink": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [],
"Handler": "ingestion-errorSink_Handler.handle",
"Description": "Track error reports",
"MemorySize": 1024,
"Timeout": 5,
"FunctionName": "mm-prod-major-ingestion-errorSink",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-errorSink.zip"
}
},
"ingestionTrafficStatsSink": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"dynamodb:*"
],
"Resource": "arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-trafficStats"
}
]
}
],
"Handler": "ingestion-trafficStatsSink_Handler.handle",
"Description": "Record various stats about RPC calls",
"MemorySize": 1024,
"Timeout": 5,
"FunctionName": "mm-prod-major-ingestion-trafficStatsSink",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-trafficStatsSink.zip"
}
},
"storageTrafficStats": {
"Type": "AWS::DynamoDB::Table",
"Properties": {
"AttributeDefinitions": [
{
"AttributeName": "metricName",
"AttributeType": "S"
},
{
"AttributeName": "slot",
"AttributeType": "N"
}
],
"KeySchema": [
{
"AttributeName": "metricName",
"KeyType": "HASH"
},
{
"AttributeName": "slot",
"KeyType": "RANGE"
}
],
"ProvisionedThroughput": {
"ReadCapacityUnits": 20,
"WriteCapacityUnits": 50
},
"TableName": "mm-prod-major-storage-trafficStats"
}
},
"storageTopN": {
"Type": "AWS::DynamoDB::Table",
"Properties": {
"AttributeDefinitions": [
{
"AttributeName": "id",
"AttributeType": "S"
},
{
"AttributeName": "slot",
"AttributeType": "N"
}
],
"KeySchema": [
{
"AttributeName": "id",
"KeyType": "HASH"
},
{
"AttributeName": "slot",
"KeyType": "RANGE"
}
],
"ProvisionedThroughput": {
"ReadCapacityUnits": 6,
"WriteCapacityUnits": 200
},
"TableName": "mm-prod-major-storage-topN"
}
}
}
}
2018-11-12T22:10:32.249Z [main] silly: Creating change set
2018-11-12T22:10:32.781Z [main] info: Waiting for ChangeSet (cs-c593d380-e6c7-11e8-ba60-252d740d5d5b) to be ready
2018-11-12T22:10:32.782Z [main] info: Polling cycle #0
2018-11-12T22:10:33.229Z [main] silly: ChangeSet created. description=
{
"ResponseMetadata": {
"RequestId": "c60a3c2e-e6c7-11e8-a3a6-bfa57630341c"
},
"ChangeSetName": "cs-c593d380-e6c7-11e8-ba60-252d740d5d5b",
"ChangeSetId": "arn:aws:cloudformation:eu-central-1:274788167589:changeSet/cs-c593d380-e6c7-11e8-ba60-252d740d5d5b/9fb25df4-e579-4e19-93bf-eda5e8c0a450",
"StackId": "arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e",
"StackName": "mm-prod-major",
"Parameters": [],
"CreationTime": "2018-11-12T22:10:32.700Z",
"ExecutionStatus": "UNAVAILABLE",
"Status": "CREATE_IN_PROGRESS",
"NotificationARNs": [],
"RollbackConfiguration": {},
"Capabilities": [
"CAPABILITY_IAM"
],
"Tags": [],
"Changes": []
}
2018-11-12T22:10:43.237Z [main] info: Polling cycle #1
2018-11-12T22:10:43.923Z [main] silly: ChangeSet created. description=
{
"ResponseMetadata": {
"RequestId": "cc717cfd-e6c7-11e8-b2d3-a5d4687635a5"
},
"ChangeSetName": "cs-c593d380-e6c7-11e8-ba60-252d740d5d5b",
"ChangeSetId": "arn:aws:cloudformation:eu-central-1:274788167589:changeSet/cs-c593d380-e6c7-11e8-ba60-252d740d5d5b/9fb25df4-e579-4e19-93bf-eda5e8c0a450",
"StackId": "arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e",
"StackName": "mm-prod-major",
"Parameters": [],
"CreationTime": "2018-11-12T22:10:32.700Z",
"ExecutionStatus": "UNAVAILABLE",
"Status": "FAILED",
"StatusReason": "No updates are to be performed.",
"NotificationARNs": [],
"RollbackConfiguration": {},
"Capabilities": [
"CAPABILITY_IAM"
],
"Tags": [],
"Changes": []
}
2018-11-12T22:10:43.923Z [main] info: Change set is empty
2018-11-13T11:22:11.963Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-13T11:22:11.965Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T11:22:11.965Z [main] silly: Executing:
2018-11-13T11:22:13.068Z [main] info: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T11:22:13.792Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T11:22:13.792Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T11:22:13.792Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T11:22:13.792Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T11:22:13.792Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T11:22:13.792Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T11:22:13.792Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-13T11:22:13.792Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T11:22:13.792Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T11:22:13.792Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T11:22:13.792Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T11:22:13.792Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T11:22:13.793Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T11:22:13.793Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T11:22:13.793Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T11:22:13.793Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T11:22:13.793Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T11:22:13.793Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T11:22:13.793Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T11:22:13.793Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T11:22:13.793Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T11:22:13.793Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T11:22:13.793Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T11:22:13.793Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T11:22:13.793Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T11:22:13.793Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T11:22:13.793Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T11:22:13.793Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T11:22:13.793Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T11:22:13.793Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-13T11:22:13.793Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T11:22:13.793Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T11:22:13.793Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T11:22:13.793Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T11:22:13.793Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T11:22:13.793Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T11:22:13.794Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T11:22:13.794Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T11:22:13.794Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T11:22:13.794Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T11:22:13.794Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-13T11:22:13.794Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-13T11:22:13.794Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-13T11:22:13.794Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T11:22:13.794Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T11:22:13.794Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T11:22:13.794Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T11:22:13.794Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T11:22:50.841Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-13T11:22:50.843Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T11:22:50.844Z [main] silly: Executing:
2018-11-13T11:22:51.929Z [main] info: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T11:22:52.565Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T11:22:52.566Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T11:22:52.566Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T11:22:52.566Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T11:22:52.566Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T11:22:52.566Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T11:22:52.566Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-13T11:22:52.566Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T11:22:52.566Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T11:22:52.566Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T11:22:52.566Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T11:22:52.566Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T11:22:52.566Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T11:22:52.566Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T11:22:52.566Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T11:22:52.566Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T11:22:52.566Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T11:22:52.566Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T11:22:52.566Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T11:22:52.566Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T11:22:52.566Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T11:22:52.566Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T11:22:52.566Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T11:22:52.566Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T11:22:52.566Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T11:22:52.566Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T11:22:52.567Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T11:22:52.567Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T11:22:52.567Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T11:22:52.567Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-13T11:22:52.567Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T11:22:52.567Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T11:22:52.567Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T11:22:52.567Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T11:22:52.567Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T11:22:52.567Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T11:22:52.567Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T11:22:52.567Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T11:22:52.567Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T11:22:52.567Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T11:22:52.567Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-13T11:22:52.567Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-13T11:22:52.567Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-13T11:22:52.567Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T11:22:52.567Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T11:22:52.567Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T11:22:52.567Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T11:22:52.567Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T11:28:11.997Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-13T11:28:11.999Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T11:28:11.999Z [main] silly: Executing:
2018-11-13T11:28:13.026Z [main] info: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T11:28:13.753Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T11:28:13.753Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T11:28:13.753Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T11:28:13.753Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T11:28:13.753Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T11:28:13.753Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-13T11:28:13.753Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T11:28:13.753Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-13T11:28:13.753Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T11:28:13.754Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T11:28:13.754Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T11:28:13.754Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T11:28:13.754Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T11:28:13.754Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T11:28:13.754Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T11:28:13.754Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T11:28:13.754Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T11:28:13.754Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T11:28:13.754Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T11:28:13.754Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T11:28:13.754Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T11:28:13.754Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T11:28:13.754Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T11:28:13.754Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T11:28:13.754Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T11:28:13.754Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T11:28:13.754Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T11:28:13.754Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T11:28:13.754Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T11:28:13.754Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T11:28:13.754Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-13T11:28:13.754Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T11:28:13.754Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T11:28:13.754Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T11:28:13.754Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T11:28:13.754Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T11:28:13.754Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T11:28:13.755Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T11:28:13.755Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T11:28:13.755Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T11:28:13.755Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T11:28:13.755Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-13T11:28:13.755Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-13T11:28:13.755Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-13T11:28:13.755Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T11:28:13.755Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T11:28:13.755Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T11:28:13.755Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T11:28:13.755Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T11:47:47.476Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-13T11:47:47.479Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T11:47:47.479Z [main] silly: Executing:
2018-11-13T11:47:48.650Z [main] info: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T11:47:49.389Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T11:47:49.389Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T11:47:49.389Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T11:47:49.390Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T11:47:49.390Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T11:47:49.390Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-13T11:47:49.390Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T11:47:49.390Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-13T11:47:49.390Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T11:47:49.390Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T11:47:49.390Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T11:47:49.390Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T11:47:49.390Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T11:47:49.390Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T11:47:49.390Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T11:47:49.390Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T11:47:49.391Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T11:47:49.391Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T11:47:49.391Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T11:47:49.391Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T11:47:49.391Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T11:47:49.391Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T11:47:49.391Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T11:47:49.391Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T11:47:49.391Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T11:47:49.391Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T11:47:49.391Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T11:47:49.391Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T11:47:49.391Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T11:47:49.391Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T11:47:49.391Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-13T11:47:49.391Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T11:47:49.391Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T11:47:49.391Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T11:47:49.392Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T11:47:49.392Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T11:47:49.392Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T11:47:49.392Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T11:47:49.392Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T11:47:49.392Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T11:47:49.392Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T11:47:49.392Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-13T11:47:49.392Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-13T11:47:49.392Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-13T11:47:49.392Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T11:47:49.392Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T11:47:49.392Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T11:47:49.392Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T11:47:49.392Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T11:50:24.421Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-13T11:50:24.423Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T11:50:24.424Z [main] silly: Executing:
2018-11-13T11:50:25.626Z [main] info: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T11:50:26.366Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T11:50:26.366Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T11:50:26.366Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T11:50:26.366Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T11:50:26.366Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T11:50:26.366Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-13T11:50:26.366Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T11:50:26.366Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-13T11:50:26.366Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T11:50:26.366Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T11:50:26.366Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T11:50:26.366Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T11:50:26.366Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T11:50:26.366Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T11:50:26.366Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T11:50:26.367Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T11:50:26.367Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T11:50:26.367Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T11:50:26.367Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T11:50:26.367Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T11:50:26.367Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T11:50:26.367Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T11:50:26.367Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T11:50:26.367Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T11:50:26.367Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T11:50:26.367Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T11:50:26.367Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T11:50:26.367Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T11:50:26.368Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T11:50:26.368Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T11:50:26.368Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-13T11:50:26.368Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T11:50:26.368Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T11:50:26.368Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T11:50:26.368Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T11:50:26.368Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T11:50:26.368Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T11:50:26.368Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T11:50:26.368Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T11:50:26.368Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T11:50:26.368Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T11:50:26.368Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-13T11:50:26.368Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-13T11:50:26.368Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-13T11:50:26.368Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T11:50:26.369Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T11:50:26.369Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T11:50:26.369Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T11:50:26.369Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T11:50:58.632Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-13T11:50:58.635Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T11:50:58.635Z [main] silly: Executing:
2018-11-13T11:50:59.838Z [main] info: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T11:51:00.578Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T11:51:00.579Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T11:51:00.579Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T11:51:00.579Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T11:51:00.579Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T11:51:00.579Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-13T11:51:00.579Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T11:51:00.579Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-13T11:51:00.579Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T11:51:00.579Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T11:51:00.579Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T11:51:00.579Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T11:51:00.579Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T11:51:00.579Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T11:51:00.579Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T11:51:00.579Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T11:51:00.579Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T11:51:00.579Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T11:51:00.579Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T11:51:00.580Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T11:51:00.580Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T11:51:00.580Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T11:51:00.580Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T11:51:00.580Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T11:51:00.580Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T11:51:00.580Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T11:51:00.580Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T11:51:00.580Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T11:51:00.580Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T11:51:00.580Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T11:51:00.580Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-13T11:51:00.580Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T11:51:00.580Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T11:51:00.580Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T11:51:00.580Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T11:51:00.580Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T11:51:00.580Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T11:51:00.580Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T11:51:00.580Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T11:51:00.580Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T11:51:00.580Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T11:51:00.580Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-13T11:51:00.581Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-13T11:51:00.581Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-13T11:51:00.581Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T11:51:00.581Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T11:51:00.581Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T11:51:00.581Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T11:51:00.581Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T12:12:13.930Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-13T12:12:13.931Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T12:12:13.932Z [main] silly: Executing:
2018-11-13T12:12:14.857Z [main] info: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T12:12:15.558Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T12:12:15.559Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T12:12:15.559Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T12:12:15.559Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T12:12:15.559Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:12:15.559Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-13T12:12:15.559Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T12:12:15.559Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-13T12:12:15.559Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T12:12:15.559Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T12:12:15.559Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T12:12:15.559Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T12:12:15.559Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T12:12:15.559Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T12:12:15.559Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:12:15.559Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T12:12:15.559Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T12:12:15.559Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T12:12:15.559Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:12:15.559Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T12:12:15.559Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T12:12:15.559Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T12:12:15.559Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T12:12:15.559Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:12:15.559Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T12:12:15.559Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T12:12:15.560Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T12:12:15.560Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:12:15.560Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T12:12:15.560Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T12:12:15.560Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-13T12:12:15.560Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T12:12:15.560Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T12:12:15.560Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T12:12:15.560Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T12:12:15.560Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T12:12:15.560Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T12:12:15.560Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T12:12:15.560Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T12:12:15.560Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T12:12:15.560Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T12:12:15.560Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-13T12:12:15.560Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-13T12:12:15.560Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-13T12:12:15.560Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T12:12:15.560Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T12:12:15.560Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T12:12:15.560Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T12:12:15.560Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T12:33:19.087Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-13T12:33:19.088Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T12:33:19.089Z [main] silly: Executing:
2018-11-13T12:33:19.988Z [main] info: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T12:33:20.566Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T12:33:20.566Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T12:33:20.566Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T12:33:20.566Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T12:33:20.566Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:33:20.566Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-13T12:33:20.566Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T12:33:20.566Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-13T12:33:20.566Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T12:33:20.567Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T12:33:20.567Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T12:33:20.567Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T12:33:20.567Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T12:33:20.567Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T12:33:20.567Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:33:20.567Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T12:33:20.567Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T12:33:20.567Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T12:33:20.567Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:33:20.567Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T12:33:20.567Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T12:33:20.567Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T12:33:20.567Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T12:33:20.567Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:33:20.567Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T12:33:20.567Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T12:33:20.567Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T12:33:20.567Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:33:20.567Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T12:33:20.567Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T12:33:20.567Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-13T12:33:20.567Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T12:33:20.567Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T12:33:20.567Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T12:33:20.567Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T12:33:20.567Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T12:33:20.567Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T12:33:20.567Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T12:33:20.568Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T12:33:20.568Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T12:33:20.568Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T12:33:20.568Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-13T12:33:20.568Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-13T12:33:20.568Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-13T12:33:20.568Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T12:33:20.568Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T12:33:20.568Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T12:33:20.568Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T12:33:20.568Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T12:33:39.588Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-13T12:33:39.590Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T12:33:39.590Z [main] silly: Executing:
2018-11-13T12:33:40.492Z [main] info: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T12:33:41.027Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T12:33:41.027Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T12:33:41.027Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T12:33:41.027Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T12:33:41.027Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:33:41.027Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-13T12:33:41.027Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T12:33:41.028Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-13T12:33:41.028Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T12:33:41.028Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T12:33:41.028Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T12:33:41.028Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T12:33:41.028Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T12:33:41.028Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T12:33:41.028Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:33:41.028Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T12:33:41.028Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T12:33:41.028Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T12:33:41.028Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:33:41.028Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T12:33:41.028Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T12:33:41.028Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T12:33:41.028Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T12:33:41.028Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:33:41.028Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T12:33:41.028Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T12:33:41.028Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T12:33:41.028Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:33:41.028Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T12:33:41.028Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T12:33:41.028Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-13T12:33:41.028Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T12:33:41.028Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T12:33:41.028Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T12:33:41.028Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T12:33:41.028Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T12:33:41.028Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T12:33:41.029Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T12:33:41.029Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T12:33:41.029Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T12:33:41.029Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T12:33:41.029Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-13T12:33:41.029Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-13T12:33:41.029Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-13T12:33:41.029Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T12:33:41.029Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T12:33:41.029Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T12:33:41.029Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T12:33:41.029Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T12:34:40.254Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-13T12:34:40.256Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T12:34:40.256Z [main] silly: Executing:
2018-11-13T12:34:41.125Z [main] info: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T12:34:41.703Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T12:34:41.704Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T12:34:41.704Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T12:34:41.704Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T12:34:41.704Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:34:41.704Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-13T12:34:41.704Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T12:34:41.704Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-13T12:34:41.704Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T12:34:41.704Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T12:34:41.704Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T12:34:41.704Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T12:34:41.704Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T12:34:41.704Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T12:34:41.704Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:34:41.704Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T12:34:41.704Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T12:34:41.704Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T12:34:41.704Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:34:41.704Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T12:34:41.704Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T12:34:41.704Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T12:34:41.704Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T12:34:41.704Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:34:41.704Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T12:34:41.704Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T12:34:41.704Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T12:34:41.704Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:34:41.704Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T12:34:41.705Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T12:34:41.705Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-13T12:34:41.705Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T12:34:41.705Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T12:34:41.705Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T12:34:41.705Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T12:34:41.705Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T12:34:41.705Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T12:34:41.705Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T12:34:41.705Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T12:34:41.705Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T12:34:41.705Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T12:34:41.705Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-13T12:34:41.705Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-13T12:34:41.705Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-13T12:34:41.705Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T12:34:41.705Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T12:34:41.705Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T12:34:41.705Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T12:34:41.705Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T12:34:42.355Z [main] silly: Packing src/store/compute into build
2018-11-13T12:34:42.355Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-13T12:34:42.356Z [main] silly: Executing:
2018-11-13T12:34:45.693Z [main] info: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-13T12:34:46.259Z [main] silly: Packing src/support/errorSink into build
2018-11-13T12:34:46.259Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-13T12:34:46.259Z [main] silly: Executing:
2018-11-13T12:34:47.141Z [main] info: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-13T12:34:47.669Z [main] silly: Packing src/support/trafficStatsSink into build
2018-11-13T12:34:47.669Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-13T12:34:47.669Z [main] silly: Executing:
2018-11-13T12:34:50.887Z [main] info: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-13T12:34:52.133Z [main] silly: StackSpec: {
"AWSTemplateFormatVersion": "2010-09-09",
"Transform": "AWS::Serverless-2016-10-31",
"Description": "description goes here",
"Resources": {
"ingestionStore": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"dynamodb:*"
],
"Resource": "arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-topN"
}
]
},
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"lambda:InvokeFunction"
],
"Resource": "arn:aws:lambda:eu-central-1:274788167589:function:mm-prod-major-ingestion-errorSink"
}
]
},
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"lambda:InvokeFunction"
],
"Resource": "arn:aws:lambda:eu-central-1:274788167589:function:mm-prod-major-ingestion-trafficStatsSink"
}
]
}
],
"Handler": "ingestion-store_Handler.handle",
"Description": "Ingest data into the metric machine",
"MemorySize": 1024,
"Timeout": 30,
"FunctionName": "mm-prod-major-ingestion-store",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-store.zip"
}
},
"ingestionErrorSink": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [],
"Handler": "ingestion-errorSink_Handler.handle",
"Description": "Track error reports",
"MemorySize": 1024,
"Timeout": 5,
"FunctionName": "mm-prod-major-ingestion-errorSink",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-errorSink.zip"
}
},
"ingestionTrafficStatsSink": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"dynamodb:*"
],
"Resource": "arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-trafficStats"
}
]
}
],
"Handler": "ingestion-trafficStatsSink_Handler.handle",
"Description": "Record various stats about RPC calls",
"MemorySize": 1024,
"Timeout": 5,
"FunctionName": "mm-prod-major-ingestion-trafficStatsSink",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-trafficStatsSink.zip"
}
},
"storageTrafficStats": {
"Type": "AWS::DynamoDB::Table",
"Properties": {
"AttributeDefinitions": [
{
"AttributeName": "metricName",
"AttributeType": "S"
},
{
"AttributeName": "slot",
"AttributeType": "N"
}
],
"KeySchema": [
{
"AttributeName": "metricName",
"KeyType": "HASH"
},
{
"AttributeName": "slot",
"KeyType": "RANGE"
}
],
"ProvisionedThroughput": {
"ReadCapacityUnits": 20,
"WriteCapacityUnits": 50
},
"TableName": "mm-prod-major-storage-trafficStats"
}
},
"storageTopN": {
"Type": "AWS::DynamoDB::Table",
"Properties": {
"AttributeDefinitions": [
{
"AttributeName": "id",
"AttributeType": "S"
},
{
"AttributeName": "slot",
"AttributeType": "N"
}
],
"KeySchema": [
{
"AttributeName": "id",
"KeyType": "HASH"
},
{
"AttributeName": "slot",
"KeyType": "RANGE"
}
],
"ProvisionedThroughput": {
"ReadCapacityUnits": 6,
"WriteCapacityUnits": 200
},
"TableName": "mm-prod-major-storage-topN"
}
}
}
}
2018-11-13T12:34:52.133Z [main] silly: Creating change set
2018-11-13T12:34:53.348Z [main] info: Waiting for ChangeSet (cs-847a2240-e740-11e8-bd62-0f563f5fae47) to be ready
2018-11-13T12:34:53.349Z [main] info: .
2018-11-13T12:34:53.757Z [main] silly: ChangeSet created. description=
{
"ResponseMetadata": {
"RequestId": "85560402-e740-11e8-9073-fbc08cbc194a"
},
"ChangeSetName": "cs-847a2240-e740-11e8-bd62-0f563f5fae47",
"ChangeSetId": "arn:aws:cloudformation:eu-central-1:274788167589:changeSet/cs-847a2240-e740-11e8-bd62-0f563f5fae47/e67ac380-bf6a-4d69-a492-b7bc9d52c09a",
"StackId": "arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e",
"StackName": "mm-prod-major",
"Parameters": [],
"CreationTime": "2018-11-13T12:34:53.050Z",
"ExecutionStatus": "UNAVAILABLE",
"Status": "CREATE_IN_PROGRESS",
"NotificationARNs": [],
"RollbackConfiguration": {},
"Capabilities": [
"CAPABILITY_IAM"
],
"Tags": [],
"Changes": []
}
2018-11-13T12:35:03.766Z [main] info: ..
2018-11-13T12:35:04.403Z [main] silly: ChangeSet created. description=
{
"ResponseMetadata": {
"RequestId": "8baa0aca-e740-11e8-bd35-b1d801199bc3"
},
"ChangeSetName": "cs-847a2240-e740-11e8-bd62-0f563f5fae47",
"ChangeSetId": "arn:aws:cloudformation:eu-central-1:274788167589:changeSet/cs-847a2240-e740-11e8-bd62-0f563f5fae47/e67ac380-bf6a-4d69-a492-b7bc9d52c09a",
"StackId": "arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e",
"StackName": "mm-prod-major",
"Parameters": [],
"CreationTime": "2018-11-13T12:34:53.050Z",
"ExecutionStatus": "UNAVAILABLE",
"Status": "FAILED",
"StatusReason": "No updates are to be performed.",
"NotificationARNs": [],
"RollbackConfiguration": {},
"Capabilities": [
"CAPABILITY_IAM"
],
"Tags": [],
"Changes": []
}
2018-11-13T12:35:04.403Z [main] info: Change set is empty
2018-11-13T12:35:21.719Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-13T12:35:21.721Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T12:35:21.721Z [main] silly: Executing:
2018-11-13T12:35:22.639Z [main] info: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T12:35:23.216Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T12:35:23.216Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T12:35:23.216Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T12:35:23.216Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T12:35:23.216Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:35:23.216Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-13T12:35:23.216Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T12:35:23.216Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-13T12:35:23.216Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T12:35:23.217Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T12:35:23.217Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T12:35:23.217Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T12:35:23.217Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T12:35:23.217Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T12:35:23.217Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:35:23.217Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T12:35:23.217Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T12:35:23.217Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T12:35:23.217Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:35:23.217Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T12:35:23.217Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T12:35:23.217Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T12:35:23.217Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T12:35:23.217Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:35:23.217Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T12:35:23.217Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T12:35:23.217Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T12:35:23.217Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:35:23.217Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T12:35:23.217Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T12:35:23.217Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-13T12:35:23.217Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T12:35:23.217Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T12:35:23.217Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T12:35:23.217Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T12:35:23.217Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T12:35:23.217Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T12:35:23.217Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T12:35:23.218Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T12:35:23.218Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T12:35:23.218Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T12:35:23.218Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-13T12:35:23.218Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-13T12:35:23.218Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-13T12:35:23.218Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T12:35:23.218Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T12:35:23.218Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T12:35:23.218Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T12:35:23.218Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T12:37:10.357Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-13T12:37:10.358Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T12:37:10.358Z [main] silly: Executing:
2018-11-13T12:37:11.263Z [main] info: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T12:37:11.791Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T12:37:11.792Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T12:37:11.792Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T12:37:11.792Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T12:37:11.792Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:37:11.792Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-13T12:37:11.792Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T12:37:11.792Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-13T12:37:11.792Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T12:37:11.792Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T12:37:11.792Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T12:37:11.792Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T12:37:11.792Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T12:37:11.792Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T12:37:11.792Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:37:11.792Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T12:37:11.792Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T12:37:11.792Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T12:37:11.792Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:37:11.792Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T12:37:11.792Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T12:37:11.792Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T12:37:11.792Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T12:37:11.792Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:37:11.792Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T12:37:11.792Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T12:37:11.793Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T12:37:11.793Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:37:11.793Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T12:37:11.793Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T12:37:11.793Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-13T12:37:11.793Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T12:37:11.793Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T12:37:11.793Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T12:37:11.793Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T12:37:11.793Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T12:37:11.793Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T12:37:11.793Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T12:37:11.793Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T12:37:11.793Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T12:37:11.793Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T12:37:11.793Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-13T12:37:11.793Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-13T12:37:11.793Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-13T12:37:11.793Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T12:37:11.793Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T12:37:11.793Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T12:37:11.793Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T12:37:11.793Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T12:40:03.820Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-13T12:40:03.821Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T12:40:03.822Z [main] silly: Executing:
2018-11-13T12:40:04.722Z [main] info: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T12:40:05.270Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T12:40:05.270Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T12:40:05.270Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T12:40:05.270Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T12:40:05.270Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:40:05.270Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-13T12:40:05.270Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T12:40:05.270Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-13T12:40:05.270Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T12:40:05.270Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T12:40:05.270Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T12:40:05.270Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T12:40:05.270Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T12:40:05.270Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T12:40:05.270Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:40:05.270Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T12:40:05.270Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T12:40:05.270Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T12:40:05.271Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:40:05.271Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T12:40:05.271Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T12:40:05.271Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T12:40:05.271Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T12:40:05.271Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:40:05.271Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T12:40:05.271Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T12:40:05.271Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T12:40:05.271Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:40:05.271Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T12:40:05.271Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T12:40:05.271Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-13T12:40:05.271Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T12:40:05.271Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T12:40:05.271Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T12:40:05.271Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T12:40:05.271Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T12:40:05.271Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T12:40:05.271Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T12:40:05.271Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T12:40:05.271Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T12:40:05.271Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T12:40:05.271Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-13T12:40:05.271Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-13T12:40:05.271Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-13T12:40:05.271Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T12:40:05.271Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T12:40:05.271Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T12:40:05.272Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T12:40:05.272Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T12:40:16.929Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-13T12:40:16.931Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T12:40:16.931Z [main] silly: Executing:
2018-11-13T12:40:17.842Z [main] info: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T12:40:18.421Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T12:40:18.421Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T12:40:18.421Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T12:40:18.421Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T12:40:18.422Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:40:18.422Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-13T12:40:18.422Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T12:40:18.422Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-13T12:40:18.422Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T12:40:18.422Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T12:40:18.422Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T12:40:18.422Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T12:40:18.422Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T12:40:18.422Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T12:40:18.422Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:40:18.422Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T12:40:18.422Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T12:40:18.422Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T12:40:18.422Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:40:18.422Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T12:40:18.422Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T12:40:18.422Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T12:40:18.422Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T12:40:18.422Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:40:18.422Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T12:40:18.422Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T12:40:18.422Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T12:40:18.422Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T12:40:18.422Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T12:40:18.422Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T12:40:18.422Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-13T12:40:18.422Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T12:40:18.422Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T12:40:18.423Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T12:40:18.423Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T12:40:18.423Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T12:40:18.423Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T12:40:18.423Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T12:40:18.423Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T12:40:18.423Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T12:40:18.423Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T12:40:18.423Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-13T12:40:18.423Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-13T12:40:18.423Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-13T12:40:18.423Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T12:40:18.423Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T12:40:18.423Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T12:40:18.423Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T12:40:18.423Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T13:45:53.532Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-13T13:45:53.534Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T13:45:53.534Z [main] silly: Executing:
2018-11-13T13:45:54.417Z [main] info: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T13:45:54.982Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T13:45:54.982Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T13:45:54.983Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T13:45:54.983Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T13:45:54.983Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:45:54.983Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-13T13:45:54.983Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T13:45:54.983Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-13T13:45:54.983Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T13:45:54.983Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T13:45:54.983Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T13:45:54.983Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T13:45:54.983Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T13:45:54.983Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T13:45:54.983Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:45:54.983Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T13:45:54.983Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T13:45:54.983Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T13:45:54.983Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:45:54.983Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T13:45:54.983Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T13:45:54.983Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T13:45:54.983Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T13:45:54.983Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:45:54.983Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T13:45:54.983Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T13:45:54.983Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T13:45:54.983Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:45:54.984Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T13:45:54.984Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T13:45:54.984Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-13T13:45:54.984Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T13:45:54.984Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T13:45:54.984Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T13:45:54.984Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T13:45:54.984Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T13:45:54.984Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T13:45:54.984Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T13:45:54.984Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T13:45:54.984Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T13:45:54.984Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T13:45:54.984Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-13T13:45:54.984Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-13T13:45:54.984Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-13T13:45:54.984Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T13:45:54.984Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T13:45:54.984Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T13:45:54.984Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T13:45:54.984Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T13:46:55.765Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-13T13:46:55.767Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T13:46:55.767Z [main] silly: Executing:
2018-11-13T13:46:56.665Z [main] info: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T13:46:57.199Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T13:46:57.199Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T13:46:57.199Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T13:46:57.199Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T13:46:57.199Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:46:57.199Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-13T13:46:57.199Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T13:46:57.199Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-13T13:46:57.199Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T13:46:57.199Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T13:46:57.199Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T13:46:57.199Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T13:46:57.199Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T13:46:57.199Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T13:46:57.199Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:46:57.199Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T13:46:57.199Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T13:46:57.199Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T13:46:57.199Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:46:57.199Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T13:46:57.199Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T13:46:57.200Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T13:46:57.200Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T13:46:57.200Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:46:57.200Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T13:46:57.200Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T13:46:57.200Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T13:46:57.200Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:46:57.200Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T13:46:57.200Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T13:46:57.200Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-13T13:46:57.200Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T13:46:57.200Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T13:46:57.200Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T13:46:57.200Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T13:46:57.200Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T13:46:57.200Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T13:46:57.200Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T13:46:57.200Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T13:46:57.200Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T13:46:57.200Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T13:46:57.200Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-13T13:46:57.200Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-13T13:46:57.200Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-13T13:46:57.200Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T13:46:57.200Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T13:46:57.200Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T13:46:57.200Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T13:46:57.200Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T13:47:23.152Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-13T13:47:23.155Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T13:47:23.155Z [main] silly: Executing:
2018-11-13T13:47:24.031Z [main] info: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T13:47:24.576Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T13:47:24.576Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T13:47:24.576Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T13:47:24.576Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T13:47:24.576Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:47:24.576Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-13T13:47:24.576Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T13:47:24.576Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-13T13:47:24.576Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T13:47:24.576Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T13:47:24.576Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T13:47:24.576Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T13:47:24.576Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T13:47:24.576Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T13:47:24.576Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:47:24.576Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T13:47:24.576Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T13:47:24.576Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T13:47:24.576Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:47:24.576Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T13:47:24.576Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T13:47:24.577Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T13:47:24.577Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T13:47:24.577Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:47:24.577Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T13:47:24.577Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T13:47:24.577Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T13:47:24.577Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:47:24.577Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T13:47:24.577Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T13:47:24.577Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-13T13:47:24.577Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T13:47:24.577Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T13:47:24.577Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T13:47:24.577Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T13:47:24.577Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T13:47:24.577Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T13:47:24.577Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T13:47:24.577Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T13:47:24.577Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T13:47:24.577Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T13:47:24.577Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-13T13:47:24.577Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-13T13:47:24.577Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-13T13:47:24.577Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T13:47:24.577Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T13:47:24.577Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T13:47:24.577Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T13:47:24.577Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T13:48:56.538Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-13T13:48:56.540Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T13:48:56.540Z [main] silly: Executing:
2018-11-13T13:48:57.428Z [main] info: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T13:48:58.002Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T13:48:58.002Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T13:48:58.002Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T13:48:58.002Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T13:48:58.002Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:48:58.003Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-13T13:48:58.003Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T13:48:58.003Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-13T13:48:58.003Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T13:48:58.003Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T13:48:58.003Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T13:48:58.003Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T13:48:58.003Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T13:48:58.003Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T13:48:58.003Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:48:58.003Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T13:48:58.003Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T13:48:58.003Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T13:48:58.003Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:48:58.003Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T13:48:58.003Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T13:48:58.003Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T13:48:58.003Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T13:48:58.003Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:48:58.003Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T13:48:58.003Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T13:48:58.003Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T13:48:58.003Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:48:58.003Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T13:48:58.003Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T13:48:58.003Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-13T13:48:58.003Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T13:48:58.003Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T13:48:58.003Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T13:48:58.004Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T13:48:58.004Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T13:48:58.004Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T13:48:58.004Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T13:48:58.004Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T13:48:58.004Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T13:48:58.004Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T13:48:58.004Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-13T13:48:58.004Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-13T13:48:58.004Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-13T13:48:58.004Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T13:48:58.004Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T13:48:58.004Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T13:48:58.004Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T13:48:58.004Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T13:49:14.848Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-13T13:49:14.850Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T13:49:14.850Z [main] silly: Executing:
2018-11-13T13:49:15.770Z [main] info: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T13:49:16.335Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T13:49:16.335Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T13:49:16.335Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T13:49:16.335Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T13:49:16.335Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:49:16.335Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-13T13:49:16.335Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T13:49:16.335Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-13T13:49:16.335Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T13:49:16.335Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T13:49:16.335Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T13:49:16.335Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T13:49:16.335Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T13:49:16.335Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T13:49:16.335Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:49:16.335Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T13:49:16.335Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T13:49:16.335Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T13:49:16.335Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:49:16.335Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T13:49:16.335Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T13:49:16.336Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T13:49:16.336Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T13:49:16.336Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:49:16.336Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T13:49:16.336Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T13:49:16.336Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T13:49:16.336Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:49:16.336Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T13:49:16.336Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T13:49:16.336Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-13T13:49:16.336Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T13:49:16.336Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T13:49:16.336Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T13:49:16.336Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T13:49:16.336Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T13:49:16.336Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T13:49:16.336Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T13:49:16.336Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T13:49:16.336Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T13:49:16.336Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T13:49:16.336Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-13T13:49:16.336Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-13T13:49:16.336Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-13T13:49:16.336Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T13:49:16.336Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T13:49:16.336Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T13:49:16.336Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T13:49:16.336Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T13:54:42.673Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-13T13:54:42.675Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T13:54:42.675Z [main] silly: Executing:
2018-11-13T13:54:43.556Z [main] info: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T13:54:44.160Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T13:54:44.160Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T13:54:44.160Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T13:54:44.160Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T13:54:44.160Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:54:44.160Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-13T13:54:44.160Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T13:54:44.160Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-13T13:54:44.160Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T13:54:44.160Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T13:54:44.160Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T13:54:44.160Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T13:54:44.160Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T13:54:44.161Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T13:54:44.161Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:54:44.161Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T13:54:44.161Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T13:54:44.161Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T13:54:44.161Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:54:44.161Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T13:54:44.161Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T13:54:44.161Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T13:54:44.161Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T13:54:44.161Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:54:44.161Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T13:54:44.161Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T13:54:44.161Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T13:54:44.161Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:54:44.161Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T13:54:44.161Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T13:54:44.161Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-13T13:54:44.161Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T13:54:44.161Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T13:54:44.161Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T13:54:44.161Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T13:54:44.161Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T13:54:44.161Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T13:54:44.161Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T13:54:44.161Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T13:54:44.162Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T13:54:44.162Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T13:54:44.162Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-13T13:54:44.162Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-13T13:54:44.162Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-13T13:54:44.162Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T13:54:44.162Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T13:54:44.162Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T13:54:44.162Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T13:54:44.162Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T13:54:44.823Z [main] silly: Packing src/store/compute into build
2018-11-13T13:54:44.823Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-13T13:54:44.823Z [main] silly: Executing:
2018-11-13T13:54:48.031Z [main] info: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-13T13:54:48.598Z [main] silly: Packing src/support/errorSink into build
2018-11-13T13:54:48.598Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-13T13:54:48.599Z [main] silly: Executing:
2018-11-13T13:54:49.480Z [main] info: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-13T13:54:50.007Z [main] silly: Packing src/support/trafficStatsSink into build
2018-11-13T13:54:50.008Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-13T13:54:50.008Z [main] silly: Executing:
2018-11-13T13:54:53.305Z [main] info: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-13T13:54:54.498Z [main] silly: StackSpec: {
"AWSTemplateFormatVersion": "2010-09-09",
"Transform": "AWS::Serverless-2016-10-31",
"Description": "description goes here",
"Resources": {
"ingestionStore": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"dynamodb:*"
],
"Resource": "arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-topN"
}
]
},
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"lambda:InvokeFunction"
],
"Resource": "arn:aws:lambda:eu-central-1:274788167589:function:mm-prod-major-ingestion-errorSink"
}
]
},
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"lambda:InvokeFunction"
],
"Resource": "arn:aws:lambda:eu-central-1:274788167589:function:mm-prod-major-ingestion-trafficStatsSink"
}
]
}
],
"Handler": "ingestion-store_Handler.handle",
"Description": "Ingest data into the metric machine",
"MemorySize": 1024,
"Timeout": 30,
"FunctionName": "mm-prod-major-ingestion-store",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-store.zip"
}
},
"ingestionErrorSink": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [],
"Handler": "ingestion-errorSink_Handler.handle",
"Description": "Track error reports",
"MemorySize": 1024,
"Timeout": 5,
"ReservedConcurrentExecutions": 1,
"FunctionName": "mm-prod-major-ingestion-errorSink",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-errorSink.zip"
}
},
"ingestionTrafficStatsSink": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"dynamodb:*"
],
"Resource": "arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-trafficStats"
}
]
}
],
"Handler": "ingestion-trafficStatsSink_Handler.handle",
"Description": "Record various stats about RPC calls",
"MemorySize": 1024,
"Timeout": 5,
"FunctionName": "mm-prod-major-ingestion-trafficStatsSink",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-trafficStatsSink.zip"
}
},
"storageTrafficStats": {
"Type": "AWS::DynamoDB::Table",
"Properties": {
"AttributeDefinitions": [
{
"AttributeName": "metricName",
"AttributeType": "S"
},
{
"AttributeName": "slot",
"AttributeType": "N"
}
],
"KeySchema": [
{
"AttributeName": "metricName",
"KeyType": "HASH"
},
{
"AttributeName": "slot",
"KeyType": "RANGE"
}
],
"ProvisionedThroughput": {
"ReadCapacityUnits": 20,
"WriteCapacityUnits": 50
},
"TableName": "mm-prod-major-storage-trafficStats"
}
},
"storageTopN": {
"Type": "AWS::DynamoDB::Table",
"Properties": {
"AttributeDefinitions": [
{
"AttributeName": "id",
"AttributeType": "S"
},
{
"AttributeName": "slot",
"AttributeType": "N"
}
],
"KeySchema": [
{
"AttributeName": "id",
"KeyType": "HASH"
},
{
"AttributeName": "slot",
"KeyType": "RANGE"
}
],
"ProvisionedThroughput": {
"ReadCapacityUnits": 6,
"WriteCapacityUnits": 200
},
"TableName": "mm-prod-major-storage-topN"
}
}
}
}
2018-11-13T13:54:54.499Z [main] silly: Creating change set
2018-11-13T13:54:55.079Z [main] info: Waiting for ChangeSet (cs-b2e90820-e74b-11e8-96f9-932c5d1c3415) to be ready
2018-11-13T13:54:55.079Z [main] info: .
2018-11-13T13:54:55.486Z [main] silly: ChangeSet created. description=
{
"ResponseMetadata": {
"RequestId": "b3658bb1-e74b-11e8-9fda-8d31bdf96482"
},
"ChangeSetName": "cs-b2e90820-e74b-11e8-96f9-932c5d1c3415",
"ChangeSetId": "arn:aws:cloudformation:eu-central-1:274788167589:changeSet/cs-b2e90820-e74b-11e8-96f9-932c5d1c3415/820674b1-41ae-48ac-8862-ddb0c2553c7c",
"StackId": "arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e",
"StackName": "mm-prod-major",
"Parameters": [],
"CreationTime": "2018-11-13T13:54:54.929Z",
"ExecutionStatus": "UNAVAILABLE",
"Status": "CREATE_IN_PROGRESS",
"NotificationARNs": [],
"RollbackConfiguration": {},
"Capabilities": [
"CAPABILITY_IAM"
],
"Tags": [],
"Changes": []
}
2018-11-13T13:55:05.494Z [main] info: ..
2018-11-13T13:55:06.135Z [main] silly: ChangeSet created. description=
{
"ResponseMetadata": {
"RequestId": "b9bc50de-e74b-11e8-9a4d-7b51bc2011e2"
},
"ChangeSetName": "cs-b2e90820-e74b-11e8-96f9-932c5d1c3415",
"ChangeSetId": "arn:aws:cloudformation:eu-central-1:274788167589:changeSet/cs-b2e90820-e74b-11e8-96f9-932c5d1c3415/820674b1-41ae-48ac-8862-ddb0c2553c7c",
"StackId": "arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e",
"StackName": "mm-prod-major",
"Parameters": [],
"CreationTime": "2018-11-13T13:54:54.929Z",
"ExecutionStatus": "AVAILABLE",
"Status": "CREATE_COMPLETE",
"NotificationARNs": [],
"RollbackConfiguration": {},
"Capabilities": [
"CAPABILITY_IAM"
],
"Tags": [],
"Changes": [
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "ingestionErrorSink",
"PhysicalResourceId": "mm-prod-major-ingestion-errorSink",
"ResourceType": "AWS::Lambda::Function",
"Replacement": "False",
"Scope": [
"Properties"
],
"Details": [
{
"Target": {
"Attribute": "Properties",
"Name": "ReservedConcurrentExecutions",
"RequiresRecreation": "Never"
},
"Evaluation": "Static",
"ChangeSource": "DirectModification"
}
]
}
}
]
}
2018-11-13T13:55:06.136Z [main] info: Enacting Change set
2018-11-13T13:55:06.526Z [main] silly: Waiting for stack (arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e) to be updated
2018-11-13T13:55:06.526Z [main] info: .
2018-11-13T13:55:17.060Z [main] info: ..
2018-11-13T13:55:17.563Z [main] info: Stack status: UPDATE_COMPLETE
2018-11-13T13:55:17.563Z [main] silly: stack ID: arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e
2018-11-13T13:55:41.756Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-13T13:55:41.758Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T13:55:41.758Z [main] silly: Executing:
2018-11-13T13:55:42.633Z [main] info: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T13:55:43.216Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T13:55:43.216Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T13:55:43.217Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T13:55:43.217Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T13:55:43.217Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:55:43.217Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-13T13:55:43.217Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T13:55:43.217Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-13T13:55:43.217Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T13:55:43.217Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T13:55:43.217Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T13:55:43.217Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T13:55:43.217Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T13:55:43.217Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T13:55:43.217Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:55:43.217Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T13:55:43.217Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T13:55:43.217Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T13:55:43.217Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:55:43.217Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T13:55:43.217Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T13:55:43.217Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T13:55:43.217Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T13:55:43.217Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:55:43.217Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T13:55:43.217Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T13:55:43.217Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T13:55:43.217Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:55:43.217Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T13:55:43.218Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T13:55:43.218Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-13T13:55:43.218Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T13:55:43.218Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T13:55:43.218Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T13:55:43.218Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T13:55:43.218Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T13:55:43.218Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T13:55:43.218Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T13:55:43.218Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T13:55:43.218Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T13:55:43.218Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T13:55:43.218Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-13T13:55:43.218Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-13T13:55:43.218Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-13T13:55:43.218Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T13:55:43.218Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T13:55:43.218Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T13:55:43.218Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T13:55:43.218Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T13:55:49.452Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-13T13:55:49.453Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T13:55:49.453Z [main] silly: Executing:
2018-11-13T13:55:50.325Z [main] info: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T13:55:50.881Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T13:55:50.881Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T13:55:50.881Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T13:55:50.881Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T13:55:50.881Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:55:50.881Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-13T13:55:50.881Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T13:55:50.881Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-13T13:55:50.881Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T13:55:50.881Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T13:55:50.881Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T13:55:50.881Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T13:55:50.881Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T13:55:50.881Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T13:55:50.881Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:55:50.881Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T13:55:50.881Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T13:55:50.881Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T13:55:50.881Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:55:50.881Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T13:55:50.881Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T13:55:50.881Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T13:55:50.881Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T13:55:50.882Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:55:50.882Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T13:55:50.882Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T13:55:50.882Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T13:55:50.882Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:55:50.882Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T13:55:50.882Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T13:55:50.882Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-13T13:55:50.882Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T13:55:50.882Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T13:55:50.882Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T13:55:50.882Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T13:55:50.882Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T13:55:50.882Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T13:55:50.882Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T13:55:50.882Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T13:55:50.882Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T13:55:50.882Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T13:55:50.882Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-13T13:55:50.882Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-13T13:55:50.882Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-13T13:55:50.882Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T13:55:50.882Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T13:55:50.882Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T13:55:50.882Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T13:55:50.882Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T13:55:57.124Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-13T13:55:57.126Z [main] info: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T13:55:57.126Z [main] silly: Executing:
2018-11-13T13:55:57.995Z [main] info: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T13:55:58.548Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T13:55:58.548Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T13:55:58.548Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T13:55:58.548Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T13:55:58.548Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:55:58.548Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-13T13:55:58.548Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T13:55:58.548Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-13T13:55:58.548Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T13:55:58.548Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T13:55:58.548Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T13:55:58.548Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T13:55:58.548Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T13:55:58.548Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T13:55:58.548Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:55:58.548Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T13:55:58.549Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T13:55:58.549Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T13:55:58.549Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:55:58.549Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T13:55:58.549Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T13:55:58.549Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T13:55:58.549Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T13:55:58.549Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:55:58.549Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T13:55:58.549Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T13:55:58.549Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T13:55:58.549Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T13:55:58.549Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T13:55:58.549Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T13:55:58.549Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-13T13:55:58.549Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T13:55:58.549Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T13:55:58.549Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T13:55:58.549Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T13:55:58.549Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T13:55:58.549Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T13:55:58.549Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T13:55:58.549Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T13:55:58.549Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T13:55:58.549Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T13:55:58.549Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-13T13:55:58.549Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-13T13:55:58.549Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-13T13:55:58.549Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T13:55:58.550Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T13:55:58.550Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T13:55:58.550Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T13:55:58.550Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T15:48:19.510Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-13T15:48:19.511Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T15:48:19.511Z [main] silly: Executing: tsc --outDir "/tmp/packager-8b034e50-e75b-11e8-bf6f-ff565ea2d496/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-13T15:48:20.373Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T15:48:20.906Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T15:48:20.906Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T15:48:20.906Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T15:48:20.906Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T15:48:20.906Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T15:48:20.906Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T15:48:20.906Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-13T15:48:20.906Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T15:48:20.906Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-13T15:48:20.906Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T15:48:20.906Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T15:48:20.906Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T15:48:20.906Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T15:48:20.906Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T15:48:20.906Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T15:48:20.906Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T15:48:20.906Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T15:48:20.906Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T15:48:20.906Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T15:48:20.907Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T15:48:20.907Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T15:48:20.907Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T15:48:20.907Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T15:48:20.907Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T15:48:20.907Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T15:48:20.907Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T15:48:20.907Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T15:48:20.907Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T15:48:20.907Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T15:48:20.907Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T15:48:20.907Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T15:48:20.907Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-13T15:48:20.907Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T15:48:20.907Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T15:48:20.907Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T15:48:20.907Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T15:48:20.907Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T15:48:20.907Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T15:48:20.907Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T15:48:20.907Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T15:48:20.907Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T15:48:20.907Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T15:48:20.907Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-13T15:48:20.907Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-13T15:48:20.907Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-13T15:48:20.907Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T15:48:20.907Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T15:48:20.907Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T15:48:20.908Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T15:48:20.908Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T15:48:21.607Z [main] info: Shipping rig prod-major to eu-central-1
2018-11-13T15:48:21.607Z [main] silly: Packing src/store/compute into build
2018-11-13T15:48:21.607Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-13T15:48:21.607Z [main] silly: Executing: tsc --outDir "/tmp/packager-8c436f70-e75b-11e8-bf6f-ff565ea2d496/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/store/compute"
2018-11-13T15:48:24.819Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-13T15:48:25.400Z [main] info: Pushing code: store
2018-11-13T15:48:25.403Z [main] silly: Packing src/support/errorSink into build
2018-11-13T15:48:25.403Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-13T15:48:25.403Z [main] silly: Executing: tsc --outDir "/tmp/packager-8e86a8b0-e75b-11e8-bf6f-ff565ea2d496/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink"
2018-11-13T15:48:26.286Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-13T15:48:26.860Z [main] info: Pushing code: errorSink
2018-11-13T15:48:26.861Z [main] silly: Packing src/support/trafficStatsSink into build
2018-11-13T15:48:26.861Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-13T15:48:26.861Z [main] silly: Executing: tsc --outDir "/tmp/packager-8f6521d0-e75b-11e8-bf6f-ff565ea2d496/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink"
2018-11-13T15:48:30.094Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-13T15:48:30.617Z [main] info: Pushing code: trafficStatsSink
2018-11-13T15:48:31.324Z [main] silly: Fingerprint comparsion:
926da210442b7b8a0718b3bce8e870a282266dd98099e568c03c4e10e0734b43
2018-11-13T15:48:31.324Z [main] silly: StackSpec: {
"AWSTemplateFormatVersion": "2010-09-09",
"Transform": "AWS::Serverless-2016-10-31",
"Description": "description goes here",
"Resources": {
"ingestionStore": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"dynamodb:*"
],
"Resource": "arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-topN"
}
]
},
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"lambda:InvokeFunction"
],
"Resource": "arn:aws:lambda:eu-central-1:274788167589:function:mm-prod-major-ingestion-errorSink"
}
]
},
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"lambda:InvokeFunction"
],
"Resource": "arn:aws:lambda:eu-central-1:274788167589:function:mm-prod-major-ingestion-trafficStatsSink"
}
]
}
],
"Handler": "ingestion-store_Handler.handle",
"Description": "Ingest data into the metric machine",
"MemorySize": 1024,
"Timeout": 30,
"FunctionName": "mm-prod-major-ingestion-store",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-store.zip"
}
},
"ingestionErrorSink": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [],
"Handler": "ingestion-errorSink_Handler.handle",
"Description": "Track error reports",
"MemorySize": 1024,
"Timeout": 5,
"ReservedConcurrentExecutions": 1,
"FunctionName": "mm-prod-major-ingestion-errorSink",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-errorSink.zip"
}
},
"ingestionTrafficStatsSink": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"dynamodb:*"
],
"Resource": "arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-trafficStats"
}
]
}
],
"Handler": "ingestion-trafficStatsSink_Handler.handle",
"Description": "Record various stats about RPC calls",
"MemorySize": 1024,
"Timeout": 5,
"FunctionName": "mm-prod-major-ingestion-trafficStatsSink",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-trafficStatsSink.zip"
}
},
"storageTrafficStats": {
"Type": "AWS::DynamoDB::Table",
"Properties": {
"AttributeDefinitions": [
{
"AttributeName": "metricName",
"AttributeType": "S"
},
{
"AttributeName": "slot",
"AttributeType": "N"
}
],
"KeySchema": [
{
"AttributeName": "metricName",
"KeyType": "HASH"
},
{
"AttributeName": "slot",
"KeyType": "RANGE"
}
],
"ProvisionedThroughput": {
"ReadCapacityUnits": 20,
"WriteCapacityUnits": 50
},
"TableName": "mm-prod-major-storage-trafficStats"
}
},
"storageTopN": {
"Type": "AWS::DynamoDB::Table",
"Properties": {
"AttributeDefinitions": [
{
"AttributeName": "id",
"AttributeType": "S"
},
{
"AttributeName": "slot",
"AttributeType": "N"
}
],
"KeySchema": [
{
"AttributeName": "id",
"KeyType": "HASH"
},
{
"AttributeName": "slot",
"KeyType": "RANGE"
}
],
"ProvisionedThroughput": {
"ReadCapacityUnits": 6,
"WriteCapacityUnits": 200
},
"TableName": "mm-prod-major-storage-topN"
}
}
}
}
2018-11-13T15:48:31.324Z [main] silly: Creating change set
2018-11-13T15:48:31.900Z [main] info: Waiting for ChangeSet (cs-920e21c0-e75b-11e8-bf6f-ff565ea2d496) to be ready
2018-11-13T15:48:31.900Z [main] info: .
2018-11-13T15:48:32.305Z [main] silly: ChangeSet created. description=
{
"ResponseMetadata": {
"RequestId": "9296657d-e75b-11e8-a3a3-83ac8ae32d85"
},
"ChangeSetName": "cs-920e21c0-e75b-11e8-bf6f-ff565ea2d496",
"ChangeSetId": "arn:aws:cloudformation:eu-central-1:274788167589:changeSet/cs-920e21c0-e75b-11e8-bf6f-ff565ea2d496/44c009e8-17d9-46f1-8e0e-004649a3ad05",
"StackId": "arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e",
"StackName": "mm-prod-major",
"Parameters": [],
"CreationTime": "2018-11-13T15:48:31.836Z",
"ExecutionStatus": "UNAVAILABLE",
"Status": "CREATE_IN_PROGRESS",
"NotificationARNs": [],
"RollbackConfiguration": {},
"Capabilities": [
"CAPABILITY_IAM"
],
"Tags": [
{
"Key": "bigband_fingerprint",
"Value": "926da210442b7b8a0718b3bce8e870a282266dd98099e568c03c4e10e0734b43"
}
],
"Changes": []
}
2018-11-13T15:48:42.314Z [main] info: ..
2018-11-13T15:48:42.719Z [main] silly: ChangeSet created. description=
{
"ResponseMetadata": {
"RequestId": "98c7efd9-e75b-11e8-bb3e-cfb9ea7d0266"
},
"ChangeSetName": "cs-920e21c0-e75b-11e8-bf6f-ff565ea2d496",
"ChangeSetId": "arn:aws:cloudformation:eu-central-1:274788167589:changeSet/cs-920e21c0-e75b-11e8-bf6f-ff565ea2d496/44c009e8-17d9-46f1-8e0e-004649a3ad05",
"StackId": "arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e",
"StackName": "mm-prod-major",
"Parameters": [],
"CreationTime": "2018-11-13T15:48:31.836Z",
"ExecutionStatus": "AVAILABLE",
"Status": "CREATE_COMPLETE",
"NotificationARNs": [],
"RollbackConfiguration": {},
"Capabilities": [
"CAPABILITY_IAM"
],
"Tags": [
{
"Key": "bigband_fingerprint",
"Value": "926da210442b7b8a0718b3bce8e870a282266dd98099e568c03c4e10e0734b43"
}
],
"Changes": [
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "ingestionErrorSink",
"PhysicalResourceId": "mm-prod-major-ingestion-errorSink",
"ResourceType": "AWS::Lambda::Function",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "ingestionStore",
"PhysicalResourceId": "mm-prod-major-ingestion-store",
"ResourceType": "AWS::Lambda::Function",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "ingestionTrafficStatsSink",
"PhysicalResourceId": "mm-prod-major-ingestion-trafficStatsSink",
"ResourceType": "AWS::Lambda::Function",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "storageTopN",
"PhysicalResourceId": "mm-prod-major-storage-topN",
"ResourceType": "AWS::DynamoDB::Table",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "storageTrafficStats",
"PhysicalResourceId": "mm-prod-major-storage-trafficStats",
"ResourceType": "AWS::DynamoDB::Table",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
}
]
}
2018-11-13T15:48:42.720Z [main] info: Enacting Change set
2018-11-13T15:48:43.124Z [main] silly: Waiting for stack (arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e) to be updated
2018-11-13T15:48:43.124Z [main] info: .
2018-11-13T15:48:53.452Z [main] info: ..
2018-11-13T15:48:53.886Z [main] info: Stack status: UPDATE_COMPLETE
2018-11-13T15:48:53.887Z [main] silly: stack ID: arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e
2018-11-13T15:48:57.845Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-13T15:48:57.846Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T15:48:57.846Z [main] silly: Executing: tsc --outDir "/tmp/packager-a1dcc340-e75b-11e8-9484-2d09efdd9d48/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-13T15:48:58.735Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T15:48:59.275Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T15:48:59.275Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T15:48:59.275Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T15:48:59.275Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T15:48:59.275Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T15:48:59.275Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T15:48:59.275Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-13T15:48:59.275Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T15:48:59.275Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-13T15:48:59.275Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T15:48:59.275Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T15:48:59.275Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T15:48:59.275Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T15:48:59.275Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T15:48:59.275Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T15:48:59.275Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T15:48:59.275Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T15:48:59.275Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T15:48:59.275Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T15:48:59.276Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T15:48:59.276Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T15:48:59.276Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T15:48:59.276Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T15:48:59.276Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T15:48:59.276Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T15:48:59.276Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T15:48:59.276Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T15:48:59.276Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T15:48:59.276Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T15:48:59.276Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T15:48:59.276Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T15:48:59.276Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-13T15:48:59.276Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T15:48:59.276Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T15:48:59.276Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T15:48:59.276Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T15:48:59.276Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T15:48:59.276Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T15:48:59.276Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T15:48:59.276Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T15:48:59.276Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T15:48:59.276Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T15:48:59.276Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-13T15:48:59.276Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-13T15:48:59.276Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-13T15:48:59.276Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T15:48:59.276Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T15:48:59.276Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T15:48:59.277Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T15:48:59.277Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T15:48:59.949Z [main] info: Shipping rig prod-major to eu-central-1
2018-11-13T15:48:59.950Z [main] silly: Packing src/store/compute into build
2018-11-13T15:48:59.950Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-13T15:48:59.950Z [main] silly: Executing: tsc --outDir "/tmp/packager-a31e1ce0-e75b-11e8-9484-2d09efdd9d48/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/store/compute"
2018-11-13T15:49:03.162Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-13T15:49:03.733Z [main] info: Pushing code: store
2018-11-13T15:49:03.735Z [main] silly: Packing src/support/errorSink into build
2018-11-13T15:49:03.735Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-13T15:49:03.735Z [main] silly: Executing: tsc --outDir "/tmp/packager-a55fa870-e75b-11e8-9484-2d09efdd9d48/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink"
2018-11-13T15:49:04.621Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-13T15:49:05.159Z [main] info: Pushing code: errorSink
2018-11-13T15:49:05.159Z [main] silly: Packing src/support/trafficStatsSink into build
2018-11-13T15:49:05.159Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-13T15:49:05.159Z [main] silly: Executing: tsc --outDir "/tmp/packager-a638f170-e75b-11e8-9484-2d09efdd9d48/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink"
2018-11-13T15:49:08.375Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-13T15:49:08.909Z [main] info: Pushing code: trafficStatsSink
2018-11-13T15:49:09.573Z [main] silly: Fingerprint comparsion:
926da210442b7b8a0718b3bce8e870a282266dd98099e568c03c4e10e0734b43
926da210442b7b8a0718b3bce8e870a282266dd98099e568c03c4e10e0734b43
2018-11-13T15:49:09.573Z [main] info: No stack changes
2018-11-13T15:52:32.280Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-13T15:52:32.281Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T15:52:32.281Z [main] silly: Executing: tsc --outDir "/tmp/packager-21acf270-e75c-11e8-81f3-59f9c4b3296a/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-13T15:52:33.146Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T15:52:33.728Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T15:52:33.728Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T15:52:33.728Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T15:52:33.728Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T15:52:33.728Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T15:52:33.728Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T15:52:33.728Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-13T15:52:33.728Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T15:52:33.728Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-13T15:52:33.729Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T15:52:33.729Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T15:52:33.729Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T15:52:33.729Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T15:52:33.729Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T15:52:33.729Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T15:52:33.729Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T15:52:33.729Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T15:52:33.729Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T15:52:33.729Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T15:52:33.729Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T15:52:33.729Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T15:52:33.729Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T15:52:33.729Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T15:52:33.729Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T15:52:33.729Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T15:52:33.729Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T15:52:33.729Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T15:52:33.729Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T15:52:33.729Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T15:52:33.729Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T15:52:33.729Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T15:52:33.729Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-13T15:52:33.729Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T15:52:33.729Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T15:52:33.729Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T15:52:33.729Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T15:52:33.729Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T15:52:33.729Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T15:52:33.729Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T15:52:33.730Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T15:52:33.730Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T15:52:33.730Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T15:52:33.730Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-13T15:52:33.730Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-13T15:52:33.730Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-13T15:52:33.730Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T15:52:33.730Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T15:52:33.730Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T15:52:33.730Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T15:52:33.730Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T15:52:34.422Z [main] info: Shipping rig prod-major to eu-central-1
2018-11-13T15:52:34.423Z [main] silly: Packing src/store/compute into build
2018-11-13T15:52:34.423Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-13T15:52:34.423Z [main] silly: Executing: tsc --outDir "/tmp/packager-22f41870-e75c-11e8-81f3-59f9c4b3296a/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/store/compute"
2018-11-13T15:52:37.680Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-13T15:52:38.235Z [main] info: Pushing code: store
2018-11-13T15:52:38.238Z [main] silly: Packing src/support/errorSink into build
2018-11-13T15:52:38.238Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-13T15:52:38.238Z [main] silly: Executing: tsc --outDir "/tmp/packager-253a37e0-e75c-11e8-81f3-59f9c4b3296a/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink"
2018-11-13T15:52:39.119Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-13T15:52:39.651Z [main] info: Pushing code: errorSink
2018-11-13T15:52:39.651Z [main] silly: Packing src/support/trafficStatsSink into build
2018-11-13T15:52:39.651Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-13T15:52:39.651Z [main] silly: Executing: tsc --outDir "/tmp/packager-2611d330-e75c-11e8-81f3-59f9c4b3296a/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink"
2018-11-13T15:52:42.898Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-13T15:52:43.432Z [main] info: Pushing code: trafficStatsSink
2018-11-13T15:52:44.139Z [main] silly: Fingerprint comparsion:
926da210442b7b8a0718b3bce8e870a282266dd98099e568c03c4e10e0734b43
926da210442b7b8a0718b3bce8e870a282266dd98099e568c03c4e10e0734b43
2018-11-13T15:52:44.140Z [main] info: No stack changes
2018-11-13T15:52:44.790Z [main] info: Rig prod-major shipped.
2018-11-13T22:52:53.384Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-13T22:52:53.385Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T22:52:53.385Z [main] silly: Executing: tsc --outDir "/tmp/packager-daa00170-e796-11e8-94c6-f12014f4f4ff/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-13T22:52:54.299Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T22:52:54.889Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T22:52:54.890Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T22:52:54.890Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T22:52:54.890Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T22:52:54.890Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T22:52:54.890Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T22:52:54.890Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-13T22:52:54.890Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T22:52:54.890Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-13T22:52:54.890Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T22:52:54.890Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T22:52:54.890Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T22:52:54.890Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T22:52:54.890Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T22:52:54.890Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T22:52:54.890Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T22:52:54.890Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T22:52:54.890Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T22:52:54.890Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T22:52:54.890Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T22:52:54.890Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T22:52:54.890Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T22:52:54.890Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T22:52:54.890Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T22:52:54.890Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T22:52:54.891Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T22:52:54.891Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T22:52:54.891Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T22:52:54.891Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T22:52:54.891Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T22:52:54.891Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T22:52:54.891Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-13T22:52:54.891Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T22:52:54.891Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T22:52:54.891Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T22:52:54.891Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T22:52:54.891Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T22:52:54.891Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T22:52:54.891Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T22:52:54.891Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T22:52:54.891Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T22:52:54.891Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T22:52:54.891Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-13T22:52:54.891Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-13T22:52:54.891Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-13T22:52:54.891Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T22:52:54.891Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T22:52:54.891Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T22:52:54.891Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T22:52:54.891Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T22:52:55.559Z [main] info: {
"mm": {
"prod-major": {
"mm-prod-major-ingestion-store": "lambda",
"mm-prod-major-ingestion-errorSink": "lambda",
"mm-prod-major-ingestion-trafficStatsSink": "lambda",
"mm-prod-major-support-percentileCalculator": "lambda",
"mm-prod-major-storage-TrafficStatsStream": "kinesis",
"mm-prod-major-storage-trafficStats": "dynamodb",
"mm-prod-major-storage-topN": "dynamodb"
}
}
}
2018-11-13T23:24:27.901Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-13T23:24:27.902Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T23:24:27.902Z [main] silly: Executing: tsc --outDir "/tmp/packager-43d85bc0-e79b-11e8-87fa-1d4c86c39f8b/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-13T23:24:28.784Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T23:24:29.321Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T23:24:29.321Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T23:24:29.321Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T23:24:29.321Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T23:24:29.321Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T23:24:29.321Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T23:24:29.321Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-13T23:24:29.321Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T23:24:29.321Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-13T23:24:29.321Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T23:24:29.321Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T23:24:29.321Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T23:24:29.321Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T23:24:29.321Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T23:24:29.321Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T23:24:29.321Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T23:24:29.321Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T23:24:29.321Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T23:24:29.321Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T23:24:29.322Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T23:24:29.322Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T23:24:29.322Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T23:24:29.322Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T23:24:29.322Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T23:24:29.322Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T23:24:29.322Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T23:24:29.322Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T23:24:29.322Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T23:24:29.322Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T23:24:29.322Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T23:24:29.322Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T23:24:29.322Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-13T23:24:29.322Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T23:24:29.322Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T23:24:29.322Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T23:24:29.322Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T23:24:29.322Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T23:24:29.322Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T23:24:29.322Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T23:24:29.322Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T23:24:29.322Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T23:24:29.322Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T23:24:29.322Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-13T23:24:29.322Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-13T23:24:29.322Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-13T23:24:29.322Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T23:24:29.322Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T23:24:29.322Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T23:24:29.323Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T23:24:29.323Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T23:24:30.017Z [main] info: Shipping rig prod-major to eu-central-1
2018-11-13T23:24:30.018Z [main] silly: Packing src/store/compute into build
2018-11-13T23:24:30.018Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-13T23:24:30.018Z [main] silly: Executing: tsc --outDir "/tmp/packager-451b8a20-e79b-11e8-87fa-1d4c86c39f8b/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/store/compute"
2018-11-13T23:24:33.329Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-13T23:24:33.890Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T23:24:33.890Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T23:24:33.890Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T23:24:33.890Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T23:24:33.956Z [main] info: Pushing code: store
2018-11-13T23:24:34.007Z [main] silly: Packing src/support/errorSink into build
2018-11-13T23:24:34.007Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-13T23:24:34.007Z [main] silly: Executing: tsc --outDir "/tmp/packager-477c3670-e79b-11e8-87fa-1d4c86c39f8b/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink"
2018-11-13T23:24:34.906Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-13T23:24:35.480Z [main] info: Pushing code: errorSink
2018-11-13T23:24:35.481Z [main] silly: Packing src/support/trafficStatsSink into build
2018-11-13T23:24:35.481Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-13T23:24:35.481Z [main] silly: Executing: tsc --outDir "/tmp/packager-485d2090-e79b-11e8-87fa-1d4c86c39f8b/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink"
2018-11-13T23:24:38.746Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-13T23:24:39.311Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T23:24:39.311Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T23:24:39.311Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T23:24:39.384Z [main] info: Pushing code: trafficStatsSink
2018-11-13T23:24:39.427Z [main] silly: Packing src/support/percentileCalculator into build
2018-11-13T23:24:39.427Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator
2018-11-13T23:24:39.427Z [main] silly: Executing: tsc --outDir "/tmp/packager-4ab73d30-e79b-11e8-87fa-1d4c86c39f8b/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator"
2018-11-13T23:24:40.309Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator
2018-11-13T23:24:40.856Z [main] info: Pushing code: percentileCalculator
2018-11-13T23:25:08.610Z [main] silly: Fingerprint comparsion:
57e8235a9f997883168b0026017db58bc9351d7d6706ffa5ff60ec602203ca89
926da210442b7b8a0718b3bce8e870a282266dd98099e568c03c4e10e0734b43
2018-11-13T23:25:08.611Z [main] silly: StackSpec: {
"AWSTemplateFormatVersion": "2010-09-09",
"Transform": "AWS::Serverless-2016-10-31",
"Description": "description goes here",
"Resources": {
"ingestionStore": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"dynamodb:*"
],
"Resource": "arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-topN"
}
]
},
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"lambda:InvokeFunction"
],
"Resource": "arn:aws:lambda:eu-central-1:274788167589:function:mm-prod-major-ingestion-errorSink"
}
]
},
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"lambda:InvokeFunction"
],
"Resource": "arn:aws:lambda:eu-central-1:274788167589:function:mm-prod-major-ingestion-trafficStatsSink"
}
]
}
],
"Handler": "ingestion-store_Handler.handle",
"Description": "Ingest data into the metric machine",
"MemorySize": 1024,
"Timeout": 30,
"FunctionName": "mm-prod-major-ingestion-store",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-store.zip"
}
},
"ingestionErrorSink": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [],
"Handler": "ingestion-errorSink_Handler.handle",
"Description": "Track error reports",
"MemorySize": 1024,
"Timeout": 5,
"ReservedConcurrentExecutions": 1,
"FunctionName": "mm-prod-major-ingestion-errorSink",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-errorSink.zip"
}
},
"ingestionTrafficStatsSink": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"dynamodb:*"
],
"Resource": "arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-trafficStats"
}
]
},
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"kinesis:*"
],
"Resource": "arn:aws:kinesis:eu-central-1:274788167589:stream/mm-prod-major-storage-TrafficStatsStream"
}
]
}
],
"Handler": "ingestion-trafficStatsSink_Handler.handle",
"Description": "Record various stats about RPC calls",
"MemorySize": 1024,
"Timeout": 5,
"FunctionName": "mm-prod-major-ingestion-trafficStatsSink",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-trafficStatsSink.zip"
}
},
"supportPercentileCalculator": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [],
"Handler": "support-percentileCalculator_Handler.handle",
"Events": {
"Stream": {
"Type": "Kinesis",
"Properties": {
"Stream": {
"Fn::GetAtt": [
"storageTrafficStatsStream",
"Arn"
]
},
"BatchSize": {
"ReservedConcurrentExecutions": 1
},
"StartingPosition": "LATEST"
}
}
},
"FunctionName": "mm-prod-major-support-percentileCalculator",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-support-percentileCalculator.zip"
}
},
"storageTrafficStatsStream": {
"Type": "AWS::Kinesis::Stream",
"Properties": {
"RetentionPeriodHours": 24,
"ShardCount": 2,
"Name": "mm-prod-major-storage-TrafficStatsStream"
}
},
"storageTrafficStats": {
"Type": "AWS::DynamoDB::Table",
"Properties": {
"AttributeDefinitions": [
{
"AttributeName": "metricName",
"AttributeType": "S"
},
{
"AttributeName": "slot",
"AttributeType": "N"
}
],
"KeySchema": [
{
"AttributeName": "metricName",
"KeyType": "HASH"
},
{
"AttributeName": "slot",
"KeyType": "RANGE"
}
],
"ProvisionedThroughput": {
"ReadCapacityUnits": 20,
"WriteCapacityUnits": 50
},
"TableName": "mm-prod-major-storage-trafficStats"
}
},
"storageTopN": {
"Type": "AWS::DynamoDB::Table",
"Properties": {
"AttributeDefinitions": [
{
"AttributeName": "id",
"AttributeType": "S"
},
{
"AttributeName": "slot",
"AttributeType": "N"
}
],
"KeySchema": [
{
"AttributeName": "id",
"KeyType": "HASH"
},
{
"AttributeName": "slot",
"KeyType": "RANGE"
}
],
"ProvisionedThroughput": {
"ReadCapacityUnits": 6,
"WriteCapacityUnits": 200
},
"TableName": "mm-prod-major-storage-topN"
}
}
}
}
2018-11-13T23:25:08.611Z [main] silly: Creating change set
2018-11-13T23:25:09.131Z [main] info: Waiting for ChangeSet (cs-5c1c3620-e79b-11e8-87fa-1d4c86c39f8b) to be ready
2018-11-13T23:25:09.131Z [main] info: .
2018-11-13T23:25:09.556Z [main] silly: ChangeSet created. description=
{
"ResponseMetadata": {
"RequestId": "5c975a45-e79b-11e8-9914-63e5eaef923c"
},
"ChangeSetName": "cs-5c1c3620-e79b-11e8-87fa-1d4c86c39f8b",
"ChangeSetId": "arn:aws:cloudformation:eu-central-1:274788167589:changeSet/cs-5c1c3620-e79b-11e8-87fa-1d4c86c39f8b/54cd0f8f-2a48-4e62-9a5d-33733fec1796",
"StackId": "arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e",
"StackName": "mm-prod-major",
"Parameters": [],
"CreationTime": "2018-11-13T23:25:09.105Z",
"ExecutionStatus": "UNAVAILABLE",
"Status": "CREATE_IN_PROGRESS",
"NotificationARNs": [],
"RollbackConfiguration": {},
"Capabilities": [
"CAPABILITY_IAM"
],
"Tags": [
{
"Key": "bigband_fingerprint",
"Value": "57e8235a9f997883168b0026017db58bc9351d7d6706ffa5ff60ec602203ca89"
}
],
"Changes": []
}
2018-11-13T23:25:19.571Z [main] info: ..
2018-11-13T23:25:20.209Z [main] silly: ChangeSet created. description=
{
"ResponseMetadata": {
"RequestId": "62efcddf-e79b-11e8-91ef-1f5cc8496cfe"
},
"ChangeSetName": "cs-5c1c3620-e79b-11e8-87fa-1d4c86c39f8b",
"ChangeSetId": "arn:aws:cloudformation:eu-central-1:274788167589:changeSet/cs-5c1c3620-e79b-11e8-87fa-1d4c86c39f8b/54cd0f8f-2a48-4e62-9a5d-33733fec1796",
"StackId": "arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e",
"StackName": "mm-prod-major",
"Parameters": [],
"CreationTime": "2018-11-13T23:25:09.105Z",
"ExecutionStatus": "AVAILABLE",
"Status": "CREATE_COMPLETE",
"NotificationARNs": [],
"RollbackConfiguration": {},
"Capabilities": [
"CAPABILITY_IAM"
],
"Tags": [
{
"Key": "bigband_fingerprint",
"Value": "57e8235a9f997883168b0026017db58bc9351d7d6706ffa5ff60ec602203ca89"
}
],
"Changes": [
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "ingestionErrorSink",
"PhysicalResourceId": "mm-prod-major-ingestion-errorSink",
"ResourceType": "AWS::Lambda::Function",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "ingestionStore",
"PhysicalResourceId": "mm-prod-major-ingestion-store",
"ResourceType": "AWS::Lambda::Function",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "ingestionTrafficStatsSink",
"PhysicalResourceId": "mm-prod-major-ingestion-trafficStatsSink",
"ResourceType": "AWS::Lambda::Function",
"Replacement": "False",
"Scope": [
"Properties",
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
},
{
"Target": {
"Attribute": "Properties",
"Name": "Role",
"RequiresRecreation": "Never"
},
"Evaluation": "Dynamic",
"ChangeSource": "ResourceAttribute",
"CausingEntity": "ingestionTrafficStatsSinkRole.Arn"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "ingestionTrafficStatsSinkRole",
"PhysicalResourceId": "mm-prod-major-ingestionTrafficStatsSinkRole-TD3D643SQFV7",
"ResourceType": "AWS::IAM::Role",
"Replacement": "False",
"Scope": [
"Properties"
],
"Details": [
{
"Target": {
"Attribute": "Properties",
"Name": "Policies",
"RequiresRecreation": "Never"
},
"Evaluation": "Static",
"ChangeSource": "DirectModification"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "storageTopN",
"PhysicalResourceId": "mm-prod-major-storage-topN",
"ResourceType": "AWS::DynamoDB::Table",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "storageTrafficStats",
"PhysicalResourceId": "mm-prod-major-storage-trafficStats",
"ResourceType": "AWS::DynamoDB::Table",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Add",
"LogicalResourceId": "storageTrafficStatsStream",
"ResourceType": "AWS::Kinesis::Stream",
"Scope": [],
"Details": []
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Add",
"LogicalResourceId": "supportPercentileCalculator",
"ResourceType": "AWS::Lambda::Function",
"Scope": [],
"Details": []
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Add",
"LogicalResourceId": "supportPercentileCalculatorRole",
"ResourceType": "AWS::IAM::Role",
"Scope": [],
"Details": []
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Add",
"LogicalResourceId": "supportPercentileCalculatorStream",
"ResourceType": "AWS::Lambda::EventSourceMapping",
"Scope": [],
"Details": []
}
}
]
}
2018-11-13T23:25:20.210Z [main] info: Enacting Change set
2018-11-13T23:25:20.659Z [main] silly: Waiting for stack (arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e) to be updated
2018-11-13T23:25:20.660Z [main] info: .
2018-11-13T23:25:31.028Z [main] info: ..
2018-11-13T23:25:51.685Z [main] info: ...
2018-11-13T23:26:32.162Z [main] info: ....
2018-11-13T23:27:52.983Z [main] info: .....
2018-11-13T23:27:58.358Z [main] info: Stack status: UPDATE_ROLLBACK_COMPLETE
2018-11-13T23:31:58.559Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-13T23:31:58.560Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T23:31:58.560Z [main] silly: Executing: tsc --outDir "/tmp/packager-50754fe0-e79c-11e8-90b6-9b488da0ba66/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-13T23:31:59.437Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T23:31:59.970Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T23:31:59.970Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T23:31:59.970Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T23:31:59.970Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T23:31:59.970Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T23:31:59.970Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T23:31:59.970Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-13T23:31:59.970Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T23:31:59.970Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-13T23:31:59.971Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T23:31:59.971Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T23:31:59.971Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T23:31:59.971Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T23:31:59.971Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T23:31:59.971Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T23:31:59.971Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T23:31:59.971Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T23:31:59.971Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T23:31:59.971Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T23:31:59.971Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T23:31:59.971Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T23:31:59.971Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T23:31:59.971Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T23:31:59.971Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T23:31:59.971Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T23:31:59.971Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T23:31:59.971Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T23:31:59.971Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T23:31:59.971Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T23:31:59.971Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T23:31:59.971Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T23:31:59.971Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-13T23:31:59.971Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T23:31:59.971Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T23:31:59.971Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T23:31:59.971Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T23:31:59.971Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T23:31:59.971Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T23:31:59.972Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T23:31:59.972Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T23:31:59.972Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T23:31:59.972Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T23:31:59.972Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-13T23:31:59.972Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-13T23:31:59.972Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-13T23:31:59.972Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T23:31:59.972Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T23:31:59.972Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T23:31:59.972Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T23:31:59.972Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T23:32:00.672Z [main] info: Shipping rig prod-major to eu-central-1
2018-11-13T23:32:00.672Z [main] silly: Packing src/store/compute into build
2018-11-13T23:32:00.672Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-13T23:32:00.672Z [main] silly: Executing: tsc --outDir "/tmp/packager-51b7e200-e79c-11e8-90b6-9b488da0ba66/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/store/compute"
2018-11-13T23:32:03.966Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-13T23:32:04.509Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T23:32:04.509Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T23:32:04.509Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T23:32:04.509Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T23:32:04.572Z [main] info: Pushing code: store
2018-11-13T23:32:04.622Z [main] silly: Packing src/support/errorSink into build
2018-11-13T23:32:04.622Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-13T23:32:04.622Z [main] silly: Executing: tsc --outDir "/tmp/packager-54129ae0-e79c-11e8-90b6-9b488da0ba66/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink"
2018-11-13T23:32:05.505Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-13T23:32:06.066Z [main] info: Pushing code: errorSink
2018-11-13T23:32:06.066Z [main] silly: Packing src/support/trafficStatsSink into build
2018-11-13T23:32:06.066Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-13T23:32:06.066Z [main] silly: Executing: tsc --outDir "/tmp/packager-54eef120-e79c-11e8-90b6-9b488da0ba66/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink"
2018-11-13T23:32:09.268Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-13T23:32:09.833Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T23:32:09.833Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T23:32:09.833Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T23:32:09.904Z [main] info: Pushing code: trafficStatsSink
2018-11-13T23:32:09.958Z [main] silly: Packing src/support/percentileCalculator into build
2018-11-13T23:32:09.958Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator
2018-11-13T23:32:09.958Z [main] silly: Executing: tsc --outDir "/tmp/packager-5740d060-e79c-11e8-90b6-9b488da0ba66/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator"
2018-11-13T23:32:10.843Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator
2018-11-13T23:32:11.415Z [main] info: Pushing code: percentileCalculator
2018-11-13T23:32:39.674Z [main] silly: Fingerprint comparsion:
a804dcb5f62bf2c7e8082b01a0ecce81437dbce69934236f3fd7dceac9e28303
926da210442b7b8a0718b3bce8e870a282266dd98099e568c03c4e10e0734b43
2018-11-13T23:32:39.675Z [main] silly: StackSpec: {
"AWSTemplateFormatVersion": "2010-09-09",
"Transform": "AWS::Serverless-2016-10-31",
"Description": "description goes here",
"Resources": {
"ingestionStore": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"dynamodb:*"
],
"Resource": "arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-topN"
}
]
},
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"lambda:InvokeFunction"
],
"Resource": "arn:aws:lambda:eu-central-1:274788167589:function:mm-prod-major-ingestion-errorSink"
}
]
},
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"lambda:InvokeFunction"
],
"Resource": "arn:aws:lambda:eu-central-1:274788167589:function:mm-prod-major-ingestion-trafficStatsSink"
}
]
}
],
"Handler": "ingestion-store_Handler.handle",
"Description": "Ingest data into the metric machine",
"MemorySize": 1024,
"Timeout": 30,
"FunctionName": "mm-prod-major-ingestion-store",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-store.zip"
}
},
"ingestionErrorSink": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [],
"Handler": "ingestion-errorSink_Handler.handle",
"Description": "Track error reports",
"MemorySize": 1024,
"Timeout": 5,
"ReservedConcurrentExecutions": 1,
"FunctionName": "mm-prod-major-ingestion-errorSink",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-errorSink.zip"
}
},
"ingestionTrafficStatsSink": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"dynamodb:*"
],
"Resource": "arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-trafficStats"
}
]
},
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"kinesis:*"
],
"Resource": "arn:aws:kinesis:eu-central-1:274788167589:stream/mm-prod-major-storage-TrafficStatsStream"
}
]
}
],
"Handler": "ingestion-trafficStatsSink_Handler.handle",
"Description": "Record various stats about RPC calls",
"MemorySize": 1024,
"Timeout": 5,
"FunctionName": "mm-prod-major-ingestion-trafficStatsSink",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-trafficStatsSink.zip"
}
},
"supportPercentileCalculator": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [],
"Handler": "support-percentileCalculator_Handler.handle",
"Events": {
"Stream": {
"Type": "Kinesis",
"Properties": {
"Stream": {
"Fn::GetAtt": [
"storageTrafficStatsStream",
"Arn"
]
},
"BatchSize": 5000,
"StartingPosition": "LATEST"
}
}
},
"FunctionName": "mm-prod-major-support-percentileCalculator",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-support-percentileCalculator.zip"
}
},
"storageTrafficStatsStream": {
"Type": "AWS::Kinesis::Stream",
"Properties": {
"RetentionPeriodHours": 24,
"ShardCount": 2,
"Name": "mm-prod-major-storage-TrafficStatsStream"
}
},
"storageTrafficStats": {
"Type": "AWS::DynamoDB::Table",
"Properties": {
"AttributeDefinitions": [
{
"AttributeName": "metricName",
"AttributeType": "S"
},
{
"AttributeName": "slot",
"AttributeType": "N"
}
],
"KeySchema": [
{
"AttributeName": "metricName",
"KeyType": "HASH"
},
{
"AttributeName": "slot",
"KeyType": "RANGE"
}
],
"ProvisionedThroughput": {
"ReadCapacityUnits": 20,
"WriteCapacityUnits": 50
},
"TableName": "mm-prod-major-storage-trafficStats"
}
},
"storageTopN": {
"Type": "AWS::DynamoDB::Table",
"Properties": {
"AttributeDefinitions": [
{
"AttributeName": "id",
"AttributeType": "S"
},
{
"AttributeName": "slot",
"AttributeType": "N"
}
],
"KeySchema": [
{
"AttributeName": "id",
"KeyType": "HASH"
},
{
"AttributeName": "slot",
"KeyType": "RANGE"
}
],
"ProvisionedThroughput": {
"ReadCapacityUnits": 6,
"WriteCapacityUnits": 200
},
"TableName": "mm-prod-major-storage-topN"
}
}
}
}
2018-11-13T23:32:39.675Z [main] silly: Creating change set
2018-11-13T23:32:40.235Z [main] info: Waiting for ChangeSet (cs-68f744b0-e79c-11e8-90b6-9b488da0ba66) to be ready
2018-11-13T23:32:40.236Z [main] info: .
2018-11-13T23:32:40.724Z [main] silly: ChangeSet created. description=
{
"ResponseMetadata": {
"RequestId": "69933701-e79c-11e8-b546-471573d2c6c4"
},
"ChangeSetName": "cs-68f744b0-e79c-11e8-90b6-9b488da0ba66",
"ChangeSetId": "arn:aws:cloudformation:eu-central-1:274788167589:changeSet/cs-68f744b0-e79c-11e8-90b6-9b488da0ba66/d1649fee-0cec-44b1-aa72-536eab8fe80b",
"StackId": "arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e",
"StackName": "mm-prod-major",
"Parameters": [],
"CreationTime": "2018-11-13T23:32:40.254Z",
"ExecutionStatus": "UNAVAILABLE",
"Status": "CREATE_IN_PROGRESS",
"NotificationARNs": [],
"RollbackConfiguration": {},
"Capabilities": [
"CAPABILITY_IAM"
],
"Tags": [
{
"Key": "bigband_fingerprint",
"Value": "a804dcb5f62bf2c7e8082b01a0ecce81437dbce69934236f3fd7dceac9e28303"
}
],
"Changes": []
}
2018-11-13T23:32:50.738Z [main] info: ..
2018-11-13T23:32:51.223Z [main] silly: ChangeSet created. description=
{
"ResponseMetadata": {
"RequestId": "6fd38ed8-e79c-11e8-b2d3-a5d4687635a5"
},
"ChangeSetName": "cs-68f744b0-e79c-11e8-90b6-9b488da0ba66",
"ChangeSetId": "arn:aws:cloudformation:eu-central-1:274788167589:changeSet/cs-68f744b0-e79c-11e8-90b6-9b488da0ba66/d1649fee-0cec-44b1-aa72-536eab8fe80b",
"StackId": "arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e",
"StackName": "mm-prod-major",
"Parameters": [],
"CreationTime": "2018-11-13T23:32:40.254Z",
"ExecutionStatus": "AVAILABLE",
"Status": "CREATE_COMPLETE",
"NotificationARNs": [],
"RollbackConfiguration": {},
"Capabilities": [
"CAPABILITY_IAM"
],
"Tags": [
{
"Key": "bigband_fingerprint",
"Value": "a804dcb5f62bf2c7e8082b01a0ecce81437dbce69934236f3fd7dceac9e28303"
}
],
"Changes": [
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "ingestionErrorSink",
"PhysicalResourceId": "mm-prod-major-ingestion-errorSink",
"ResourceType": "AWS::Lambda::Function",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "ingestionStore",
"PhysicalResourceId": "mm-prod-major-ingestion-store",
"ResourceType": "AWS::Lambda::Function",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "ingestionTrafficStatsSink",
"PhysicalResourceId": "mm-prod-major-ingestion-trafficStatsSink",
"ResourceType": "AWS::Lambda::Function",
"Replacement": "False",
"Scope": [
"Properties",
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
},
{
"Target": {
"Attribute": "Properties",
"Name": "Role",
"RequiresRecreation": "Never"
},
"Evaluation": "Dynamic",
"ChangeSource": "ResourceAttribute",
"CausingEntity": "ingestionTrafficStatsSinkRole.Arn"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "ingestionTrafficStatsSinkRole",
"PhysicalResourceId": "mm-prod-major-ingestionTrafficStatsSinkRole-TD3D643SQFV7",
"ResourceType": "AWS::IAM::Role",
"Replacement": "False",
"Scope": [
"Properties"
],
"Details": [
{
"Target": {
"Attribute": "Properties",
"Name": "Policies",
"RequiresRecreation": "Never"
},
"Evaluation": "Static",
"ChangeSource": "DirectModification"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "storageTopN",
"PhysicalResourceId": "mm-prod-major-storage-topN",
"ResourceType": "AWS::DynamoDB::Table",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "storageTrafficStats",
"PhysicalResourceId": "mm-prod-major-storage-trafficStats",
"ResourceType": "AWS::DynamoDB::Table",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Add",
"LogicalResourceId": "storageTrafficStatsStream",
"ResourceType": "AWS::Kinesis::Stream",
"Scope": [],
"Details": []
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Add",
"LogicalResourceId": "supportPercentileCalculator",
"ResourceType": "AWS::Lambda::Function",
"Scope": [],
"Details": []
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Add",
"LogicalResourceId": "supportPercentileCalculatorRole",
"ResourceType": "AWS::IAM::Role",
"Scope": [],
"Details": []
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Add",
"LogicalResourceId": "supportPercentileCalculatorStream",
"ResourceType": "AWS::Lambda::EventSourceMapping",
"Scope": [],
"Details": []
}
}
]
}
2018-11-13T23:32:51.224Z [main] info: Enacting Change set
2018-11-13T23:32:51.666Z [main] silly: Waiting for stack (arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e) to be updated
2018-11-13T23:32:51.666Z [main] info: .
2018-11-13T23:33:01.962Z [main] info: ..
2018-11-13T23:33:22.432Z [main] info: ...
2018-11-13T23:34:02.909Z [main] info: ....
2018-11-13T23:34:03.348Z [main] info: Stack status: UPDATE_COMPLETE
2018-11-13T23:34:03.348Z [main] silly: stack ID: arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e
2018-11-13T23:34:08.976Z [main] info: Rig prod-major shipped.
2018-11-13T23:38:19.271Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-13T23:38:19.272Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T23:38:19.272Z [main] silly: Executing: tsc --outDir "/tmp/packager-33615a60-e79d-11e8-a85e-098b4095507b/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-13T23:38:20.143Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T23:38:20.681Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T23:38:20.681Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T23:38:20.681Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T23:38:20.681Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T23:38:20.681Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T23:38:20.681Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T23:38:20.681Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-13T23:38:20.681Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T23:38:20.681Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-13T23:38:20.681Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T23:38:20.681Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T23:38:20.681Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T23:38:20.681Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T23:38:20.681Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T23:38:20.681Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T23:38:20.681Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T23:38:20.681Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T23:38:20.682Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T23:38:20.682Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T23:38:20.682Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T23:38:20.682Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T23:38:20.682Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T23:38:20.682Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T23:38:20.682Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T23:38:20.682Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T23:38:20.682Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T23:38:20.682Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T23:38:20.682Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T23:38:20.682Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T23:38:20.682Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T23:38:20.682Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T23:38:20.682Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-13T23:38:20.682Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T23:38:20.682Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T23:38:20.682Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T23:38:20.682Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T23:38:20.682Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T23:38:20.682Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T23:38:20.682Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T23:38:20.682Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T23:38:20.682Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T23:38:20.682Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T23:38:20.682Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-13T23:38:20.682Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-13T23:38:20.682Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-13T23:38:20.682Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T23:38:20.682Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T23:38:20.683Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T23:38:20.683Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T23:38:20.683Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T23:38:21.364Z [main] info: Shipping rig prod-major to eu-central-1
2018-11-13T23:38:21.364Z [main] silly: Packing src/store/compute into build
2018-11-13T23:38:21.365Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-13T23:38:21.365Z [main] silly: Executing: tsc --outDir "/tmp/packager-34a0df40-e79d-11e8-a85e-098b4095507b/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/store/compute"
2018-11-13T23:38:24.676Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-13T23:38:25.333Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T23:38:25.333Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T23:38:25.333Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T23:38:25.333Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T23:38:25.398Z [main] info: Pushing code: store
2018-11-13T23:38:25.454Z [main] silly: Packing src/support/errorSink into build
2018-11-13T23:38:25.455Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-13T23:38:25.455Z [main] silly: Executing: tsc --outDir "/tmp/packager-3710f4e0-e79d-11e8-a85e-098b4095507b/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink"
2018-11-13T23:38:26.443Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-13T23:38:27.018Z [main] info: Pushing code: errorSink
2018-11-13T23:38:27.018Z [main] silly: Packing src/support/trafficStatsSink into build
2018-11-13T23:38:27.019Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-13T23:38:27.019Z [main] silly: Executing: tsc --outDir "/tmp/packager-37ff9aa0-e79d-11e8-a85e-098b4095507b/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink"
2018-11-13T23:38:30.672Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-13T23:38:31.292Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T23:38:31.292Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T23:38:31.292Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T23:38:31.381Z [main] info: Pushing code: trafficStatsSink
2018-11-13T23:38:31.430Z [main] silly: Packing src/support/percentileCalculator into build
2018-11-13T23:38:31.430Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator
2018-11-13T23:38:31.430Z [main] silly: Executing: tsc --outDir "/tmp/packager-3aa0ab50-e79d-11e8-a85e-098b4095507b/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator"
2018-11-13T23:38:32.406Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator
2018-11-13T23:38:32.981Z [main] info: Pushing code: percentileCalculator
2018-11-13T23:38:41.872Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-13T23:38:41.873Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T23:38:41.873Z [main] silly: Executing: tsc --outDir "/tmp/packager-40d9fdf0-e79d-11e8-a634-1f3579832713/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-13T23:38:42.777Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T23:38:43.396Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T23:38:43.397Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T23:38:43.397Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T23:38:43.397Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T23:38:43.397Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T23:38:43.397Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T23:38:43.397Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-13T23:38:43.397Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T23:38:43.397Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-13T23:38:43.397Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T23:38:43.397Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T23:38:43.397Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T23:38:43.397Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T23:38:43.397Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T23:38:43.397Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T23:38:43.397Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T23:38:43.397Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T23:38:43.397Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T23:38:43.397Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T23:38:43.397Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T23:38:43.397Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T23:38:43.398Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T23:38:43.398Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T23:38:43.398Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T23:38:43.398Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T23:38:43.398Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T23:38:43.398Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T23:38:43.398Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T23:38:43.398Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T23:38:43.398Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T23:38:43.398Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T23:38:43.398Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-13T23:38:43.398Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T23:38:43.398Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T23:38:43.398Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T23:38:43.398Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T23:38:43.398Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T23:38:43.398Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T23:38:43.398Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T23:38:43.398Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T23:38:43.398Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T23:38:43.398Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T23:38:43.398Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-13T23:38:43.398Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-13T23:38:43.398Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-13T23:38:43.398Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T23:38:43.398Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T23:38:43.398Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T23:38:43.398Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T23:38:43.399Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T23:38:44.082Z [main] info: Shipping rig prod-major to eu-central-1
2018-11-13T23:38:44.082Z [main] silly: Packing src/store/compute into build
2018-11-13T23:38:44.082Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-13T23:38:44.082Z [main] silly: Executing: tsc --outDir "/tmp/packager-422b5d20-e79d-11e8-a634-1f3579832713/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/store/compute"
2018-11-13T23:38:47.856Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-13T23:38:48.418Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T23:38:48.418Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T23:38:48.418Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T23:38:48.418Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T23:38:48.485Z [main] info: Pushing code: store
2018-11-13T23:38:48.537Z [main] silly: Packing src/support/errorSink into build
2018-11-13T23:38:48.537Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-13T23:38:48.538Z [main] silly: Executing: tsc --outDir "/tmp/packager-44d32490-e79d-11e8-a634-1f3579832713/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink"
2018-11-13T23:38:49.491Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-13T23:38:50.065Z [main] info: Pushing code: errorSink
2018-11-13T23:38:50.065Z [main] silly: Packing src/support/trafficStatsSink into build
2018-11-13T23:38:50.065Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-13T23:38:50.066Z [main] silly: Executing: tsc --outDir "/tmp/packager-45bc4c10-e79d-11e8-a634-1f3579832713/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink"
2018-11-13T23:38:53.858Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-13T23:38:54.434Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T23:38:54.434Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T23:38:54.434Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T23:38:54.516Z [main] info: Pushing code: trafficStatsSink
2018-11-13T23:38:54.575Z [main] silly: Packing src/support/percentileCalculator into build
2018-11-13T23:38:54.575Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator
2018-11-13T23:38:54.575Z [main] silly: Executing: tsc --outDir "/tmp/packager-486c77f0-e79d-11e8-a634-1f3579832713/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator"
2018-11-13T23:38:55.478Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator
2018-11-13T23:38:56.094Z [main] info: Pushing code: percentileCalculator
2018-11-13T23:39:24.410Z [main] silly: Fingerprint comparsion:
a804dcb5f62bf2c7e8082b01a0ecce81437dbce69934236f3fd7dceac9e28303
a804dcb5f62bf2c7e8082b01a0ecce81437dbce69934236f3fd7dceac9e28303
2018-11-13T23:39:24.410Z [main] info: No stack changes
2018-11-13T23:39:25.397Z [main] info: Rig prod-major shipped.
2018-11-13T23:45:41.234Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-13T23:45:41.234Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T23:45:41.235Z [main] silly: Executing: tsc --outDir "/tmp/packager-3acf6700-e79e-11e8-b92b-09eee09c38d0/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-13T23:45:42.187Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T23:45:42.738Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T23:45:42.738Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T23:45:42.738Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T23:45:42.738Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T23:45:42.738Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T23:45:42.738Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T23:45:42.738Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-13T23:45:42.738Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T23:45:42.738Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-13T23:45:42.738Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T23:45:42.738Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T23:45:42.738Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T23:45:42.738Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T23:45:42.738Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T23:45:42.738Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T23:45:42.738Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T23:45:42.738Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T23:45:42.738Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T23:45:42.739Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T23:45:42.739Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T23:45:42.739Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T23:45:42.739Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T23:45:42.739Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T23:45:42.739Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T23:45:42.739Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T23:45:42.739Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T23:45:42.739Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T23:45:42.739Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T23:45:42.739Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T23:45:42.739Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T23:45:42.739Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T23:45:42.739Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-13T23:45:42.739Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T23:45:42.739Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T23:45:42.739Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T23:45:42.739Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T23:45:42.739Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T23:45:42.739Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T23:45:42.739Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T23:45:42.739Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T23:45:42.739Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T23:45:42.739Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T23:45:42.739Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-13T23:45:42.739Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-13T23:45:42.739Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-13T23:45:42.739Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T23:45:42.739Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T23:45:42.739Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T23:45:42.740Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T23:45:42.740Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T23:45:43.445Z [main] info: Shipping rig prod-major to eu-central-1
2018-11-13T23:45:43.445Z [main] silly: Packing src/store/compute into build
2018-11-13T23:45:43.446Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-13T23:45:43.446Z [main] silly: Executing: tsc --outDir "/tmp/packager-3c211450-e79e-11e8-b92b-09eee09c38d0/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/store/compute"
2018-11-13T23:45:46.921Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-13T23:45:47.488Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T23:45:47.489Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T23:45:47.489Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T23:45:47.489Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T23:45:47.552Z [main] info: Pushing code: store
2018-11-13T23:45:47.581Z [main] silly: Packing src/support/errorSink into build
2018-11-13T23:45:47.581Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-13T23:45:47.581Z [main] silly: Executing: tsc --outDir "/tmp/packager-3e982ed0-e79e-11e8-b92b-09eee09c38d0/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink"
2018-11-13T23:45:48.473Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-13T23:45:49.001Z [main] info: Pushing code: errorSink
2018-11-13T23:45:49.002Z [main] silly: Packing src/support/trafficStatsSink into build
2018-11-13T23:45:49.002Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-13T23:45:49.002Z [main] silly: Executing: tsc --outDir "/tmp/packager-3f7102a0-e79e-11e8-b92b-09eee09c38d0/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink"
2018-11-13T23:45:52.269Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-13T23:45:52.824Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T23:45:52.824Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T23:45:52.824Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T23:45:52.918Z [main] info: Pushing code: trafficStatsSink
2018-11-13T23:45:52.953Z [main] silly: Packing src/support/percentileCalculator into build
2018-11-13T23:45:52.953Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator
2018-11-13T23:45:52.953Z [main] silly: Executing: tsc --outDir "/tmp/packager-41cbe290-e79e-11e8-b92b-09eee09c38d0/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator"
2018-11-13T23:45:53.871Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator
2018-11-13T23:45:54.439Z [main] info: Pushing code: percentileCalculator
2018-11-13T23:46:22.223Z [main] silly: Fingerprint comparsion:
ff44fcc948f13a5dc9b5bff71ddc67af9f0064ab23881ed15de5136f35f89e11
a804dcb5f62bf2c7e8082b01a0ecce81437dbce69934236f3fd7dceac9e28303
2018-11-13T23:46:22.223Z [main] silly: StackSpec: {
"AWSTemplateFormatVersion": "2010-09-09",
"Transform": "AWS::Serverless-2016-10-31",
"Description": "description goes here",
"Resources": {
"ingestionStore": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"dynamodb:*"
],
"Resource": "arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-topN"
}
]
},
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"lambda:InvokeFunction"
],
"Resource": "arn:aws:lambda:eu-central-1:274788167589:function:mm-prod-major-ingestion-errorSink"
}
]
},
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"lambda:InvokeFunction"
],
"Resource": "arn:aws:lambda:eu-central-1:274788167589:function:mm-prod-major-ingestion-trafficStatsSink"
}
]
}
],
"Handler": "ingestion-store_Handler.handle",
"Description": "Ingest data into the metric machine",
"MemorySize": 1024,
"Timeout": 30,
"FunctionName": "mm-prod-major-ingestion-store",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-store.zip"
}
},
"ingestionErrorSink": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [],
"Handler": "ingestion-errorSink_Handler.handle",
"Description": "Track error reports",
"MemorySize": 1024,
"Timeout": 5,
"ReservedConcurrentExecutions": 1,
"FunctionName": "mm-prod-major-ingestion-errorSink",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-errorSink.zip"
}
},
"ingestionTrafficStatsSink": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"dynamodb:*"
],
"Resource": "arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-trafficStats"
}
]
},
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"kinesis:*"
],
"Resource": "arn:aws:kinesis:eu-central-1:274788167589:stream/mm-prod-major-storage-TrafficStatsStream"
}
]
}
],
"Handler": "ingestion-trafficStatsSink_Handler.handle",
"Description": "Record various stats about RPC calls",
"MemorySize": 1024,
"Timeout": 5,
"FunctionName": "mm-prod-major-ingestion-trafficStatsSink",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-trafficStatsSink.zip"
}
},
"supportPercentileCalculator": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [],
"Handler": "support-percentileCalculator_Handler.handle",
"Events": {
"Stream": {
"Type": "Kinesis",
"Properties": {
"Stream": {
"Fn::GetAtt": [
"storageTrafficStatsStream",
"Arn"
]
},
"BatchSize": 5000,
"StartingPosition": "LATEST"
}
}
},
"ReservedConcurrentExecutions": 1,
"FunctionName": "mm-prod-major-support-percentileCalculator",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-support-percentileCalculator.zip"
}
},
"storageTrafficStatsStream": {
"Type": "AWS::Kinesis::Stream",
"Properties": {
"RetentionPeriodHours": 24,
"ShardCount": 2,
"Name": "mm-prod-major-storage-TrafficStatsStream"
}
},
"storageTrafficStats": {
"Type": "AWS::DynamoDB::Table",
"Properties": {
"AttributeDefinitions": [
{
"AttributeName": "metricName",
"AttributeType": "S"
},
{
"AttributeName": "slot",
"AttributeType": "N"
}
],
"KeySchema": [
{
"AttributeName": "metricName",
"KeyType": "HASH"
},
{
"AttributeName": "slot",
"KeyType": "RANGE"
}
],
"ProvisionedThroughput": {
"ReadCapacityUnits": 20,
"WriteCapacityUnits": 50
},
"TableName": "mm-prod-major-storage-trafficStats"
}
},
"storageTopN": {
"Type": "AWS::DynamoDB::Table",
"Properties": {
"AttributeDefinitions": [
{
"AttributeName": "id",
"AttributeType": "S"
},
{
"AttributeName": "slot",
"AttributeType": "N"
}
],
"KeySchema": [
{
"AttributeName": "id",
"KeyType": "HASH"
},
{
"AttributeName": "slot",
"KeyType": "RANGE"
}
],
"ProvisionedThroughput": {
"ReadCapacityUnits": 6,
"WriteCapacityUnits": 200
},
"TableName": "mm-prod-major-storage-topN"
}
}
}
}
2018-11-13T23:46:22.223Z [main] silly: createChangeSetReq=
{
"StackName": "mm-prod-major",
"ChangeSetName": "cs-533e21f0-e79e-11e8-b92b-09eee09c38d0",
"ChangeSetType": "UPDATE",
"Capabilities": [
"CAPABILITY_IAM"
],
"TemplateBody": "{\"AWSTemplateFormatVersion\":\"2010-09-09\",\"Transform\":\"AWS::Serverless-2016-10-31\",\"Description\":\"description goes here\",\"Resources\":{\"ingestionStore\":{\"Type\":\"AWS::Serverless::Function\",\"Properties\":{\"Runtime\":\"nodejs8.10\",\"Policies\":[{\"Version\":\"2012-10-17\",\"Statement\":[{\"Effect\":\"Allow\",\"Action\":[\"dynamodb:*\"],\"Resource\":\"arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-topN\"}]},{\"Version\":\"2012-10-17\",\"Statement\":[{\"Effect\":\"Allow\",\"Action\":[\"lambda:InvokeFunction\"],\"Resource\":\"arn:aws:lambda:eu-central-1:274788167589:function:mm-prod-major-ingestion-errorSink\"}]},{\"Version\":\"2012-10-17\",\"Statement\":[{\"Effect\":\"Allow\",\"Action\":[\"lambda:InvokeFunction\"],\"Resource\":\"arn:aws:lambda:eu-central-1:274788167589:function:mm-prod-major-ingestion-trafficStatsSink\"}]}],\"Handler\":\"ingestion-store_Handler.handle\",\"Description\":\"Ingest data into the metric machine\",\"MemorySize\":1024,\"Timeout\":30,\"FunctionName\":\"mm-prod-major-ingestion-store\",\"CodeUri\":\"s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-store.zip\"}},\"ingestionErrorSink\":{\"Type\":\"AWS::Serverless::Function\",\"Properties\":{\"Runtime\":\"nodejs8.10\",\"Policies\":[],\"Handler\":\"ingestion-errorSink_Handler.handle\",\"Description\":\"Track error reports\",\"MemorySize\":1024,\"Timeout\":5,\"ReservedConcurrentExecutions\":1,\"FunctionName\":\"mm-prod-major-ingestion-errorSink\",\"CodeUri\":\"s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-errorSink.zip\"}},\"ingestionTrafficStatsSink\":{\"Type\":\"AWS::Serverless::Function\",\"Properties\":{\"Runtime\":\"nodejs8.10\",\"Policies\":[{\"Version\":\"2012-10-17\",\"Statement\":[{\"Effect\":\"Allow\",\"Action\":[\"dynamodb:*\"],\"Resource\":\"arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-trafficStats\"}]},{\"Version\":\"2012-10-17\",\"Statement\":[{\"Effect\":\"Allow\",\"Action\":[\"kinesis:*\"],\"Resource\":\"arn:aws:kinesis:eu-central-1:274788167589:stream/mm-prod-major-storage-TrafficStatsStream\"}]}],\"Handler\":\"ingestion-trafficStatsSink_Handler.handle\",\"Description\":\"Record various stats about RPC calls\",\"MemorySize\":1024,\"Timeout\":5,\"FunctionName\":\"mm-prod-major-ingestion-trafficStatsSink\",\"CodeUri\":\"s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-trafficStatsSink.zip\"}},\"supportPercentileCalculator\":{\"Type\":\"AWS::Serverless::Function\",\"Properties\":{\"Runtime\":\"nodejs8.10\",\"Policies\":[],\"Handler\":\"support-percentileCalculator_Handler.handle\",\"Events\":{\"Stream\":{\"Type\":\"Kinesis\",\"Properties\":{\"Stream\":{\"Fn::GetAtt\":[\"storageTrafficStatsStream\",\"Arn\"]},\"BatchSize\":5000,\"StartingPosition\":\"LATEST\"}}},\"ReservedConcurrentExecutions\":1,\"FunctionName\":\"mm-prod-major-support-percentileCalculator\",\"CodeUri\":\"s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-support-percentileCalculator.zip\"}},\"storageTrafficStatsStream\":{\"Type\":\"AWS::Kinesis::Stream\",\"Properties\":{\"RetentionPeriodHours\":24,\"ShardCount\":2,\"Name\":\"mm-prod-major-storage-TrafficStatsStream\"}},\"storageTrafficStats\":{\"Type\":\"AWS::DynamoDB::Table\",\"Properties\":{\"AttributeDefinitions\":[{\"AttributeName\":\"metricName\",\"AttributeType\":\"S\"},{\"AttributeName\":\"slot\",\"AttributeType\":\"N\"}],\"KeySchema\":[{\"AttributeName\":\"metricName\",\"KeyType\":\"HASH\"},{\"AttributeName\":\"slot\",\"KeyType\":\"RANGE\"}],\"ProvisionedThroughput\":{\"ReadCapacityUnits\":20,\"WriteCapacityUnits\":50},\"TableName\":\"mm-prod-major-storage-trafficStats\"}},\"storageTopN\":{\"Type\":\"AWS::DynamoDB::Table\",\"Properties\":{\"AttributeDefinitions\":[{\"AttributeName\":\"id\",\"AttributeType\":\"S\"},{\"AttributeName\":\"slot\",\"AttributeType\":\"N\"}],\"KeySchema\":[{\"AttributeName\":\"id\",\"KeyType\":\"HASH\"},{\"AttributeName\":\"slot\",\"KeyType\":\"RANGE\"}],\"ProvisionedThroughput\":{\"ReadCapacityUnits\":6,\"WriteCapacityUnits\":200},\"TableName\":\"mm-prod-major-storage-topN\"}}}}",
"Tags": [
{
"Key": "bigband_fingerprint",
"Value": "ff44fcc948f13a5dc9b5bff71ddc67af9f0064ab23881ed15de5136f35f89e11"
}
]
}
2018-11-13T23:46:22.729Z [main] info: Creating change set
2018-11-13T23:46:22.729Z [main] info: .
2018-11-13T23:46:23.063Z [main] silly: ChangeSet description=
{
"ResponseMetadata": {
"RequestId": "53b32b4d-e79e-11e8-a30c-2935373a2405"
},
"ChangeSetName": "cs-533e21f0-e79e-11e8-b92b-09eee09c38d0",
"ChangeSetId": "arn:aws:cloudformation:eu-central-1:274788167589:changeSet/cs-533e21f0-e79e-11e8-b92b-09eee09c38d0/cd4f2b3c-1909-42f7-894e-bd8cf4cc4f46",
"StackId": "arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e",
"StackName": "mm-prod-major",
"Parameters": [],
"CreationTime": "2018-11-13T23:46:22.684Z",
"ExecutionStatus": "UNAVAILABLE",
"Status": "CREATE_IN_PROGRESS",
"NotificationARNs": [],
"RollbackConfiguration": {},
"Capabilities": [
"CAPABILITY_IAM"
],
"Tags": [
{
"Key": "bigband_fingerprint",
"Value": "ff44fcc948f13a5dc9b5bff71ddc67af9f0064ab23881ed15de5136f35f89e11"
}
],
"Changes": []
}
2018-11-13T23:46:33.076Z [main] info: ..
2018-11-13T23:46:33.554Z [main] silly: ChangeSet description=
{
"ResponseMetadata": {
"RequestId": "59ef63fc-e79e-11e8-a30c-2935373a2405"
},
"ChangeSetName": "cs-533e21f0-e79e-11e8-b92b-09eee09c38d0",
"ChangeSetId": "arn:aws:cloudformation:eu-central-1:274788167589:changeSet/cs-533e21f0-e79e-11e8-b92b-09eee09c38d0/cd4f2b3c-1909-42f7-894e-bd8cf4cc4f46",
"StackId": "arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e",
"StackName": "mm-prod-major",
"Parameters": [],
"CreationTime": "2018-11-13T23:46:22.684Z",
"ExecutionStatus": "AVAILABLE",
"Status": "CREATE_COMPLETE",
"NotificationARNs": [],
"RollbackConfiguration": {},
"Capabilities": [
"CAPABILITY_IAM"
],
"Tags": [
{
"Key": "bigband_fingerprint",
"Value": "ff44fcc948f13a5dc9b5bff71ddc67af9f0064ab23881ed15de5136f35f89e11"
}
],
"Changes": [
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "ingestionErrorSink",
"PhysicalResourceId": "mm-prod-major-ingestion-errorSink",
"ResourceType": "AWS::Lambda::Function",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "ingestionStore",
"PhysicalResourceId": "mm-prod-major-ingestion-store",
"ResourceType": "AWS::Lambda::Function",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "ingestionTrafficStatsSink",
"PhysicalResourceId": "mm-prod-major-ingestion-trafficStatsSink",
"ResourceType": "AWS::Lambda::Function",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "storageTopN",
"PhysicalResourceId": "mm-prod-major-storage-topN",
"ResourceType": "AWS::DynamoDB::Table",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "storageTrafficStats",
"PhysicalResourceId": "mm-prod-major-storage-trafficStats",
"ResourceType": "AWS::DynamoDB::Table",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "storageTrafficStatsStream",
"PhysicalResourceId": "mm-prod-major-storage-TrafficStatsStream",
"ResourceType": "AWS::Kinesis::Stream",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "supportPercentileCalculator",
"PhysicalResourceId": "mm-prod-major-support-percentileCalculator",
"ResourceType": "AWS::Lambda::Function",
"Replacement": "False",
"Scope": [
"Properties",
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Properties",
"Name": "ReservedConcurrentExecutions",
"RequiresRecreation": "Never"
},
"Evaluation": "Static",
"ChangeSource": "DirectModification"
},
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "supportPercentileCalculatorStream",
"PhysicalResourceId": "29f4408f-d0a1-452a-b2bf-c04d0f4c39ba",
"ResourceType": "AWS::Lambda::EventSourceMapping",
"Replacement": "Conditional",
"Scope": [
"Properties"
],
"Details": [
{
"Target": {
"Attribute": "Properties",
"Name": "EventSourceArn",
"RequiresRecreation": "Always"
},
"Evaluation": "Dynamic",
"ChangeSource": "ResourceAttribute",
"CausingEntity": "storageTrafficStatsStream.Arn"
}
]
}
}
]
}
2018-11-13T23:46:33.554Z [main] info: Enacting Change set
2018-11-13T23:46:33.974Z [main] silly: Waiting for stack (arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e) to be updated
2018-11-13T23:46:33.975Z [main] info: .
2018-11-13T23:46:44.299Z [main] info: ..
2018-11-13T23:46:44.704Z [main] info: Stack status: UPDATE_COMPLETE
2018-11-13T23:46:44.705Z [main] silly: stack ID: arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e
2018-11-13T23:46:45.672Z [main] info: Rig prod-major shipped.
2018-11-13T23:51:35.075Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-13T23:51:35.076Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T23:51:35.076Z [main] silly: Executing: tsc --outDir "/tmp/packager-0db76820-e79f-11e8-8bec-45db69fcdf16/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-13T23:51:35.948Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T23:51:36.486Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T23:51:36.486Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T23:51:36.486Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T23:51:36.486Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T23:51:36.486Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T23:51:36.487Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T23:51:36.487Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-13T23:51:36.487Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T23:51:36.487Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-13T23:51:36.487Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T23:51:36.487Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T23:51:36.487Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T23:51:36.487Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T23:51:36.487Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T23:51:36.487Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T23:51:36.487Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T23:51:36.487Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T23:51:36.487Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T23:51:36.487Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T23:51:36.487Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T23:51:36.487Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T23:51:36.487Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T23:51:36.487Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T23:51:36.487Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T23:51:36.487Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T23:51:36.487Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T23:51:36.487Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T23:51:36.487Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T23:51:36.487Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T23:51:36.487Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T23:51:36.487Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T23:51:36.487Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-13T23:51:36.487Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T23:51:36.487Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T23:51:36.488Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T23:51:36.488Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T23:51:36.488Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T23:51:36.488Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T23:51:36.488Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T23:51:36.488Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T23:51:36.488Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T23:51:36.488Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T23:51:36.488Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-13T23:51:36.488Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-13T23:51:36.488Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-13T23:51:36.488Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T23:51:36.488Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T23:51:36.488Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T23:51:36.488Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T23:51:36.488Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T23:51:37.190Z [main] info: Shipping rig prod-major to eu-central-1
2018-11-13T23:51:37.191Z [main] silly: Packing src/store/compute into build
2018-11-13T23:51:37.191Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-13T23:51:37.191Z [main] silly: Executing: tsc --outDir "/tmp/packager-0efa6f70-e79f-11e8-8bec-45db69fcdf16/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/store/compute"
2018-11-13T23:51:40.545Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-13T23:51:41.115Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T23:51:41.115Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T23:51:41.115Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T23:51:41.115Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T23:51:41.180Z [main] info: Pushing code: store
2018-11-13T23:51:41.224Z [main] silly: Packing src/support/errorSink into build
2018-11-13T23:51:41.224Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-13T23:51:41.224Z [main] silly: Executing: tsc --outDir "/tmp/packager-1161d280-e79f-11e8-8bec-45db69fcdf16/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink"
2018-11-13T23:51:42.099Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-13T23:51:42.659Z [main] info: Pushing code: errorSink
2018-11-13T23:51:42.660Z [main] silly: Packing src/support/trafficStatsSink into build
2018-11-13T23:51:42.660Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-13T23:51:42.660Z [main] silly: Executing: tsc --outDir "/tmp/packager-123cf040-e79f-11e8-8bec-45db69fcdf16/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink"
2018-11-13T23:51:45.903Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-13T23:51:46.467Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T23:51:46.467Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T23:51:46.467Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T23:51:46.543Z [main] info: Pushing code: trafficStatsSink
2018-11-13T23:51:46.591Z [main] silly: Packing src/support/percentileCalculator into build
2018-11-13T23:51:46.591Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator
2018-11-13T23:51:46.591Z [main] silly: Executing: tsc --outDir "/tmp/packager-14949be0-e79f-11e8-8bec-45db69fcdf16/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator"
2018-11-13T23:51:47.465Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator
2018-11-13T23:51:47.985Z [main] info: Pushing code: percentileCalculator
2018-11-13T23:52:16.096Z [main] silly: Fingerprint comparsion:
ff44fcc948f13a5dc9b5bff71ddc67af9f0064ab23881ed15de5136f35f89e11
ff44fcc948f13a5dc9b5bff71ddc67af9f0064ab23881ed15de5136f35f89e11
2018-11-13T23:52:16.096Z [main] info: No stack changes
2018-11-13T23:52:17.036Z [main] info: Rig prod-major shipped.
2018-11-13T23:59:56.561Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-13T23:59:56.562Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T23:59:56.562Z [main] silly: Executing: tsc --outDir "/tmp/packager-38a01900-e7a0-11e8-9480-6b20b92978cc/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-13T23:59:57.434Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-13T23:59:57.987Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-13T23:59:57.987Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-13T23:59:57.987Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-13T23:59:57.987Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T23:59:57.987Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T23:59:57.987Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T23:59:57.987Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-13T23:59:57.987Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-13T23:59:57.987Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-13T23:59:57.987Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T23:59:57.987Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-13T23:59:57.987Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T23:59:57.987Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T23:59:57.987Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T23:59:57.987Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T23:59:57.987Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T23:59:57.987Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T23:59:57.987Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T23:59:57.987Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T23:59:57.987Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T23:59:57.987Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-13T23:59:57.988Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-13T23:59:57.988Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T23:59:57.988Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-13T23:59:57.988Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T23:59:57.988Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-13T23:59:57.988Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-13T23:59:57.988Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-13T23:59:57.988Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-13T23:59:57.988Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T23:59:57.988Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-13T23:59:57.988Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-13T23:59:57.988Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-13T23:59:57.988Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T23:59:57.988Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T23:59:57.988Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T23:59:57.988Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T23:59:57.988Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T23:59:57.988Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T23:59:57.988Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T23:59:57.988Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T23:59:57.988Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T23:59:57.988Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-13T23:59:57.988Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-13T23:59:57.988Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-13T23:59:57.988Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-13T23:59:57.988Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-13T23:59:57.988Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-13T23:59:57.988Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-13T23:59:57.988Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-13T23:59:58.676Z [main] info: Shipping rig prod-major to eu-central-1
2018-11-13T23:59:58.676Z [main] silly: Packing src/store/compute into build
2018-11-13T23:59:58.676Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-13T23:59:58.676Z [main] silly: Executing: tsc --outDir "/tmp/packager-39e2f940-e7a0-11e8-9480-6b20b92978cc/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/store/compute"
2018-11-14T00:00:01.946Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-14T00:00:02.508Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T00:00:02.508Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T00:00:02.508Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T00:00:02.508Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T00:00:02.571Z [main] info: Pushing code: store
2018-11-14T00:00:02.597Z [main] silly: Packing src/support/errorSink into build
2018-11-14T00:00:02.597Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-14T00:00:02.597Z [main] silly: Executing: tsc --outDir "/tmp/packager-3c394550-e7a0-11e8-9480-6b20b92978cc/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink"
2018-11-14T00:00:03.485Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-14T00:00:04.012Z [main] info: Pushing code: errorSink
2018-11-14T00:00:04.012Z [main] silly: Packing src/support/trafficStatsSink into build
2018-11-14T00:00:04.012Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-14T00:00:04.012Z [main] silly: Executing: tsc --outDir "/tmp/packager-3d112ec0-e7a0-11e8-9480-6b20b92978cc/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink"
2018-11-14T00:00:07.289Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-14T00:00:07.822Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T00:00:07.822Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T00:00:07.822Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T00:00:07.907Z [main] info: Pushing code: trafficStatsSink
2018-11-14T00:00:07.950Z [main] silly: Packing src/support/percentileCalculator into build
2018-11-14T00:00:07.950Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator
2018-11-14T00:00:07.950Z [main] silly: Executing: tsc --outDir "/tmp/packager-3f6a12e0-e7a0-11e8-9480-6b20b92978cc/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator"
2018-11-14T00:00:08.834Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator
2018-11-14T00:00:09.385Z [main] info: Pushing code: percentileCalculator
2018-11-14T00:00:37.710Z [main] silly: Fingerprint comparsion:
ff44fcc948f13a5dc9b5bff71ddc67af9f0064ab23881ed15de5136f35f89e11
ff44fcc948f13a5dc9b5bff71ddc67af9f0064ab23881ed15de5136f35f89e11
2018-11-14T00:00:37.711Z [main] info: No stack changes
2018-11-14T00:00:38.658Z [main] info: Rig prod-major shipped.
2018-11-14T00:00:54.915Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T00:00:54.916Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:00:54.916Z [main] silly: Executing: tsc --outDir "/tmp/packager-5b683620-e7a0-11e8-8533-71244f93080a/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T00:00:55.813Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:00:56.353Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T00:00:56.354Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T00:00:56.354Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T00:00:56.354Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:00:56.354Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:00:56.354Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:00:56.354Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T00:00:56.354Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T00:00:56.354Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T00:00:56.354Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:00:56.354Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:00:56.354Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:00:56.354Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:00:56.354Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:00:56.354Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:00:56.354Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:00:56.354Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:00:56.354Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:00:56.354Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:00:56.354Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:00:56.354Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:00:56.354Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:00:56.354Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:00:56.354Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:00:56.355Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:00:56.355Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:00:56.355Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:00:56.355Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:00:56.355Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:00:56.355Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:00:56.355Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:00:56.355Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T00:00:56.355Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:00:56.355Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:00:56.355Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:00:56.355Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:00:56.355Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:00:56.355Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:00:56.355Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:00:56.355Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:00:56.355Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:00:56.355Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:00:56.355Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T00:00:56.355Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T00:00:56.355Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T00:00:56.355Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:00:56.355Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:00:56.355Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:00:56.355Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:00:56.355Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:00:57.023Z [main] info: {
"mm": {
"prod-major": {
"mm-prod-major-ingestion-store": "lambda",
"mm-prod-major-ingestion-errorSink": "lambda",
"mm-prod-major-ingestion-trafficStatsSink": "lambda",
"mm-prod-major-support-percentileCalculator": "lambda",
"mm-prod-major-storage-TrafficStatsStream": "kinesis",
"mm-prod-major-storage-trafficStats": "dynamodb",
"mm-prod-major-storage-topN": "dynamodb"
}
}
}
2018-11-14T00:01:46.436Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T00:01:46.437Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:01:46.437Z [main] silly: Executing: tsc --outDir "/tmp/packager-7a1db130-e7a0-11e8-8fc9-313dbbfd1e8d/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T00:01:47.399Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:01:47.963Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T00:01:47.963Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T00:01:47.963Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T00:01:47.963Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:01:47.963Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:01:47.964Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:01:47.964Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T00:01:47.964Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T00:01:47.964Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T00:01:47.964Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:01:47.964Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:01:47.964Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:01:47.964Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:01:47.964Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:01:47.964Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:01:47.964Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:01:47.964Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:01:47.964Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:01:47.964Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:01:47.964Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:01:47.964Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:01:47.964Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:01:47.964Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:01:47.964Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:01:47.964Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:01:47.964Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:01:47.964Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:01:47.964Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:01:47.964Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:01:47.964Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:01:47.964Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:01:47.964Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T00:01:47.964Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:01:47.964Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:01:47.965Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:01:47.965Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:01:47.965Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:01:47.965Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:01:47.965Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:01:47.965Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:01:47.965Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:01:47.965Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:01:47.965Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T00:01:47.965Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T00:01:47.965Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T00:01:47.965Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:01:47.965Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:01:47.965Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:01:47.965Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:01:47.965Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:01:49.408Z [main] info: [
[
"<12 seconds ago> ",
"2018-11-14T00:01:37.235Z 1ca0aa76-cd13-4aad-ba61-15f46e0ad322 Got 11 records. Produced 0"
],
[
"<12 seconds ago> ",
"2018-11-14T00:01:37.235Z 1ca0aa76-cd13-4aad-ba61-15f46e0ad322 First 10 summaries=",
"[]"
],
[
"<11 seconds ago> ",
"2018-11-14T00:01:38.233Z 4c915c24-e3f4-4475-84c8-87f379018785 Got 15 records. Produced 0"
],
[
"<11 seconds ago> ",
"2018-11-14T00:01:38.233Z 4c915c24-e3f4-4475-84c8-87f379018785 First 10 summaries=",
"[]"
],
[
"<10 seconds ago> ",
"2018-11-14T00:01:39.236Z a59626c8-c99e-41bb-a5ce-10e55d593f68 Got 5 records. Produced 0"
],
[
"<10 seconds ago> ",
"2018-11-14T00:01:39.236Z a59626c8-c99e-41bb-a5ce-10e55d593f68 First 10 summaries=",
"[]"
],
[
"<9 seconds ago> ",
"2018-11-14T00:01:40.239Z 9e32e12f-11b1-428c-8b79-3703cb3e236b Got 15 records. Produced 0"
],
[
"<9 seconds ago> ",
"2018-11-14T00:01:40.239Z 9e32e12f-11b1-428c-8b79-3703cb3e236b First 10 summaries=",
"[]"
],
[
"<8 seconds ago> ",
"2018-11-14T00:01:41.235Z 78f163e1-dd2e-4d2e-ad3c-6fde7a690d97 Got 4 records. Produced 0"
],
[
"<8 seconds ago> ",
"2018-11-14T00:01:41.235Z 78f163e1-dd2e-4d2e-ad3c-6fde7a690d97 First 10 summaries=",
"[]"
],
[
"<7 seconds ago> ",
"2018-11-14T00:01:42.235Z cb07ffaf-2d0b-4b88-b8fe-c3f48c092379 Got 4 records. Produced 0"
],
[
"<7 seconds ago> ",
"2018-11-14T00:01:42.235Z cb07ffaf-2d0b-4b88-b8fe-c3f48c092379 First 10 summaries=",
"[]"
]
]
2018-11-14T00:02:10.384Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T00:02:10.385Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:02:10.385Z [main] silly: Executing: tsc --outDir "/tmp/packager-8863ddf0-e7a0-11e8-9659-8f06627252f0/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T00:02:11.287Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:02:11.826Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T00:02:11.827Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T00:02:11.827Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T00:02:11.827Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:02:11.827Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:02:11.827Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:02:11.827Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T00:02:11.827Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T00:02:11.827Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T00:02:11.827Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:02:11.827Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:02:11.827Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:02:11.827Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:02:11.827Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:02:11.827Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:02:11.827Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:02:11.827Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:02:11.827Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:02:11.827Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:02:11.827Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:02:11.827Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:02:11.827Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:02:11.827Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:02:11.827Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:02:11.828Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:02:11.828Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:02:11.828Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:02:11.828Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:02:11.828Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:02:11.828Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:02:11.828Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:02:11.828Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T00:02:11.828Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:02:11.828Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:02:11.828Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:02:11.828Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:02:11.828Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:02:11.828Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:02:11.828Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:02:11.828Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:02:11.828Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:02:11.828Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:02:11.828Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T00:02:11.828Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T00:02:11.828Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T00:02:11.828Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:02:11.828Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:02:11.828Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:02:11.828Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:02:11.828Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:02:13.860Z [main] info: [
[
"<6 seconds ago> ",
"2018-11-14T00:02:08.249Z a66ee6d4-37c7-4f83-a782-71b055e06c03 Got 3 records. Produced 0"
],
[
"<6 seconds ago> ",
"2018-11-14T00:02:08.249Z a66ee6d4-37c7-4f83-a782-71b055e06c03 First 10 summaries=",
"[]"
],
[
"<5 seconds ago> ",
"2018-11-14T00:02:09.245Z f30731df-d00d-47ee-8fb6-7887fe9336ee Got 6 records. Produced 0"
],
[
"<5 seconds ago> ",
"2018-11-14T00:02:09.246Z f30731df-d00d-47ee-8fb6-7887fe9336ee First 10 summaries=",
"[]"
],
[
"<4 seconds ago> ",
"2018-11-14T00:02:10.238Z f6aadaa4-fd93-4aa1-a5f8-93bf857a9e74 Got 11 records. Produced 0"
],
[
"<4 seconds ago> ",
"2018-11-14T00:02:10.238Z f6aadaa4-fd93-4aa1-a5f8-93bf857a9e74 First 10 summaries=",
"[]"
],
[
"<3 seconds ago> ",
"2018-11-14T00:02:11.248Z 3cd2fd2f-2092-45f6-b0de-5d8d7bbbc995 Got 7 records. Produced 0"
],
[
"<3 seconds ago> ",
"2018-11-14T00:02:11.249Z 3cd2fd2f-2092-45f6-b0de-5d8d7bbbc995 First 10 summaries=",
"[]"
],
[
"<2 seconds ago> ",
"2018-11-14T00:02:12.244Z a5eea5e4-e104-413a-ba5a-70da68d22c8d Got 10 records. Produced 0"
],
[
"<2 seconds ago> ",
"2018-11-14T00:02:12.244Z a5eea5e4-e104-413a-ba5a-70da68d22c8d First 10 summaries=",
"[]"
],
[
"<1 seconds ago> ",
"2018-11-14T00:02:13.244Z 406ae5ad-6b68-4899-934e-9f830813f8f5 Got 9 records. Produced 0"
],
[
"<1 seconds ago> ",
"2018-11-14T00:02:13.245Z 406ae5ad-6b68-4899-934e-9f830813f8f5 First 10 summaries=",
"[]"
]
]
2018-11-14T00:02:24.787Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T00:02:24.788Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:02:24.788Z [main] silly: Executing: tsc --outDir "/tmp/packager-90f99720-e7a0-11e8-8d6d-57482ec1dd78/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T00:02:25.699Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:02:26.253Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T00:02:26.253Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T00:02:26.253Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T00:02:26.253Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:02:26.253Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:02:26.253Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:02:26.253Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T00:02:26.253Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T00:02:26.253Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T00:02:26.253Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:02:26.253Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:02:26.253Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:02:26.253Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:02:26.253Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:02:26.253Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:02:26.253Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:02:26.253Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:02:26.254Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:02:26.254Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:02:26.254Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:02:26.254Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:02:26.254Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:02:26.254Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:02:26.254Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:02:26.254Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:02:26.254Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:02:26.254Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:02:26.254Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:02:26.254Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:02:26.254Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:02:26.254Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:02:26.254Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T00:02:26.254Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:02:26.254Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:02:26.254Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:02:26.254Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:02:26.254Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:02:26.254Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:02:26.254Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:02:26.254Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:02:26.254Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:02:26.254Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:02:26.254Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T00:02:26.254Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T00:02:26.254Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T00:02:26.254Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:02:26.255Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:02:26.255Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:02:26.255Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:02:26.255Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:02:27.667Z [main] info: [
[
"<19 seconds ago> ",
"2018-11-14T00:02:08.249Z a66ee6d4-37c7-4f83-a782-71b055e06c03 Got 3 records. Produced 0"
],
[
"<19 seconds ago> ",
"2018-11-14T00:02:08.249Z a66ee6d4-37c7-4f83-a782-71b055e06c03 First 10 summaries=",
"[]"
],
[
"<18 seconds ago> ",
"2018-11-14T00:02:09.245Z f30731df-d00d-47ee-8fb6-7887fe9336ee Got 6 records. Produced 0"
],
[
"<18 seconds ago> ",
"2018-11-14T00:02:09.246Z f30731df-d00d-47ee-8fb6-7887fe9336ee First 10 summaries=",
"[]"
],
[
"<17 seconds ago> ",
"2018-11-14T00:02:10.238Z f6aadaa4-fd93-4aa1-a5f8-93bf857a9e74 Got 11 records. Produced 0"
],
[
"<17 seconds ago> ",
"2018-11-14T00:02:10.238Z f6aadaa4-fd93-4aa1-a5f8-93bf857a9e74 First 10 summaries=",
"[]"
],
[
"<16 seconds ago> ",
"2018-11-14T00:02:11.248Z 3cd2fd2f-2092-45f6-b0de-5d8d7bbbc995 Got 7 records. Produced 0"
],
[
"<16 seconds ago> ",
"2018-11-14T00:02:11.249Z 3cd2fd2f-2092-45f6-b0de-5d8d7bbbc995 First 10 summaries=",
"[]"
],
[
"<15 seconds ago> ",
"2018-11-14T00:02:12.244Z a5eea5e4-e104-413a-ba5a-70da68d22c8d Got 10 records. Produced 0"
],
[
"<15 seconds ago> ",
"2018-11-14T00:02:12.244Z a5eea5e4-e104-413a-ba5a-70da68d22c8d First 10 summaries=",
"[]"
],
[
"<14 seconds ago> ",
"2018-11-14T00:02:13.244Z 406ae5ad-6b68-4899-934e-9f830813f8f5 Got 9 records. Produced 0"
],
[
"<14 seconds ago> ",
"2018-11-14T00:02:13.245Z 406ae5ad-6b68-4899-934e-9f830813f8f5 First 10 summaries=",
"[]"
]
]
2018-11-14T00:02:49.829Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T00:02:49.830Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:02:49.830Z [main] silly: Executing: tsc --outDir "/tmp/packager-9fe6b240-e7a0-11e8-9d45-dd9474dfdb52/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T00:02:50.735Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:02:51.275Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T00:02:51.275Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T00:02:51.275Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T00:02:51.275Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:02:51.275Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:02:51.275Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:02:51.275Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T00:02:51.275Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T00:02:51.275Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T00:02:51.275Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:02:51.275Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:02:51.275Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:02:51.275Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:02:51.275Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:02:51.275Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:02:51.275Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:02:51.275Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:02:51.275Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:02:51.276Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:02:51.276Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:02:51.276Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:02:51.276Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:02:51.276Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:02:51.276Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:02:51.276Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:02:51.276Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:02:51.276Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:02:51.276Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:02:51.276Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:02:51.276Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:02:51.276Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:02:51.276Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T00:02:51.276Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:02:51.276Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:02:51.276Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:02:51.276Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:02:51.276Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:02:51.276Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:02:51.276Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:02:51.276Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:02:51.276Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:02:51.276Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:02:51.276Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T00:02:51.276Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T00:02:51.276Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T00:02:51.276Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:02:51.276Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:02:51.277Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:02:51.277Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:02:51.277Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:02:52.675Z [main] info: [
[
"<12 seconds ago> ",
"2018-11-14T00:02:40.249Z e404fe9f-e206-4f6a-b4e9-2a50e1c78a6c Got 6 records. Produced 0"
],
[
"<12 seconds ago> ",
"2018-11-14T00:02:40.249Z e404fe9f-e206-4f6a-b4e9-2a50e1c78a6c First 10 summaries=",
"[]"
],
[
"<11 seconds ago> ",
"2018-11-14T00:02:41.247Z 198c7802-8612-464b-9a3d-18088d4a4d14 Got 9 records. Produced 0"
],
[
"<11 seconds ago> ",
"2018-11-14T00:02:41.247Z 198c7802-8612-464b-9a3d-18088d4a4d14 First 10 summaries=",
"[]"
],
[
"<10 seconds ago> ",
"2018-11-14T00:02:42.247Z 02761f94-7fad-45d6-a21e-2724ce26a357 Got 18 records. Produced 0"
],
[
"<10 seconds ago> ",
"2018-11-14T00:02:42.248Z 02761f94-7fad-45d6-a21e-2724ce26a357 First 10 summaries=",
"[]"
],
[
"<9 seconds ago> ",
"2018-11-14T00:02:43.245Z 8c2063a6-803e-4f80-800f-9c8c9f12522c Got 15 records. Produced 0"
],
[
"<9 seconds ago> ",
"2018-11-14T00:02:43.245Z 8c2063a6-803e-4f80-800f-9c8c9f12522c First 10 summaries=",
"[]"
],
[
"<8 seconds ago> ",
"2018-11-14T00:02:44.247Z 3ebc927e-092c-4392-91af-c8e7afff5efe Got 10 records. Produced 0"
],
[
"<8 seconds ago> ",
"2018-11-14T00:02:44.247Z 3ebc927e-092c-4392-91af-c8e7afff5efe First 10 summaries=",
"[]"
],
[
"<7 seconds ago> ",
"2018-11-14T00:02:45.250Z 34b0d319-e0ed-434a-9e99-bad87ffc3b9f Got 8 records. Produced 0"
],
[
"<7 seconds ago> ",
"2018-11-14T00:02:45.250Z 34b0d319-e0ed-434a-9e99-bad87ffc3b9f First 10 summaries=",
"[]"
]
]
2018-11-14T00:06:37.882Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T00:06:37.883Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:06:37.883Z [main] silly: Executing: tsc --outDir "/tmp/packager-27d4d290-e7a1-11e8-ab27-739818bb22cd/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T00:06:38.764Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:06:39.313Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T00:06:39.313Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T00:06:39.313Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T00:06:39.313Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:06:39.313Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:06:39.313Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:06:39.313Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T00:06:39.313Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T00:06:39.313Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T00:06:39.313Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:06:39.313Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:06:39.314Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:06:39.314Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:06:39.314Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:06:39.314Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:06:39.314Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:06:39.314Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:06:39.314Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:06:39.314Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:06:39.314Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:06:39.314Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:06:39.314Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:06:39.314Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:06:39.314Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:06:39.314Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:06:39.314Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:06:39.314Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:06:39.314Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:06:39.314Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:06:39.314Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:06:39.314Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:06:39.314Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T00:06:39.314Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:06:39.314Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:06:39.314Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:06:39.314Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:06:39.314Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:06:39.314Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:06:39.314Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:06:39.315Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:06:39.315Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:06:39.315Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:06:39.315Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T00:06:39.315Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T00:06:39.315Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T00:06:39.315Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:06:39.315Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:06:39.315Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:06:39.315Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:06:39.315Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:06:39.996Z [main] info: Shipping rig prod-major to eu-central-1
2018-11-14T00:06:39.996Z [main] silly: Packing src/store/compute into build
2018-11-14T00:06:39.996Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-14T00:06:39.996Z [main] silly: Executing: tsc --outDir "/tmp/packager-29178bc0-e7a1-11e8-ab27-739818bb22cd/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/store/compute"
2018-11-14T00:06:43.299Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-14T00:06:43.842Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T00:06:43.842Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T00:06:43.842Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T00:06:43.842Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T00:06:43.904Z [main] info: Pushing code: store
2018-11-14T00:06:43.957Z [main] silly: Packing src/support/errorSink into build
2018-11-14T00:06:43.958Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-14T00:06:43.958Z [main] silly: Executing: tsc --outDir "/tmp/packager-2b73f250-e7a1-11e8-ab27-739818bb22cd/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink"
2018-11-14T00:06:44.873Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-14T00:06:45.402Z [main] info: Pushing code: errorSink
2018-11-14T00:06:45.403Z [main] silly: Packing src/support/trafficStatsSink into build
2018-11-14T00:06:45.403Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-14T00:06:45.403Z [main] silly: Executing: tsc --outDir "/tmp/packager-2c5096b0-e7a1-11e8-ab27-739818bb22cd/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink"
2018-11-14T00:06:48.630Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-14T00:06:49.165Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T00:06:49.165Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T00:06:49.165Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T00:06:49.235Z [main] info: Pushing code: trafficStatsSink
2018-11-14T00:06:49.294Z [main] silly: Packing src/support/percentileCalculator into build
2018-11-14T00:06:49.294Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator
2018-11-14T00:06:49.294Z [main] silly: Executing: tsc --outDir "/tmp/packager-2ea24ee0-e7a1-11e8-ab27-739818bb22cd/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator"
2018-11-14T00:06:50.184Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator
2018-11-14T00:06:50.710Z [main] info: Pushing code: percentileCalculator
2018-11-14T00:07:18.858Z [main] silly: Fingerprint comparsion:
a9b340ea2800829a4110edecceb65d48f92813a7401110cd0bb0a39ed9a09581
ff44fcc948f13a5dc9b5bff71ddc67af9f0064ab23881ed15de5136f35f89e11
2018-11-14T00:07:18.859Z [main] silly: StackSpec: {
"AWSTemplateFormatVersion": "2010-09-09",
"Transform": "AWS::Serverless-2016-10-31",
"Description": "description goes here",
"Resources": {
"ingestionStore": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"dynamodb:*"
],
"Resource": "arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-topN"
}
]
},
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"lambda:InvokeFunction"
],
"Resource": "arn:aws:lambda:eu-central-1:274788167589:function:mm-prod-major-ingestion-errorSink"
}
]
},
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"lambda:InvokeFunction"
],
"Resource": "arn:aws:lambda:eu-central-1:274788167589:function:mm-prod-major-ingestion-trafficStatsSink"
}
]
}
],
"Handler": "ingestion-store_Handler.handle",
"Description": "Ingest data into the metric machine",
"MemorySize": 1024,
"Timeout": 30,
"FunctionName": "mm-prod-major-ingestion-store",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-store.zip"
}
},
"ingestionErrorSink": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [],
"Handler": "ingestion-errorSink_Handler.handle",
"Description": "Track error reports",
"MemorySize": 1024,
"Timeout": 5,
"ReservedConcurrentExecutions": 1,
"FunctionName": "mm-prod-major-ingestion-errorSink",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-errorSink.zip"
}
},
"ingestionTrafficStatsSink": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"dynamodb:*"
],
"Resource": "arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-trafficStats"
}
]
},
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"kinesis:*"
],
"Resource": "arn:aws:kinesis:eu-central-1:274788167589:stream/mm-prod-major-storage-TrafficStatsStream"
}
]
}
],
"Handler": "ingestion-trafficStatsSink_Handler.handle",
"Description": "Record various stats about RPC calls",
"MemorySize": 1024,
"Timeout": 5,
"FunctionName": "mm-prod-major-ingestion-trafficStatsSink",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-trafficStatsSink.zip"
}
},
"supportPercentileCalculator": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [],
"Handler": "support-percentileCalculator_Handler.handle",
"Events": {
"Stream": {
"Type": "Kinesis",
"Properties": {
"Stream": {
"Fn::GetAtt": [
"storageTrafficStatsStream",
"Arn"
]
},
"BatchSize": 5000,
"StartingPosition": "LATEST"
}
}
},
"MemorySize": 3008,
"Timeout": 15,
"ReservedConcurrentExecutions": 1,
"FunctionName": "mm-prod-major-support-percentileCalculator",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-support-percentileCalculator.zip"
}
},
"storageTrafficStatsStream": {
"Type": "AWS::Kinesis::Stream",
"Properties": {
"RetentionPeriodHours": 24,
"ShardCount": 2,
"Name": "mm-prod-major-storage-TrafficStatsStream"
}
},
"storageTrafficStats": {
"Type": "AWS::DynamoDB::Table",
"Properties": {
"AttributeDefinitions": [
{
"AttributeName": "metricName",
"AttributeType": "S"
},
{
"AttributeName": "slot",
"AttributeType": "N"
}
],
"KeySchema": [
{
"AttributeName": "metricName",
"KeyType": "HASH"
},
{
"AttributeName": "slot",
"KeyType": "RANGE"
}
],
"ProvisionedThroughput": {
"ReadCapacityUnits": 20,
"WriteCapacityUnits": 50
},
"TableName": "mm-prod-major-storage-trafficStats"
}
},
"storageTopN": {
"Type": "AWS::DynamoDB::Table",
"Properties": {
"AttributeDefinitions": [
{
"AttributeName": "id",
"AttributeType": "S"
},
{
"AttributeName": "slot",
"AttributeType": "N"
}
],
"KeySchema": [
{
"AttributeName": "id",
"KeyType": "HASH"
},
{
"AttributeName": "slot",
"KeyType": "RANGE"
}
],
"ProvisionedThroughput": {
"ReadCapacityUnits": 6,
"WriteCapacityUnits": 200
},
"TableName": "mm-prod-major-storage-topN"
}
}
}
}
2018-11-14T00:07:18.859Z [main] silly: createChangeSetReq=
{
"StackName": "mm-prod-major",
"ChangeSetName": "cs-40416aa0-e7a1-11e8-ab27-739818bb22cd",
"ChangeSetType": "UPDATE",
"Capabilities": [
"CAPABILITY_IAM"
],
"TemplateBody": "{\"AWSTemplateFormatVersion\":\"2010-09-09\",\"Transform\":\"AWS::Serverless-2016-10-31\",\"Description\":\"description goes here\",\"Resources\":{\"ingestionStore\":{\"Type\":\"AWS::Serverless::Function\",\"Properties\":{\"Runtime\":\"nodejs8.10\",\"Policies\":[{\"Version\":\"2012-10-17\",\"Statement\":[{\"Effect\":\"Allow\",\"Action\":[\"dynamodb:*\"],\"Resource\":\"arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-topN\"}]},{\"Version\":\"2012-10-17\",\"Statement\":[{\"Effect\":\"Allow\",\"Action\":[\"lambda:InvokeFunction\"],\"Resource\":\"arn:aws:lambda:eu-central-1:274788167589:function:mm-prod-major-ingestion-errorSink\"}]},{\"Version\":\"2012-10-17\",\"Statement\":[{\"Effect\":\"Allow\",\"Action\":[\"lambda:InvokeFunction\"],\"Resource\":\"arn:aws:lambda:eu-central-1:274788167589:function:mm-prod-major-ingestion-trafficStatsSink\"}]}],\"Handler\":\"ingestion-store_Handler.handle\",\"Description\":\"Ingest data into the metric machine\",\"MemorySize\":1024,\"Timeout\":30,\"FunctionName\":\"mm-prod-major-ingestion-store\",\"CodeUri\":\"s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-store.zip\"}},\"ingestionErrorSink\":{\"Type\":\"AWS::Serverless::Function\",\"Properties\":{\"Runtime\":\"nodejs8.10\",\"Policies\":[],\"Handler\":\"ingestion-errorSink_Handler.handle\",\"Description\":\"Track error reports\",\"MemorySize\":1024,\"Timeout\":5,\"ReservedConcurrentExecutions\":1,\"FunctionName\":\"mm-prod-major-ingestion-errorSink\",\"CodeUri\":\"s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-errorSink.zip\"}},\"ingestionTrafficStatsSink\":{\"Type\":\"AWS::Serverless::Function\",\"Properties\":{\"Runtime\":\"nodejs8.10\",\"Policies\":[{\"Version\":\"2012-10-17\",\"Statement\":[{\"Effect\":\"Allow\",\"Action\":[\"dynamodb:*\"],\"Resource\":\"arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-trafficStats\"}]},{\"Version\":\"2012-10-17\",\"Statement\":[{\"Effect\":\"Allow\",\"Action\":[\"kinesis:*\"],\"Resource\":\"arn:aws:kinesis:eu-central-1:274788167589:stream/mm-prod-major-storage-TrafficStatsStream\"}]}],\"Handler\":\"ingestion-trafficStatsSink_Handler.handle\",\"Description\":\"Record various stats about RPC calls\",\"MemorySize\":1024,\"Timeout\":5,\"FunctionName\":\"mm-prod-major-ingestion-trafficStatsSink\",\"CodeUri\":\"s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-trafficStatsSink.zip\"}},\"supportPercentileCalculator\":{\"Type\":\"AWS::Serverless::Function\",\"Properties\":{\"Runtime\":\"nodejs8.10\",\"Policies\":[],\"Handler\":\"support-percentileCalculator_Handler.handle\",\"Events\":{\"Stream\":{\"Type\":\"Kinesis\",\"Properties\":{\"Stream\":{\"Fn::GetAtt\":[\"storageTrafficStatsStream\",\"Arn\"]},\"BatchSize\":5000,\"StartingPosition\":\"LATEST\"}}},\"MemorySize\":3008,\"Timeout\":15,\"ReservedConcurrentExecutions\":1,\"FunctionName\":\"mm-prod-major-support-percentileCalculator\",\"CodeUri\":\"s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-support-percentileCalculator.zip\"}},\"storageTrafficStatsStream\":{\"Type\":\"AWS::Kinesis::Stream\",\"Properties\":{\"RetentionPeriodHours\":24,\"ShardCount\":2,\"Name\":\"mm-prod-major-storage-TrafficStatsStream\"}},\"storageTrafficStats\":{\"Type\":\"AWS::DynamoDB::Table\",\"Properties\":{\"AttributeDefinitions\":[{\"AttributeName\":\"metricName\",\"AttributeType\":\"S\"},{\"AttributeName\":\"slot\",\"AttributeType\":\"N\"}],\"KeySchema\":[{\"AttributeName\":\"metricName\",\"KeyType\":\"HASH\"},{\"AttributeName\":\"slot\",\"KeyType\":\"RANGE\"}],\"ProvisionedThroughput\":{\"ReadCapacityUnits\":20,\"WriteCapacityUnits\":50},\"TableName\":\"mm-prod-major-storage-trafficStats\"}},\"storageTopN\":{\"Type\":\"AWS::DynamoDB::Table\",\"Properties\":{\"AttributeDefinitions\":[{\"AttributeName\":\"id\",\"AttributeType\":\"S\"},{\"AttributeName\":\"slot\",\"AttributeType\":\"N\"}],\"KeySchema\":[{\"AttributeName\":\"id\",\"KeyType\":\"HASH\"},{\"AttributeName\":\"slot\",\"KeyType\":\"RANGE\"}],\"ProvisionedThroughput\":{\"ReadCapacityUnits\":6,\"WriteCapacityUnits\":200},\"TableName\":\"mm-prod-major-storage-topN\"}}}}",
"Tags": [
{
"Key": "bigband_fingerprint",
"Value": "a9b340ea2800829a4110edecceb65d48f92813a7401110cd0bb0a39ed9a09581"
}
]
}
2018-11-14T00:07:19.411Z [main] info: Creating change set
2018-11-14T00:07:19.412Z [main] info: .
2018-11-14T00:07:19.810Z [main] silly: ChangeSet description=
{
"ResponseMetadata": {
"RequestId": "40ba6bc2-e7a1-11e8-a30c-2935373a2405"
},
"ChangeSetName": "cs-40416aa0-e7a1-11e8-ab27-739818bb22cd",
"ChangeSetId": "arn:aws:cloudformation:eu-central-1:274788167589:changeSet/cs-40416aa0-e7a1-11e8-ab27-739818bb22cd/e51695a8-2249-40fc-a256-06a5c3bd2cab",
"StackId": "arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e",
"StackName": "mm-prod-major",
"Parameters": [],
"CreationTime": "2018-11-14T00:07:19.334Z",
"ExecutionStatus": "UNAVAILABLE",
"Status": "CREATE_IN_PROGRESS",
"NotificationARNs": [],
"RollbackConfiguration": {},
"Capabilities": [
"CAPABILITY_IAM"
],
"Tags": [
{
"Key": "bigband_fingerprint",
"Value": "a9b340ea2800829a4110edecceb65d48f92813a7401110cd0bb0a39ed9a09581"
}
],
"Changes": []
}
2018-11-14T00:07:29.823Z [main] info: ..
2018-11-14T00:07:30.361Z [main] silly: ChangeSet description=
{
"ResponseMetadata": {
"RequestId": "46ffcbf9-e7a1-11e8-93ad-a50bca3b7568"
},
"ChangeSetName": "cs-40416aa0-e7a1-11e8-ab27-739818bb22cd",
"ChangeSetId": "arn:aws:cloudformation:eu-central-1:274788167589:changeSet/cs-40416aa0-e7a1-11e8-ab27-739818bb22cd/e51695a8-2249-40fc-a256-06a5c3bd2cab",
"StackId": "arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e",
"StackName": "mm-prod-major",
"Parameters": [],
"CreationTime": "2018-11-14T00:07:19.334Z",
"ExecutionStatus": "AVAILABLE",
"Status": "CREATE_COMPLETE",
"NotificationARNs": [],
"RollbackConfiguration": {},
"Capabilities": [
"CAPABILITY_IAM"
],
"Tags": [
{
"Key": "bigband_fingerprint",
"Value": "a9b340ea2800829a4110edecceb65d48f92813a7401110cd0bb0a39ed9a09581"
}
],
"Changes": [
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "ingestionErrorSink",
"PhysicalResourceId": "mm-prod-major-ingestion-errorSink",
"ResourceType": "AWS::Lambda::Function",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "ingestionStore",
"PhysicalResourceId": "mm-prod-major-ingestion-store",
"ResourceType": "AWS::Lambda::Function",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "ingestionTrafficStatsSink",
"PhysicalResourceId": "mm-prod-major-ingestion-trafficStatsSink",
"ResourceType": "AWS::Lambda::Function",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "storageTopN",
"PhysicalResourceId": "mm-prod-major-storage-topN",
"ResourceType": "AWS::DynamoDB::Table",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "storageTrafficStats",
"PhysicalResourceId": "mm-prod-major-storage-trafficStats",
"ResourceType": "AWS::DynamoDB::Table",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "storageTrafficStatsStream",
"PhysicalResourceId": "mm-prod-major-storage-TrafficStatsStream",
"ResourceType": "AWS::Kinesis::Stream",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "supportPercentileCalculator",
"PhysicalResourceId": "mm-prod-major-support-percentileCalculator",
"ResourceType": "AWS::Lambda::Function",
"Replacement": "False",
"Scope": [
"Properties",
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Properties",
"Name": "MemorySize",
"RequiresRecreation": "Never"
},
"Evaluation": "Static",
"ChangeSource": "DirectModification"
},
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
},
{
"Target": {
"Attribute": "Properties",
"Name": "Timeout",
"RequiresRecreation": "Never"
},
"Evaluation": "Static",
"ChangeSource": "DirectModification"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "supportPercentileCalculatorStream",
"PhysicalResourceId": "29f4408f-d0a1-452a-b2bf-c04d0f4c39ba",
"ResourceType": "AWS::Lambda::EventSourceMapping",
"Replacement": "Conditional",
"Scope": [
"Properties"
],
"Details": [
{
"Target": {
"Attribute": "Properties",
"Name": "EventSourceArn",
"RequiresRecreation": "Always"
},
"Evaluation": "Dynamic",
"ChangeSource": "ResourceAttribute",
"CausingEntity": "storageTrafficStatsStream.Arn"
}
]
}
}
]
}
2018-11-14T00:07:30.362Z [main] info: Enacting Change set
2018-11-14T00:07:30.780Z [main] silly: Waiting for stack (arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e) to be updated
2018-11-14T00:07:30.781Z [main] info: .
2018-11-14T00:07:41.104Z [main] info: ..
2018-11-14T00:07:41.654Z [main] info: Stack status: UPDATE_COMPLETE
2018-11-14T00:07:41.654Z [main] silly: stack ID: arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e
2018-11-14T00:07:42.637Z [main] info: Rig prod-major shipped.
2018-11-14T00:08:41.524Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T00:08:41.525Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:08:41.525Z [main] silly: Executing: tsc --outDir "/tmp/packager-71871830-e7a1-11e8-8869-7f2c0a613f44/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T00:08:42.431Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:08:42.986Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T00:08:42.986Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T00:08:42.987Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T00:08:42.987Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:08:42.987Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:08:42.987Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:08:42.987Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T00:08:42.987Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T00:08:42.987Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T00:08:42.987Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:08:42.987Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:08:42.987Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:08:42.987Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:08:42.987Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:08:42.987Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:08:42.987Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:08:42.987Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:08:42.987Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:08:42.987Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:08:42.987Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:08:42.987Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:08:42.987Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:08:42.987Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:08:42.987Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:08:42.987Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:08:42.987Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:08:42.987Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:08:42.987Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:08:42.987Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:08:42.988Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:08:42.988Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:08:42.988Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T00:08:42.988Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:08:42.988Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:08:42.988Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:08:42.988Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:08:42.988Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:08:42.988Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:08:42.988Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:08:42.988Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:08:42.988Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:08:42.988Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:08:42.988Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T00:08:42.988Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T00:08:42.988Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T00:08:42.988Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:08:42.988Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:08:42.988Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:08:42.988Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:08:42.988Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:08:44.492Z [main] info: []
2018-11-14T00:08:48.941Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T00:08:48.942Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:08:48.942Z [main] silly: Executing: tsc --outDir "/tmp/packager-75f2d6c0-e7a1-11e8-80c5-03f1220b3932/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T00:08:49.903Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:08:50.460Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T00:08:50.460Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T00:08:50.460Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T00:08:50.460Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:08:50.460Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:08:50.460Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:08:50.460Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T00:08:50.460Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T00:08:50.460Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T00:08:50.460Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:08:50.460Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:08:50.460Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:08:50.460Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:08:50.460Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:08:50.460Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:08:50.460Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:08:50.460Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:08:50.460Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:08:50.461Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:08:50.461Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:08:50.461Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:08:50.461Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:08:50.461Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:08:50.461Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:08:50.461Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:08:50.461Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:08:50.461Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:08:50.461Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:08:50.461Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:08:50.461Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:08:50.461Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:08:50.461Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T00:08:50.461Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:08:50.461Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:08:50.461Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:08:50.461Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:08:50.461Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:08:50.461Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:08:50.461Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:08:50.461Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:08:50.461Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:08:50.461Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:08:50.461Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T00:08:50.461Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T00:08:50.461Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T00:08:50.461Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:08:50.461Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:08:50.462Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:08:50.462Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:08:50.462Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:08:51.932Z [main] info: []
2018-11-14T00:08:54.469Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T00:08:54.470Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:08:54.470Z [main] silly: Executing: tsc --outDir "/tmp/packager-793e5840-e7a1-11e8-8bce-c9b59fe8f075/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T00:08:55.365Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:08:55.904Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T00:08:55.904Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T00:08:55.904Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T00:08:55.905Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:08:55.905Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:08:55.905Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:08:55.905Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T00:08:55.905Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T00:08:55.905Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T00:08:55.905Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:08:55.905Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:08:55.905Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:08:55.905Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:08:55.905Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:08:55.905Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:08:55.905Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:08:55.905Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:08:55.905Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:08:55.905Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:08:55.905Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:08:55.905Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:08:55.905Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:08:55.905Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:08:55.905Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:08:55.905Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:08:55.905Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:08:55.905Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:08:55.905Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:08:55.905Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:08:55.905Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:08:55.905Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:08:55.905Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T00:08:55.906Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:08:55.906Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:08:55.906Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:08:55.906Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:08:55.906Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:08:55.906Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:08:55.906Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:08:55.906Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:08:55.906Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:08:55.906Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:08:55.906Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T00:08:55.906Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T00:08:55.906Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T00:08:55.906Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:08:55.906Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:08:55.906Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:08:55.906Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:08:55.906Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:08:57.301Z [main] info: []
2018-11-14T00:09:00.774Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T00:09:00.775Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:09:00.775Z [main] silly: Executing: tsc --outDir "/tmp/packager-7d006950-e7a1-11e8-a99f-6d2c765588e5/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T00:09:01.705Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:09:02.235Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T00:09:02.235Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T00:09:02.235Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T00:09:02.235Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:09:02.235Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:09:02.235Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:09:02.235Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T00:09:02.236Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T00:09:02.236Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T00:09:02.236Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:09:02.236Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:09:02.236Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:09:02.236Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:09:02.236Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:09:02.236Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:09:02.236Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:09:02.236Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:09:02.236Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:09:02.236Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:09:02.236Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:09:02.236Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:09:02.236Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:09:02.236Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:09:02.236Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:09:02.236Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:09:02.236Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:09:02.236Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:09:02.236Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:09:02.236Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:09:02.236Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:09:02.236Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:09:02.236Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T00:09:02.236Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:09:02.236Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:09:02.236Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:09:02.236Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:09:02.237Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:09:02.237Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:09:02.237Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:09:02.237Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:09:02.237Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:09:02.237Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:09:02.237Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T00:09:02.237Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T00:09:02.237Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T00:09:02.237Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:09:02.237Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:09:02.237Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:09:02.237Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:09:02.237Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:09:03.762Z [main] info: []
2018-11-14T00:09:12.610Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T00:09:12.611Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:09:12.611Z [main] silly: Executing: tsc --outDir "/tmp/packager-840e7110-e7a1-11e8-86bb-b9f372a88a4e/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T00:09:13.515Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:09:14.051Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T00:09:14.051Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T00:09:14.051Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T00:09:14.051Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:09:14.051Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:09:14.051Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:09:14.051Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T00:09:14.051Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T00:09:14.051Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T00:09:14.051Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:09:14.052Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:09:14.052Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:09:14.052Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:09:14.052Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:09:14.052Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:09:14.052Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:09:14.052Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:09:14.052Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:09:14.052Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:09:14.052Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:09:14.052Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:09:14.052Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:09:14.052Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:09:14.052Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:09:14.052Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:09:14.052Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:09:14.052Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:09:14.052Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:09:14.052Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:09:14.052Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:09:14.052Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:09:14.052Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T00:09:14.052Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:09:14.052Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:09:14.052Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:09:14.052Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:09:14.052Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:09:14.052Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:09:14.052Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:09:14.053Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:09:14.053Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:09:14.053Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:09:14.053Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T00:09:14.053Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T00:09:14.053Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T00:09:14.053Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:09:14.053Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:09:14.053Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:09:14.053Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:09:14.053Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:09:15.478Z [main] info: []
2018-11-14T00:09:17.976Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T00:09:17.977Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:09:17.977Z [main] silly: Executing: tsc --outDir "/tmp/packager-87413a70-e7a1-11e8-8876-fff72296c15a/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T00:09:18.928Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:09:19.534Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T00:09:19.534Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T00:09:19.534Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T00:09:19.534Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:09:19.534Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:09:19.534Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:09:19.534Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T00:09:19.534Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T00:09:19.535Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T00:09:19.535Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:09:19.535Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:09:19.535Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:09:19.535Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:09:19.535Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:09:19.535Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:09:19.535Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:09:19.535Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:09:19.535Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:09:19.535Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:09:19.535Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:09:19.535Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:09:19.535Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:09:19.535Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:09:19.535Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:09:19.535Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:09:19.535Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:09:19.535Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:09:19.535Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:09:19.535Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:09:19.535Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:09:19.535Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:09:19.535Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T00:09:19.535Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:09:19.535Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:09:19.535Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:09:19.535Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:09:19.535Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:09:19.535Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:09:19.536Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:09:19.536Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:09:19.536Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:09:19.536Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:09:19.536Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T00:09:19.536Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T00:09:19.536Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T00:09:19.536Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:09:19.536Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:09:19.536Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:09:19.536Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:09:19.536Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:09:20.893Z [main] info: []
2018-11-14T00:09:30.554Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T00:09:30.555Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:09:30.555Z [main] silly: Executing: tsc --outDir "/tmp/packager-8ec07a90-e7a1-11e8-a449-ef719d7579ee/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T00:09:31.484Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:09:32.019Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T00:09:32.019Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T00:09:32.019Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T00:09:32.019Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:09:32.019Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:09:32.019Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:09:32.019Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T00:09:32.019Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T00:09:32.019Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T00:09:32.019Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:09:32.019Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:09:32.019Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:09:32.019Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:09:32.019Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:09:32.019Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:09:32.019Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:09:32.019Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:09:32.019Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:09:32.019Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:09:32.019Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:09:32.019Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:09:32.019Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:09:32.019Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:09:32.020Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:09:32.020Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:09:32.020Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:09:32.020Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:09:32.020Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:09:32.020Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:09:32.020Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:09:32.020Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:09:32.020Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T00:09:32.020Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:09:32.020Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:09:32.020Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:09:32.020Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:09:32.020Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:09:32.020Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:09:32.020Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:09:32.020Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:09:32.020Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:09:32.020Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:09:32.020Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T00:09:32.020Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T00:09:32.020Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T00:09:32.020Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:09:32.020Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:09:32.020Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:09:32.020Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:09:32.020Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:09:33.395Z [main] info: []
2018-11-14T00:09:36.412Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T00:09:36.413Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:09:36.413Z [main] silly: Executing: tsc --outDir "/tmp/packager-923e56b0-e7a1-11e8-8c68-657f81616218/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T00:09:37.313Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:09:37.854Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T00:09:37.854Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T00:09:37.854Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T00:09:37.854Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:09:37.854Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:09:37.854Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:09:37.854Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T00:09:37.854Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T00:09:37.854Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T00:09:37.854Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:09:37.854Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:09:37.854Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:09:37.854Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:09:37.854Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:09:37.854Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:09:37.855Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:09:37.855Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:09:37.855Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:09:37.855Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:09:37.855Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:09:37.855Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:09:37.855Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:09:37.855Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:09:37.855Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:09:37.855Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:09:37.855Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:09:37.855Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:09:37.855Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:09:37.855Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:09:37.855Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:09:37.855Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:09:37.855Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T00:09:37.855Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:09:37.855Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:09:37.855Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:09:37.855Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:09:37.855Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:09:37.855Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:09:37.855Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:09:37.855Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:09:37.855Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:09:37.855Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:09:37.855Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T00:09:37.855Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T00:09:37.856Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T00:09:37.856Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:09:37.856Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:09:37.856Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:09:37.856Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:09:37.856Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:09:39.156Z [main] info: []
2018-11-14T00:09:44.602Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T00:09:44.603Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:09:44.603Z [main] silly: Executing: tsc --outDir "/tmp/packager-971fe180-e7a1-11e8-bce7-974092c3d854/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T00:09:45.510Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:09:46.056Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T00:09:46.057Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T00:09:46.057Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T00:09:46.057Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:09:46.057Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:09:46.057Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:09:46.057Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T00:09:46.057Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T00:09:46.057Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T00:09:46.057Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:09:46.057Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:09:46.057Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:09:46.057Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:09:46.057Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:09:46.057Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:09:46.057Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:09:46.057Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:09:46.057Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:09:46.057Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:09:46.057Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:09:46.057Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:09:46.057Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:09:46.057Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:09:46.057Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:09:46.057Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:09:46.057Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:09:46.057Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:09:46.058Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:09:46.058Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:09:46.058Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:09:46.058Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:09:46.058Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T00:09:46.058Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:09:46.058Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:09:46.058Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:09:46.058Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:09:46.058Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:09:46.058Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:09:46.058Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:09:46.058Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:09:46.058Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:09:46.058Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:09:46.058Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T00:09:46.058Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T00:09:46.058Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T00:09:46.058Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:09:46.058Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:09:46.058Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:09:46.058Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:09:46.058Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:09:47.593Z [main] info: []
2018-11-14T00:11:14.617Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T00:11:14.618Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:11:14.618Z [main] silly: Executing: tsc --outDir "/tmp/packager-ccc73b80-e7a1-11e8-8c29-2b91db5c67b5/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T00:11:15.535Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:11:16.083Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T00:11:16.083Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T00:11:16.084Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T00:11:16.084Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:11:16.084Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:11:16.084Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:11:16.084Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T00:11:16.084Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T00:11:16.084Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T00:11:16.084Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:11:16.084Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:11:16.084Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:11:16.084Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:11:16.084Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:11:16.084Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:11:16.084Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:11:16.084Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:11:16.084Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:11:16.084Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:11:16.084Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:11:16.084Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:11:16.084Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:11:16.084Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:11:16.084Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:11:16.084Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:11:16.084Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:11:16.084Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:11:16.084Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:11:16.084Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:11:16.084Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:11:16.085Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:11:16.085Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T00:11:16.085Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:11:16.085Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:11:16.085Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:11:16.085Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:11:16.085Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:11:16.085Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:11:16.085Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:11:16.085Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:11:16.085Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:11:16.085Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:11:16.085Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T00:11:16.085Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T00:11:16.085Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T00:11:16.085Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:11:16.085Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:11:16.085Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:11:16.085Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:11:16.085Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:11:17.662Z [main] info: []
2018-11-14T00:11:43.798Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T00:11:43.799Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:11:43.799Z [main] silly: Executing: tsc --outDir "/tmp/packager-de2be650-e7a1-11e8-91f1-59dd36c48d88/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T00:11:44.704Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:11:45.287Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T00:11:45.288Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T00:11:45.288Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T00:11:45.288Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:11:45.288Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:11:45.288Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:11:45.288Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T00:11:45.288Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T00:11:45.288Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T00:11:45.288Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:11:45.288Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:11:45.288Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:11:45.288Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:11:45.288Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:11:45.288Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:11:45.288Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:11:45.288Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:11:45.288Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:11:45.288Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:11:45.288Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:11:45.288Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:11:45.288Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:11:45.288Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:11:45.288Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:11:45.288Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:11:45.288Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:11:45.288Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:11:45.289Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:11:45.289Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:11:45.289Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:11:45.289Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:11:45.289Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T00:11:45.289Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:11:45.289Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:11:45.289Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:11:45.289Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:11:45.289Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:11:45.289Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:11:45.289Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:11:45.289Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:11:45.289Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:11:45.289Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:11:45.289Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T00:11:45.289Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T00:11:45.289Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T00:11:45.289Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:11:45.289Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:11:45.289Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:11:45.289Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:11:45.289Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:11:46.697Z [main] info: [
[
"<17 seconds ago> ",
"2018-11-14T00:11:29.763Z 809e5d29-5035-407c-869f-9c8ed70fa631 Got 9 records. Produced 1"
],
[
"<17 seconds ago> ",
"2018-11-14T00:11:29.763Z 809e5d29-5035-407c-869f-9c8ed70fa631 First 10 summaries=",
"[",
" {",
" \"p10\": 9,",
" \"p50\": 13,",
" \"p90\": 25,",
" \"p99\": 36",
" }",
"]"
]
]
2018-11-14T00:12:01.774Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T00:12:01.775Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:12:01.775Z [main] silly: Executing: tsc --outDir "/tmp/packager-e8e2d1d0-e7a1-11e8-968a-95adece5f285/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T00:12:02.701Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:12:03.289Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T00:12:03.289Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T00:12:03.289Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T00:12:03.289Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:12:03.289Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:12:03.289Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:12:03.289Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T00:12:03.289Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T00:12:03.289Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T00:12:03.289Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:12:03.289Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:12:03.289Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:12:03.289Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:12:03.289Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:12:03.290Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:12:03.290Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:12:03.290Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:12:03.290Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:12:03.290Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:12:03.290Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:12:03.290Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:12:03.290Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:12:03.290Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:12:03.290Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:12:03.290Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:12:03.290Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:12:03.290Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:12:03.290Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:12:03.290Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:12:03.290Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:12:03.290Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:12:03.290Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T00:12:03.290Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:12:03.290Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:12:03.290Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:12:03.290Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:12:03.290Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:12:03.290Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:12:03.290Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:12:03.290Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:12:03.290Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:12:03.290Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:12:03.290Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T00:12:03.291Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T00:12:03.291Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T00:12:03.291Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:12:03.291Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:12:03.291Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:12:03.291Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:12:03.291Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:12:04.881Z [main] info: []
2018-11-14T00:12:29.758Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T00:12:29.759Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:12:29.760Z [main] silly: Executing: tsc --outDir "/tmp/packager-f990d6d0-e7a1-11e8-9ba4-251f98732470/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T00:12:30.668Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:12:31.209Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T00:12:31.210Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T00:12:31.210Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T00:12:31.210Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:12:31.210Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:12:31.210Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:12:31.210Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T00:12:31.210Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T00:12:31.210Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T00:12:31.210Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:12:31.210Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:12:31.210Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:12:31.210Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:12:31.210Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:12:31.210Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:12:31.210Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:12:31.210Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:12:31.210Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:12:31.210Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:12:31.210Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:12:31.210Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:12:31.210Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:12:31.210Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:12:31.210Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:12:31.210Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:12:31.211Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:12:31.211Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:12:31.211Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:12:31.211Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:12:31.211Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:12:31.211Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:12:31.211Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T00:12:31.211Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:12:31.211Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:12:31.211Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:12:31.211Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:12:31.211Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:12:31.211Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:12:31.211Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:12:31.211Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:12:31.211Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:12:31.211Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:12:31.211Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T00:12:31.211Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T00:12:31.211Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T00:12:31.211Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:12:31.211Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:12:31.211Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:12:31.211Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:12:31.211Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:12:32.731Z [main] info: []
2018-11-14T00:12:34.766Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T00:12:34.767Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:12:34.767Z [main] silly: Executing: tsc --outDir "/tmp/packager-fc8cffd0-e7a1-11e8-bced-3906e7892078/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T00:12:35.729Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:12:36.291Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T00:12:36.292Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T00:12:36.292Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T00:12:36.292Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:12:36.292Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:12:36.292Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:12:36.292Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T00:12:36.292Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T00:12:36.292Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T00:12:36.292Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:12:36.292Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:12:36.292Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:12:36.292Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:12:36.292Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:12:36.292Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:12:36.292Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:12:36.292Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:12:36.292Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:12:36.292Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:12:36.292Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:12:36.292Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:12:36.292Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:12:36.292Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:12:36.292Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:12:36.293Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:12:36.293Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:12:36.293Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:12:36.293Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:12:36.293Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:12:36.293Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:12:36.293Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:12:36.293Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T00:12:36.293Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:12:36.293Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:12:36.293Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:12:36.293Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:12:36.293Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:12:36.293Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:12:36.293Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:12:36.293Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:12:36.293Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:12:36.293Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:12:36.293Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T00:12:36.293Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T00:12:36.293Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T00:12:36.293Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:12:36.293Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:12:36.293Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:12:36.293Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:12:36.293Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:12:37.669Z [main] info: []
2018-11-14T00:12:41.699Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T00:12:41.700Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:12:41.700Z [main] silly: Executing: tsc --outDir "/tmp/packager-00aee420-e7a2-11e8-a089-7940e6edb646/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T00:12:42.606Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:12:43.274Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T00:12:43.274Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T00:12:43.274Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T00:12:43.274Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:12:43.274Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:12:43.274Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:12:43.274Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T00:12:43.274Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T00:12:43.274Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T00:12:43.274Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:12:43.274Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:12:43.274Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:12:43.274Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:12:43.274Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:12:43.274Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:12:43.274Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:12:43.274Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:12:43.274Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:12:43.274Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:12:43.274Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:12:43.275Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:12:43.275Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:12:43.275Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:12:43.275Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:12:43.275Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:12:43.275Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:12:43.275Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:12:43.275Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:12:43.275Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:12:43.275Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:12:43.275Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:12:43.275Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T00:12:43.275Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:12:43.275Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:12:43.275Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:12:43.275Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:12:43.275Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:12:43.275Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:12:43.275Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:12:43.275Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:12:43.275Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:12:43.275Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:12:43.275Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T00:12:43.275Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T00:12:43.275Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T00:12:43.275Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:12:43.275Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:12:43.275Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:12:43.275Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:12:43.276Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:12:45.073Z [main] info: []
2018-11-14T00:12:48.000Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T00:12:48.001Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:12:48.001Z [main] silly: Executing: tsc --outDir "/tmp/packager-047058f0-e7a2-11e8-a8e7-fb2af923fa08/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T00:12:48.909Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:12:49.450Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T00:12:49.450Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T00:12:49.450Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T00:12:49.450Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:12:49.450Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:12:49.450Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:12:49.450Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T00:12:49.450Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T00:12:49.450Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T00:12:49.450Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:12:49.450Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:12:49.450Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:12:49.450Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:12:49.451Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:12:49.451Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:12:49.451Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:12:49.451Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:12:49.451Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:12:49.451Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:12:49.451Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:12:49.451Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:12:49.451Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:12:49.451Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:12:49.451Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:12:49.451Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:12:49.451Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:12:49.451Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:12:49.451Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:12:49.451Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:12:49.451Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:12:49.451Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:12:49.451Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T00:12:49.451Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:12:49.451Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:12:49.451Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:12:49.451Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:12:49.451Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:12:49.451Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:12:49.451Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:12:49.451Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:12:49.451Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:12:49.451Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:12:49.451Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T00:12:49.452Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T00:12:49.452Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T00:12:49.452Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:12:49.452Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:12:49.452Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:12:49.452Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:12:49.452Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:12:51.076Z [main] info: []
2018-11-14T00:13:16.996Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T00:13:16.997Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:13:16.997Z [main] silly: Executing: tsc --outDir "/tmp/packager-15b8c930-e7a2-11e8-a206-9b4aa364382c/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T00:13:17.918Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T00:13:18.501Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T00:13:18.501Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T00:13:18.501Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T00:13:18.501Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:13:18.501Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:13:18.501Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:13:18.501Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T00:13:18.501Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T00:13:18.501Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T00:13:18.501Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:13:18.501Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T00:13:18.501Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:13:18.501Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:13:18.501Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:13:18.501Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:13:18.501Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:13:18.501Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:13:18.501Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:13:18.501Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:13:18.501Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:13:18.501Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T00:13:18.501Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T00:13:18.502Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:13:18.502Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T00:13:18.502Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:13:18.502Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T00:13:18.502Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T00:13:18.502Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T00:13:18.502Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T00:13:18.502Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:13:18.502Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T00:13:18.502Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T00:13:18.502Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T00:13:18.502Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:13:18.502Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:13:18.502Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:13:18.502Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:13:18.502Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:13:18.502Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:13:18.502Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:13:18.502Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:13:18.502Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:13:18.502Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T00:13:18.502Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T00:13:18.502Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T00:13:18.502Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T00:13:18.502Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T00:13:18.502Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T00:13:18.502Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T00:13:18.502Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T00:13:19.962Z [main] info: []
2018-11-14T04:49:39.963Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T04:49:39.964Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T04:49:39.964Z [main] silly: Executing: tsc --outDir "/tmp/packager-b1f0bda0-e7c8-11e8-b876-990f19672e4d/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T04:49:40.924Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T04:49:41.502Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T04:49:41.502Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T04:49:41.502Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T04:49:41.502Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T04:49:41.502Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T04:49:41.502Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T04:49:41.503Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T04:49:41.503Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T04:49:41.503Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T04:49:41.503Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T04:49:41.503Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T04:49:41.503Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T04:49:41.503Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T04:49:41.503Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T04:49:41.503Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T04:49:41.503Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T04:49:41.503Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T04:49:41.503Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T04:49:41.503Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T04:49:41.503Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T04:49:41.503Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T04:49:41.503Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T04:49:41.503Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T04:49:41.503Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T04:49:41.503Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T04:49:41.503Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T04:49:41.503Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T04:49:41.503Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T04:49:41.503Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T04:49:41.503Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T04:49:41.503Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T04:49:41.503Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T04:49:41.503Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T04:49:41.503Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T04:49:41.503Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T04:49:41.504Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T04:49:41.504Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T04:49:41.504Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T04:49:41.504Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T04:49:41.504Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T04:49:41.504Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T04:49:41.504Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T04:49:41.504Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T04:49:41.504Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T04:49:41.504Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T04:49:41.504Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T04:49:41.504Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T04:49:41.504Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T04:49:41.504Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T04:49:41.504Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T04:49:42.184Z [main] info: Shipping rig prod-major to eu-central-1
2018-11-14T04:49:42.184Z [main] silly: Packing src/store/compute into build
2018-11-14T04:49:42.184Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-14T04:49:42.184Z [main] silly: Executing: tsc --outDir "/tmp/packager-b343ca80-e7c8-11e8-b876-990f19672e4d/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/store/compute"
2018-11-14T04:49:45.507Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-14T04:49:46.108Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T04:49:46.108Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T04:49:46.108Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T04:49:46.108Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T04:49:46.178Z [main] info: Pushing code: store
2018-11-14T04:49:46.232Z [main] silly: Packing src/support/errorSink into build
2018-11-14T04:49:46.232Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-14T04:49:46.232Z [main] silly: Executing: tsc --outDir "/tmp/packager-b5ad7780-e7c8-11e8-b876-990f19672e4d/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink"
2018-11-14T04:49:47.113Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-14T04:49:47.645Z [main] info: Pushing code: errorSink
2018-11-14T04:49:47.645Z [main] silly: Packing src/support/trafficStatsSink into build
2018-11-14T04:49:47.646Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-14T04:49:47.646Z [main] silly: Executing: tsc --outDir "/tmp/packager-b68512d0-e7c8-11e8-b876-990f19672e4d/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink"
2018-11-14T04:49:51.028Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-14T04:49:51.584Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T04:49:51.585Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T04:49:51.585Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T04:49:51.652Z [main] info: Pushing code: trafficStatsSink
2018-11-14T04:49:51.715Z [main] silly: Packing src/support/percentileCalculator into build
2018-11-14T04:49:51.716Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator
2018-11-14T04:49:51.716Z [main] silly: Executing: tsc --outDir "/tmp/packager-b8f21b30-e7c8-11e8-b876-990f19672e4d/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator"
2018-11-14T04:49:52.592Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator
2018-11-14T04:49:53.133Z [main] info: Pushing code: percentileCalculator
2018-11-14T04:50:21.098Z [main] silly: Fingerprint comparsion:
a9b340ea2800829a4110edecceb65d48f92813a7401110cd0bb0a39ed9a09581
a9b340ea2800829a4110edecceb65d48f92813a7401110cd0bb0a39ed9a09581
2018-11-14T04:50:21.099Z [main] info: No stack changes
2018-11-14T04:50:22.041Z [main] info: Rig prod-major shipped.
2018-11-14T04:53:08.814Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T04:53:08.815Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T04:53:08.815Z [main] silly: Executing: tsc --outDir "/tmp/packager-2e6cdfd0-e7c9-11e8-bcd6-8f5cb70ea0fc/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T04:53:09.699Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T04:53:10.316Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T04:53:10.316Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T04:53:10.316Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T04:53:10.316Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T04:53:10.317Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T04:53:10.317Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T04:53:10.317Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T04:53:10.317Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T04:53:10.317Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T04:53:10.317Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T04:53:10.317Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T04:53:10.317Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T04:53:10.317Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T04:53:10.317Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T04:53:10.317Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T04:53:10.317Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T04:53:10.317Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T04:53:10.317Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T04:53:10.317Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T04:53:10.317Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T04:53:10.317Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T04:53:10.317Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T04:53:10.317Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T04:53:10.317Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T04:53:10.317Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T04:53:10.317Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T04:53:10.317Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T04:53:10.317Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T04:53:10.317Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T04:53:10.317Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T04:53:10.317Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T04:53:10.317Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T04:53:10.318Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T04:53:10.318Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T04:53:10.318Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T04:53:10.318Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T04:53:10.318Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T04:53:10.318Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T04:53:10.318Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T04:53:10.318Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T04:53:10.318Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T04:53:10.318Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T04:53:10.318Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T04:53:10.318Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T04:53:10.318Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T04:53:10.318Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T04:53:10.318Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T04:53:10.318Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T04:53:10.318Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T04:53:10.318Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T04:53:10.991Z [main] info: {
"mm": {
"prod-major": {
"mm-prod-major-ingestion-store": "lambda",
"mm-prod-major-ingestion-errorSink": "lambda",
"mm-prod-major-ingestion-trafficStatsSink": "lambda",
"mm-prod-major-support-percentileCalculator": "lambda",
"mm-prod-major-storage-TrafficStatsStream": "kinesis",
"mm-prod-major-storage-trafficStats": "dynamodb",
"mm-prod-major-storage-topN": "dynamodb"
}
}
}
2018-11-14T07:54:46.870Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T07:54:46.870Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T07:54:46.871Z [main] silly: Executing: tsc --outDir "/tmp/packager-8e2c1940-e7e2-11e8-82bf-bd78a2d808b7/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T07:54:47.757Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T07:54:48.329Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T07:54:48.329Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T07:54:48.329Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T07:54:48.329Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T07:54:48.329Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T07:54:48.329Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T07:54:48.329Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T07:54:48.329Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T07:54:48.329Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T07:54:48.329Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T07:54:48.330Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T07:54:48.330Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T07:54:48.330Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T07:54:48.330Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T07:54:48.330Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T07:54:48.330Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T07:54:48.330Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T07:54:48.330Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T07:54:48.330Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T07:54:48.330Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T07:54:48.330Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T07:54:48.330Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T07:54:48.330Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T07:54:48.330Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T07:54:48.330Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T07:54:48.330Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T07:54:48.330Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T07:54:48.330Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T07:54:48.330Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T07:54:48.330Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T07:54:48.330Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T07:54:48.330Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T07:54:48.330Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T07:54:48.330Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T07:54:48.330Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T07:54:48.330Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T07:54:48.330Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T07:54:48.330Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T07:54:48.330Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T07:54:48.331Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T07:54:48.331Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T07:54:48.331Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T07:54:48.331Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T07:54:48.331Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T07:54:48.331Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T07:54:48.331Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T07:54:48.331Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T07:54:48.331Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T07:54:48.331Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T07:54:48.331Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T07:54:49.023Z [main] info: Shipping rig prod-major to eu-central-1
2018-11-14T07:54:49.024Z [main] silly: Packing src/store/compute into build
2018-11-14T07:54:49.024Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-14T07:54:49.024Z [main] silly: Executing: tsc --outDir "/tmp/packager-8f751400-e7e2-11e8-82bf-bd78a2d808b7/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/store/compute"
2018-11-14T07:54:52.484Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-14T07:54:53.075Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T07:54:53.075Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T07:54:53.075Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T07:54:53.075Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T07:54:53.141Z [main] info: Pushing code: store
2018-11-14T07:54:53.164Z [main] silly: Packing src/support/errorSink into build
2018-11-14T07:54:53.164Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-14T07:54:53.164Z [main] silly: Executing: tsc --outDir "/tmp/packager-91eccac0-e7e2-11e8-82bf-bd78a2d808b7/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink"
2018-11-14T07:54:54.068Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-14T07:54:54.611Z [main] info: Pushing code: errorSink
2018-11-14T07:54:54.611Z [main] silly: Packing src/support/trafficStatsSink into build
2018-11-14T07:54:54.611Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-14T07:54:54.611Z [main] silly: Executing: tsc --outDir "/tmp/packager-92c99630-e7e2-11e8-82bf-bd78a2d808b7/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink"
2018-11-14T07:54:57.925Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-14T07:54:58.494Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T07:54:58.494Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T07:54:58.494Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T07:54:58.587Z [main] info: Pushing code: trafficStatsSink
2018-11-14T07:54:58.634Z [main] silly: Packing src/support/percentileCalculator into build
2018-11-14T07:54:58.634Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator
2018-11-14T07:54:58.634Z [main] silly: Executing: tsc --outDir "/tmp/packager-952f72a0-e7e2-11e8-82bf-bd78a2d808b7/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator"
2018-11-14T07:55:01.917Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator
2018-11-14T07:55:02.462Z [main] info: Pushing code: percentileCalculator
2018-11-14T07:58:48.602Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T07:58:48.604Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T07:58:48.604Z [main] silly: Executing: tsc --outDir "/tmp/packager-1e41a090-e7e3-11e8-b139-d3e6405410c9/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T07:58:49.505Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T07:58:50.072Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T07:58:50.072Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T07:58:50.072Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T07:58:50.072Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T07:58:50.072Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T07:58:50.072Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T07:58:50.072Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T07:58:50.072Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T07:58:50.072Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T07:58:50.072Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T07:58:50.072Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T07:58:50.072Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T07:58:50.072Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T07:58:50.072Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T07:58:50.072Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T07:58:50.072Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T07:58:50.072Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T07:58:50.072Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T07:58:50.072Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T07:58:50.072Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T07:58:50.072Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T07:58:50.072Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T07:58:50.073Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T07:58:50.073Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T07:58:50.073Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T07:58:50.073Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T07:58:50.073Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T07:58:50.073Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T07:58:50.073Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T07:58:50.073Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T07:58:50.073Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T07:58:50.073Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T07:58:50.073Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T07:58:50.073Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T07:58:50.073Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T07:58:50.073Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T07:58:50.073Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T07:58:50.073Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T07:58:50.073Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T07:58:50.073Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T07:58:50.073Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T07:58:50.073Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T07:58:50.073Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T07:58:50.073Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T07:58:50.073Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T07:58:50.073Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T07:58:50.073Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T07:58:50.073Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T07:58:50.073Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T07:58:50.073Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T07:58:50.773Z [main] info: Shipping rig prod-major to eu-central-1
2018-11-14T07:58:50.774Z [main] silly: Packing src/store/compute into build
2018-11-14T07:58:50.774Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-14T07:58:50.774Z [main] silly: Executing: tsc --outDir "/tmp/packager-1f8d3360-e7e3-11e8-b139-d3e6405410c9/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/store/compute"
2018-11-14T07:58:54.662Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-14T07:58:55.337Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T07:58:55.337Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T07:58:55.337Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T07:58:55.337Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T07:58:55.418Z [main] info: Pushing code: store
2018-11-14T07:58:55.504Z [main] silly: Packing src/support/errorSink into build
2018-11-14T07:58:55.505Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-14T07:58:55.505Z [main] silly: Executing: tsc --outDir "/tmp/packager-225ef100-e7e3-11e8-b139-d3e6405410c9/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink"
2018-11-14T07:58:56.742Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-14T07:58:57.374Z [main] info: Pushing code: errorSink
2018-11-14T07:58:57.375Z [main] silly: Packing src/support/trafficStatsSink into build
2018-11-14T07:58:57.375Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-14T07:58:57.375Z [main] silly: Executing: tsc --outDir "/tmp/packager-237c6ef0-e7e3-11e8-b139-d3e6405410c9/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink"
2018-11-14T07:59:01.574Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-14T07:59:02.262Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T07:59:02.262Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T07:59:02.262Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T07:59:02.366Z [main] info: Pushing code: trafficStatsSink
2018-11-14T07:59:02.435Z [main] silly: Packing src/support/percentileCalculator into build
2018-11-14T07:59:02.436Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator
2018-11-14T07:59:02.436Z [main] silly: Executing: tsc --outDir "/tmp/packager-26808730-e7e3-11e8-b139-d3e6405410c9/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator"
2018-11-14T07:59:06.137Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator
2018-11-14T07:59:06.726Z [main] info: Pushing code: percentileCalculator
2018-11-14T08:00:58.199Z [main] silly: Fingerprint comparsion:
37fd856549717004c47071d7734dcb160bf39b3ac7331e0bdfe60702f0fdb93e
a9b340ea2800829a4110edecceb65d48f92813a7401110cd0bb0a39ed9a09581
2018-11-14T08:00:58.199Z [main] silly: StackSpec: {
"AWSTemplateFormatVersion": "2010-09-09",
"Transform": "AWS::Serverless-2016-10-31",
"Description": "description goes here",
"Resources": {
"ingestionStore": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"dynamodb:*"
],
"Resource": "arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-topN"
}
]
},
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"lambda:InvokeFunction"
],
"Resource": "arn:aws:lambda:eu-central-1:274788167589:function:mm-prod-major-ingestion-errorSink"
}
]
},
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"lambda:InvokeFunction"
],
"Resource": "arn:aws:lambda:eu-central-1:274788167589:function:mm-prod-major-ingestion-trafficStatsSink"
}
]
}
],
"Handler": "ingestion-store_Handler.handle",
"Description": "Ingest data into the metric machine",
"MemorySize": 1024,
"Timeout": 30,
"FunctionName": "mm-prod-major-ingestion-store",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-store.zip"
}
},
"ingestionErrorSink": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [],
"Handler": "ingestion-errorSink_Handler.handle",
"Description": "Track error reports",
"MemorySize": 1024,
"Timeout": 5,
"ReservedConcurrentExecutions": 1,
"FunctionName": "mm-prod-major-ingestion-errorSink",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-errorSink.zip"
}
},
"ingestionTrafficStatsSink": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"dynamodb:*"
],
"Resource": "arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-trafficStats"
}
]
},
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"kinesis:*"
],
"Resource": "arn:aws:kinesis:eu-central-1:274788167589:stream/mm-prod-major-storage-TrafficStatsStream"
}
]
}
],
"Handler": "ingestion-trafficStatsSink_Handler.handle",
"Description": "Record various stats about RPC calls",
"MemorySize": 1024,
"Timeout": 5,
"FunctionName": "mm-prod-major-ingestion-trafficStatsSink",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-trafficStatsSink.zip"
}
},
"supportPercentileCalculator": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"dynamodb:*"
],
"Resource": "arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-datapointsTable"
}
]
}
],
"Handler": "support-percentileCalculator_Handler.handle",
"Events": {
"Stream": {
"Type": "Kinesis",
"Properties": {
"Stream": {
"Fn::GetAtt": [
"storageTrafficStatsStream",
"Arn"
]
},
"BatchSize": 5000,
"StartingPosition": "LATEST"
}
}
},
"MemorySize": 3008,
"Timeout": 15,
"ReservedConcurrentExecutions": 1,
"FunctionName": "mm-prod-major-support-percentileCalculator",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-support-percentileCalculator.zip"
}
},
"storageTrafficStatsStream": {
"Type": "AWS::Kinesis::Stream",
"Properties": {
"RetentionPeriodHours": 24,
"ShardCount": 2,
"Name": "mm-prod-major-storage-TrafficStatsStream"
}
},
"storageTrafficStats": {
"Type": "AWS::DynamoDB::Table",
"Properties": {
"AttributeDefinitions": [
{
"AttributeName": "metricName",
"AttributeType": "S"
},
{
"AttributeName": "slot",
"AttributeType": "N"
}
],
"KeySchema": [
{
"AttributeName": "metricName",
"KeyType": "HASH"
},
{
"AttributeName": "slot",
"KeyType": "RANGE"
}
],
"ProvisionedThroughput": {
"ReadCapacityUnits": 20,
"WriteCapacityUnits": 50
},
"TableName": "mm-prod-major-storage-trafficStats"
}
},
"storageTopN": {
"Type": "AWS::DynamoDB::Table",
"Properties": {
"AttributeDefinitions": [
{
"AttributeName": "id",
"AttributeType": "S"
},
{
"AttributeName": "slot",
"AttributeType": "N"
}
],
"KeySchema": [
{
"AttributeName": "id",
"KeyType": "HASH"
},
{
"AttributeName": "slot",
"KeyType": "RANGE"
}
],
"ProvisionedThroughput": {
"ReadCapacityUnits": 6,
"WriteCapacityUnits": 200
},
"TableName": "mm-prod-major-storage-topN"
}
}
}
}
2018-11-14T08:00:58.200Z [main] silly: createChangeSetReq=
{
"StackName": "mm-prod-major",
"ChangeSetName": "cs-6b80b670-e7e3-11e8-b139-d3e6405410c9",
"ChangeSetType": "UPDATE",
"Capabilities": [
"CAPABILITY_IAM"
],
"TemplateBody": "{\"AWSTemplateFormatVersion\":\"2010-09-09\",\"Transform\":\"AWS::Serverless-2016-10-31\",\"Description\":\"description goes here\",\"Resources\":{\"ingestionStore\":{\"Type\":\"AWS::Serverless::Function\",\"Properties\":{\"Runtime\":\"nodejs8.10\",\"Policies\":[{\"Version\":\"2012-10-17\",\"Statement\":[{\"Effect\":\"Allow\",\"Action\":[\"dynamodb:*\"],\"Resource\":\"arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-topN\"}]},{\"Version\":\"2012-10-17\",\"Statement\":[{\"Effect\":\"Allow\",\"Action\":[\"lambda:InvokeFunction\"],\"Resource\":\"arn:aws:lambda:eu-central-1:274788167589:function:mm-prod-major-ingestion-errorSink\"}]},{\"Version\":\"2012-10-17\",\"Statement\":[{\"Effect\":\"Allow\",\"Action\":[\"lambda:InvokeFunction\"],\"Resource\":\"arn:aws:lambda:eu-central-1:274788167589:function:mm-prod-major-ingestion-trafficStatsSink\"}]}],\"Handler\":\"ingestion-store_Handler.handle\",\"Description\":\"Ingest data into the metric machine\",\"MemorySize\":1024,\"Timeout\":30,\"FunctionName\":\"mm-prod-major-ingestion-store\",\"CodeUri\":\"s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-store.zip\"}},\"ingestionErrorSink\":{\"Type\":\"AWS::Serverless::Function\",\"Properties\":{\"Runtime\":\"nodejs8.10\",\"Policies\":[],\"Handler\":\"ingestion-errorSink_Handler.handle\",\"Description\":\"Track error reports\",\"MemorySize\":1024,\"Timeout\":5,\"ReservedConcurrentExecutions\":1,\"FunctionName\":\"mm-prod-major-ingestion-errorSink\",\"CodeUri\":\"s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-errorSink.zip\"}},\"ingestionTrafficStatsSink\":{\"Type\":\"AWS::Serverless::Function\",\"Properties\":{\"Runtime\":\"nodejs8.10\",\"Policies\":[{\"Version\":\"2012-10-17\",\"Statement\":[{\"Effect\":\"Allow\",\"Action\":[\"dynamodb:*\"],\"Resource\":\"arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-trafficStats\"}]},{\"Version\":\"2012-10-17\",\"Statement\":[{\"Effect\":\"Allow\",\"Action\":[\"kinesis:*\"],\"Resource\":\"arn:aws:kinesis:eu-central-1:274788167589:stream/mm-prod-major-storage-TrafficStatsStream\"}]}],\"Handler\":\"ingestion-trafficStatsSink_Handler.handle\",\"Description\":\"Record various stats about RPC calls\",\"MemorySize\":1024,\"Timeout\":5,\"FunctionName\":\"mm-prod-major-ingestion-trafficStatsSink\",\"CodeUri\":\"s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-trafficStatsSink.zip\"}},\"supportPercentileCalculator\":{\"Type\":\"AWS::Serverless::Function\",\"Properties\":{\"Runtime\":\"nodejs8.10\",\"Policies\":[{\"Version\":\"2012-10-17\",\"Statement\":[{\"Effect\":\"Allow\",\"Action\":[\"dynamodb:*\"],\"Resource\":\"arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-datapointsTable\"}]}],\"Handler\":\"support-percentileCalculator_Handler.handle\",\"Events\":{\"Stream\":{\"Type\":\"Kinesis\",\"Properties\":{\"Stream\":{\"Fn::GetAtt\":[\"storageTrafficStatsStream\",\"Arn\"]},\"BatchSize\":5000,\"StartingPosition\":\"LATEST\"}}},\"MemorySize\":3008,\"Timeout\":15,\"ReservedConcurrentExecutions\":1,\"FunctionName\":\"mm-prod-major-support-percentileCalculator\",\"CodeUri\":\"s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-support-percentileCalculator.zip\"}},\"storageTrafficStatsStream\":{\"Type\":\"AWS::Kinesis::Stream\",\"Properties\":{\"RetentionPeriodHours\":24,\"ShardCount\":2,\"Name\":\"mm-prod-major-storage-TrafficStatsStream\"}},\"storageTrafficStats\":{\"Type\":\"AWS::DynamoDB::Table\",\"Properties\":{\"AttributeDefinitions\":[{\"AttributeName\":\"metricName\",\"AttributeType\":\"S\"},{\"AttributeName\":\"slot\",\"AttributeType\":\"N\"}],\"KeySchema\":[{\"AttributeName\":\"metricName\",\"KeyType\":\"HASH\"},{\"AttributeName\":\"slot\",\"KeyType\":\"RANGE\"}],\"ProvisionedThroughput\":{\"ReadCapacityUnits\":20,\"WriteCapacityUnits\":50},\"TableName\":\"mm-prod-major-storage-trafficStats\"}},\"storageTopN\":{\"Type\":\"AWS::DynamoDB::Table\",\"Properties\":{\"AttributeDefinitions\":[{\"AttributeName\":\"id\",\"AttributeType\":\"S\"},{\"AttributeName\":\"slot\",\"AttributeType\":\"N\"}],\"KeySchema\":[{\"AttributeName\":\"id\",\"KeyType\":\"HASH\"},{\"AttributeName\":\"slot\",\"KeyType\":\"RANGE\"}],\"ProvisionedThroughput\":{\"ReadCapacityUnits\":6,\"WriteCapacityUnits\":200},\"TableName\":\"mm-prod-major-storage-topN\"}}}}",
"Tags": [
{
"Key": "bigband_fingerprint",
"Value": "37fd856549717004c47071d7734dcb160bf39b3ac7331e0bdfe60702f0fdb93e"
}
]
}
2018-11-14T08:01:08.307Z [main] info: Creating change set
2018-11-14T08:01:08.309Z [main] info: .
2018-11-14T08:01:17.024Z [main] silly: ChangeSet description=
{
"ResponseMetadata": {
"RequestId": "749abb1c-e7e3-11e8-af6e-5d4d22886f02"
},
"ChangeSetName": "cs-6b80b670-e7e3-11e8-b139-d3e6405410c9",
"ChangeSetId": "arn:aws:cloudformation:eu-central-1:274788167589:changeSet/cs-6b80b670-e7e3-11e8-b139-d3e6405410c9/bc9d99b7-7a36-42ca-9519-e52438bc9b99",
"StackId": "arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e",
"StackName": "mm-prod-major",
"Parameters": [],
"CreationTime": "2018-11-14T08:01:07.720Z",
"ExecutionStatus": "AVAILABLE",
"Status": "CREATE_COMPLETE",
"NotificationARNs": [],
"RollbackConfiguration": {},
"Capabilities": [
"CAPABILITY_IAM"
],
"Tags": [
{
"Key": "bigband_fingerprint",
"Value": "37fd856549717004c47071d7734dcb160bf39b3ac7331e0bdfe60702f0fdb93e"
}
],
"Changes": [
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "ingestionErrorSink",
"PhysicalResourceId": "mm-prod-major-ingestion-errorSink",
"ResourceType": "AWS::Lambda::Function",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "ingestionStore",
"PhysicalResourceId": "mm-prod-major-ingestion-store",
"ResourceType": "AWS::Lambda::Function",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "ingestionTrafficStatsSink",
"PhysicalResourceId": "mm-prod-major-ingestion-trafficStatsSink",
"ResourceType": "AWS::Lambda::Function",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "storageTopN",
"PhysicalResourceId": "mm-prod-major-storage-topN",
"ResourceType": "AWS::DynamoDB::Table",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "storageTrafficStats",
"PhysicalResourceId": "mm-prod-major-storage-trafficStats",
"ResourceType": "AWS::DynamoDB::Table",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "storageTrafficStatsStream",
"PhysicalResourceId": "mm-prod-major-storage-TrafficStatsStream",
"ResourceType": "AWS::Kinesis::Stream",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "supportPercentileCalculator",
"PhysicalResourceId": "mm-prod-major-support-percentileCalculator",
"ResourceType": "AWS::Lambda::Function",
"Replacement": "False",
"Scope": [
"Properties",
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Properties",
"Name": "Role",
"RequiresRecreation": "Never"
},
"Evaluation": "Dynamic",
"ChangeSource": "ResourceAttribute",
"CausingEntity": "supportPercentileCalculatorRole.Arn"
},
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "supportPercentileCalculatorRole",
"PhysicalResourceId": "mm-prod-major-supportPercentileCalculatorRole-5H8JVRW4R9XL",
"ResourceType": "AWS::IAM::Role",
"Replacement": "False",
"Scope": [
"Properties"
],
"Details": [
{
"Target": {
"Attribute": "Properties",
"Name": "Policies",
"RequiresRecreation": "Never"
},
"Evaluation": "Static",
"ChangeSource": "DirectModification"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "supportPercentileCalculatorStream",
"PhysicalResourceId": "29f4408f-d0a1-452a-b2bf-c04d0f4c39ba",
"ResourceType": "AWS::Lambda::EventSourceMapping",
"Replacement": "Conditional",
"Scope": [
"Properties"
],
"Details": [
{
"Target": {
"Attribute": "Properties",
"Name": "EventSourceArn",
"RequiresRecreation": "Always"
},
"Evaluation": "Dynamic",
"ChangeSource": "ResourceAttribute",
"CausingEntity": "storageTrafficStatsStream.Arn"
}
]
}
}
]
}
2018-11-14T08:01:17.024Z [main] info: Enacting Change set
2018-11-14T08:01:22.575Z [main] silly: Waiting for stack (arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e) to be updated
2018-11-14T08:01:22.576Z [main] info: .
2018-11-14T08:01:35.267Z [main] info: ..
2018-11-14T08:01:59.463Z [main] info: ...
2018-11-14T08:02:04.937Z [main] info: Stack status: UPDATE_COMPLETE
2018-11-14T08:02:04.938Z [main] silly: stack ID: arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e
2018-11-14T08:02:13.461Z [main] info: Rig prod-major shipped.
2018-11-14T08:03:25.273Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T08:03:25.273Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T08:03:25.274Z [main] silly: Executing: tsc --outDir "/tmp/packager-c32a1e70-e7e3-11e8-903a-095565feb07a/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T08:03:26.172Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T08:03:26.754Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T08:03:26.755Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T08:03:26.755Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T08:03:26.755Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:03:26.755Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:03:26.755Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:03:26.755Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T08:03:26.755Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T08:03:26.755Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T08:03:26.755Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T08:03:26.755Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T08:03:26.755Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T08:03:26.755Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T08:03:26.755Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:03:26.755Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:03:26.755Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:03:26.755Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T08:03:26.755Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T08:03:26.755Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T08:03:26.755Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:03:26.755Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T08:03:26.755Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T08:03:26.755Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:03:26.755Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:03:26.755Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:03:26.755Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T08:03:26.756Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T08:03:26.756Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T08:03:26.756Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:03:26.756Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T08:03:26.756Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:03:26.756Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T08:03:26.756Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T08:03:26.756Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:03:26.756Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:03:26.756Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T08:03:26.756Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T08:03:26.756Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T08:03:26.756Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:03:26.756Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:03:26.756Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:03:26.756Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:03:26.756Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T08:03:26.756Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T08:03:26.756Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T08:03:26.756Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T08:03:26.756Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T08:03:26.756Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T08:03:26.756Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:03:26.756Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:03:27.447Z [main] info: Shipping rig prod-major to eu-central-1
2018-11-14T08:03:27.447Z [main] silly: Packing src/store/compute into build
2018-11-14T08:03:27.447Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-14T08:03:27.447Z [main] silly: Executing: tsc --outDir "/tmp/packager-c4762670-e7e3-11e8-903a-095565feb07a/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/store/compute"
2018-11-14T08:03:30.818Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-14T08:03:31.460Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T08:03:31.461Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T08:03:31.461Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T08:03:31.461Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T08:03:31.524Z [main] info: Pushing code: store
2018-11-14T08:03:31.575Z [main] silly: Packing src/support/errorSink into build
2018-11-14T08:03:31.576Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-14T08:03:31.576Z [main] silly: Executing: tsc --outDir "/tmp/packager-c6ec0870-e7e3-11e8-903a-095565feb07a/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink"
2018-11-14T08:03:32.499Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-14T08:03:33.065Z [main] info: Pushing code: errorSink
2018-11-14T08:03:33.065Z [main] silly: Packing src/support/trafficStatsSink into build
2018-11-14T08:03:33.065Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-14T08:03:33.066Z [main] silly: Executing: tsc --outDir "/tmp/packager-c7cf6390-e7e3-11e8-903a-095565feb07a/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink"
2018-11-14T08:03:36.432Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-14T08:03:36.970Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T08:03:36.970Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T08:03:36.971Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T08:03:37.039Z [main] info: Pushing code: trafficStatsSink
2018-11-14T08:03:37.106Z [main] silly: Packing src/support/percentileCalculator into build
2018-11-14T08:03:37.106Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator
2018-11-14T08:03:37.106Z [main] silly: Executing: tsc --outDir "/tmp/packager-ca37ff20-e7e3-11e8-903a-095565feb07a/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator"
2018-11-14T08:03:40.460Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator
2018-11-14T08:03:41.029Z [main] info: Pushing code: percentileCalculator
2018-11-14T08:04:08.202Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T08:04:08.203Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T08:04:08.203Z [main] silly: Executing: tsc --outDir "/tmp/packager-dcc0b790-e7e3-11e8-b2e8-9bcb34ab7edb/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T08:04:09.103Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T08:04:09.751Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T08:04:09.751Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T08:04:09.751Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T08:04:09.751Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:04:09.751Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:04:09.751Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:04:09.751Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T08:04:09.751Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T08:04:09.751Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T08:04:09.751Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T08:04:09.751Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T08:04:09.751Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T08:04:09.751Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T08:04:09.751Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:04:09.751Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:04:09.751Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:04:09.751Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T08:04:09.751Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T08:04:09.751Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T08:04:09.752Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:04:09.752Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T08:04:09.752Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T08:04:09.752Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:04:09.752Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:04:09.752Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:04:09.752Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T08:04:09.752Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T08:04:09.752Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T08:04:09.752Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:04:09.752Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T08:04:09.752Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:04:09.752Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T08:04:09.752Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T08:04:09.752Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:04:09.752Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:04:09.752Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T08:04:09.752Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T08:04:09.752Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T08:04:09.752Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:04:09.752Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:04:09.752Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:04:09.752Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:04:09.752Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T08:04:09.752Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T08:04:09.752Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T08:04:09.752Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T08:04:09.752Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T08:04:09.752Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T08:04:09.753Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:04:09.753Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:04:10.437Z [main] info: Shipping rig prod-major to eu-central-1
2018-11-14T08:04:10.437Z [main] silly: Packing src/store/compute into build
2018-11-14T08:04:10.437Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-14T08:04:10.438Z [main] silly: Executing: tsc --outDir "/tmp/packager-de15e750-e7e3-11e8-b2e8-9bcb34ab7edb/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/store/compute"
2018-11-14T08:04:13.793Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-14T08:04:14.365Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T08:04:14.365Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T08:04:14.365Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T08:04:14.365Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T08:04:14.431Z [main] info: Pushing code: store
2018-11-14T08:04:14.488Z [main] silly: Packing src/support/errorSink into build
2018-11-14T08:04:14.488Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-14T08:04:14.488Z [main] silly: Executing: tsc --outDir "/tmp/packager-e07fe270-e7e3-11e8-b2e8-9bcb34ab7edb/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink"
2018-11-14T08:04:15.402Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-14T08:04:15.941Z [main] info: Pushing code: errorSink
2018-11-14T08:04:15.942Z [main] silly: Packing src/support/trafficStatsSink into build
2018-11-14T08:04:15.942Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-14T08:04:15.942Z [main] silly: Executing: tsc --outDir "/tmp/packager-e15de660-e7e3-11e8-b2e8-9bcb34ab7edb/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink"
2018-11-14T08:04:19.271Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-14T08:04:19.890Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T08:04:19.890Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T08:04:19.890Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T08:04:19.961Z [main] info: Pushing code: trafficStatsSink
2018-11-14T08:04:20.025Z [main] silly: Packing src/support/percentileCalculator into build
2018-11-14T08:04:20.025Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator
2018-11-14T08:04:20.025Z [main] silly: Executing: tsc --outDir "/tmp/packager-e3ccea90-e7e3-11e8-b2e8-9bcb34ab7edb/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator"
2018-11-14T08:04:23.343Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator
2018-11-14T08:04:23.875Z [main] info: Pushing code: percentileCalculator
2018-11-14T08:06:50.674Z [main] silly: Fingerprint comparsion:
7ee3184afbd0ff626f690343ea1161310bb07c70469cbbfcfb91c50195043613
37fd856549717004c47071d7734dcb160bf39b3ac7331e0bdfe60702f0fdb93e
2018-11-14T08:06:50.674Z [main] silly: StackSpec: {
"AWSTemplateFormatVersion": "2010-09-09",
"Transform": "AWS::Serverless-2016-10-31",
"Description": "description goes here",
"Resources": {
"ingestionStore": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"dynamodb:*"
],
"Resource": "arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-topN"
}
]
},
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"lambda:InvokeFunction"
],
"Resource": "arn:aws:lambda:eu-central-1:274788167589:function:mm-prod-major-ingestion-errorSink"
}
]
},
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"lambda:InvokeFunction"
],
"Resource": "arn:aws:lambda:eu-central-1:274788167589:function:mm-prod-major-ingestion-trafficStatsSink"
}
]
}
],
"Handler": "ingestion-store_Handler.handle",
"Description": "Ingest data into the metric machine",
"MemorySize": 1024,
"Timeout": 30,
"FunctionName": "mm-prod-major-ingestion-store",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-store.zip"
}
},
"ingestionErrorSink": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [],
"Handler": "ingestion-errorSink_Handler.handle",
"Description": "Track error reports",
"MemorySize": 1024,
"Timeout": 5,
"ReservedConcurrentExecutions": 1,
"FunctionName": "mm-prod-major-ingestion-errorSink",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-errorSink.zip"
}
},
"ingestionTrafficStatsSink": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"dynamodb:*"
],
"Resource": "arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-trafficStats"
}
]
},
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"kinesis:*"
],
"Resource": "arn:aws:kinesis:eu-central-1:274788167589:stream/mm-prod-major-storage-TrafficStatsStream"
}
]
}
],
"Handler": "ingestion-trafficStatsSink_Handler.handle",
"Description": "Record various stats about RPC calls",
"MemorySize": 1024,
"Timeout": 5,
"FunctionName": "mm-prod-major-ingestion-trafficStatsSink",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-trafficStatsSink.zip"
}
},
"supportPercentileCalculator": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"dynamodb:*"
],
"Resource": "arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-datapoints"
}
]
}
],
"Handler": "support-percentileCalculator_Handler.handle",
"Events": {
"Stream": {
"Type": "Kinesis",
"Properties": {
"Stream": {
"Fn::GetAtt": [
"storageTrafficStatsStream",
"Arn"
]
},
"BatchSize": 5000,
"StartingPosition": "LATEST"
}
}
},
"MemorySize": 3008,
"Timeout": 15,
"ReservedConcurrentExecutions": 1,
"FunctionName": "mm-prod-major-support-percentileCalculator",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-support-percentileCalculator.zip"
}
},
"storageTrafficStatsStream": {
"Type": "AWS::Kinesis::Stream",
"Properties": {
"RetentionPeriodHours": 24,
"ShardCount": 2,
"Name": "mm-prod-major-storage-TrafficStatsStream"
}
},
"storageTrafficStats": {
"Type": "AWS::DynamoDB::Table",
"Properties": {
"AttributeDefinitions": [
{
"AttributeName": "metricName",
"AttributeType": "S"
},
{
"AttributeName": "slot",
"AttributeType": "N"
}
],
"KeySchema": [
{
"AttributeName": "metricName",
"KeyType": "HASH"
},
{
"AttributeName": "slot",
"KeyType": "RANGE"
}
],
"ProvisionedThroughput": {
"ReadCapacityUnits": 20,
"WriteCapacityUnits": 50
},
"TableName": "mm-prod-major-storage-trafficStats"
}
},
"storageTopN": {
"Type": "AWS::DynamoDB::Table",
"Properties": {
"AttributeDefinitions": [
{
"AttributeName": "id",
"AttributeType": "S"
},
{
"AttributeName": "slot",
"AttributeType": "N"
}
],
"KeySchema": [
{
"AttributeName": "id",
"KeyType": "HASH"
},
{
"AttributeName": "slot",
"KeyType": "RANGE"
}
],
"ProvisionedThroughput": {
"ReadCapacityUnits": 6,
"WriteCapacityUnits": 200
},
"TableName": "mm-prod-major-storage-topN"
}
}
}
}
2018-11-14T08:06:50.674Z [main] silly: createChangeSetReq=
{
"StackName": "mm-prod-major",
"ChangeSetName": "cs-3d982120-e7e4-11e8-b2e8-9bcb34ab7edb",
"ChangeSetType": "UPDATE",
"Capabilities": [
"CAPABILITY_IAM"
],
"TemplateBody": "{\"AWSTemplateFormatVersion\":\"2010-09-09\",\"Transform\":\"AWS::Serverless-2016-10-31\",\"Description\":\"description goes here\",\"Resources\":{\"ingestionStore\":{\"Type\":\"AWS::Serverless::Function\",\"Properties\":{\"Runtime\":\"nodejs8.10\",\"Policies\":[{\"Version\":\"2012-10-17\",\"Statement\":[{\"Effect\":\"Allow\",\"Action\":[\"dynamodb:*\"],\"Resource\":\"arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-topN\"}]},{\"Version\":\"2012-10-17\",\"Statement\":[{\"Effect\":\"Allow\",\"Action\":[\"lambda:InvokeFunction\"],\"Resource\":\"arn:aws:lambda:eu-central-1:274788167589:function:mm-prod-major-ingestion-errorSink\"}]},{\"Version\":\"2012-10-17\",\"Statement\":[{\"Effect\":\"Allow\",\"Action\":[\"lambda:InvokeFunction\"],\"Resource\":\"arn:aws:lambda:eu-central-1:274788167589:function:mm-prod-major-ingestion-trafficStatsSink\"}]}],\"Handler\":\"ingestion-store_Handler.handle\",\"Description\":\"Ingest data into the metric machine\",\"MemorySize\":1024,\"Timeout\":30,\"FunctionName\":\"mm-prod-major-ingestion-store\",\"CodeUri\":\"s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-store.zip\"}},\"ingestionErrorSink\":{\"Type\":\"AWS::Serverless::Function\",\"Properties\":{\"Runtime\":\"nodejs8.10\",\"Policies\":[],\"Handler\":\"ingestion-errorSink_Handler.handle\",\"Description\":\"Track error reports\",\"MemorySize\":1024,\"Timeout\":5,\"ReservedConcurrentExecutions\":1,\"FunctionName\":\"mm-prod-major-ingestion-errorSink\",\"CodeUri\":\"s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-errorSink.zip\"}},\"ingestionTrafficStatsSink\":{\"Type\":\"AWS::Serverless::Function\",\"Properties\":{\"Runtime\":\"nodejs8.10\",\"Policies\":[{\"Version\":\"2012-10-17\",\"Statement\":[{\"Effect\":\"Allow\",\"Action\":[\"dynamodb:*\"],\"Resource\":\"arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-trafficStats\"}]},{\"Version\":\"2012-10-17\",\"Statement\":[{\"Effect\":\"Allow\",\"Action\":[\"kinesis:*\"],\"Resource\":\"arn:aws:kinesis:eu-central-1:274788167589:stream/mm-prod-major-storage-TrafficStatsStream\"}]}],\"Handler\":\"ingestion-trafficStatsSink_Handler.handle\",\"Description\":\"Record various stats about RPC calls\",\"MemorySize\":1024,\"Timeout\":5,\"FunctionName\":\"mm-prod-major-ingestion-trafficStatsSink\",\"CodeUri\":\"s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-trafficStatsSink.zip\"}},\"supportPercentileCalculator\":{\"Type\":\"AWS::Serverless::Function\",\"Properties\":{\"Runtime\":\"nodejs8.10\",\"Policies\":[{\"Version\":\"2012-10-17\",\"Statement\":[{\"Effect\":\"Allow\",\"Action\":[\"dynamodb:*\"],\"Resource\":\"arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-datapoints\"}]}],\"Handler\":\"support-percentileCalculator_Handler.handle\",\"Events\":{\"Stream\":{\"Type\":\"Kinesis\",\"Properties\":{\"Stream\":{\"Fn::GetAtt\":[\"storageTrafficStatsStream\",\"Arn\"]},\"BatchSize\":5000,\"StartingPosition\":\"LATEST\"}}},\"MemorySize\":3008,\"Timeout\":15,\"ReservedConcurrentExecutions\":1,\"FunctionName\":\"mm-prod-major-support-percentileCalculator\",\"CodeUri\":\"s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-support-percentileCalculator.zip\"}},\"storageTrafficStatsStream\":{\"Type\":\"AWS::Kinesis::Stream\",\"Properties\":{\"RetentionPeriodHours\":24,\"ShardCount\":2,\"Name\":\"mm-prod-major-storage-TrafficStatsStream\"}},\"storageTrafficStats\":{\"Type\":\"AWS::DynamoDB::Table\",\"Properties\":{\"AttributeDefinitions\":[{\"AttributeName\":\"metricName\",\"AttributeType\":\"S\"},{\"AttributeName\":\"slot\",\"AttributeType\":\"N\"}],\"KeySchema\":[{\"AttributeName\":\"metricName\",\"KeyType\":\"HASH\"},{\"AttributeName\":\"slot\",\"KeyType\":\"RANGE\"}],\"ProvisionedThroughput\":{\"ReadCapacityUnits\":20,\"WriteCapacityUnits\":50},\"TableName\":\"mm-prod-major-storage-trafficStats\"}},\"storageTopN\":{\"Type\":\"AWS::DynamoDB::Table\",\"Properties\":{\"AttributeDefinitions\":[{\"AttributeName\":\"id\",\"AttributeType\":\"S\"},{\"AttributeName\":\"slot\",\"AttributeType\":\"N\"}],\"KeySchema\":[{\"AttributeName\":\"id\",\"KeyType\":\"HASH\"},{\"AttributeName\":\"slot\",\"KeyType\":\"RANGE\"}],\"ProvisionedThroughput\":{\"ReadCapacityUnits\":6,\"WriteCapacityUnits\":200},\"TableName\":\"mm-prod-major-storage-topN\"}}}}",
"Tags": [
{
"Key": "bigband_fingerprint",
"Value": "7ee3184afbd0ff626f690343ea1161310bb07c70469cbbfcfb91c50195043613"
}
]
}
2018-11-14T08:06:50.674Z [main] info: Creating change set
2018-11-14T08:06:51.732Z [main] info: .
2018-11-14T08:06:52.654Z [main] silly: ChangeSet description=
{
"ResponseMetadata": {
"RequestId": "3eaa2e5e-e7e4-11e8-b2d3-a5d4687635a5"
},
"ChangeSetName": "cs-3d982120-e7e4-11e8-b2e8-9bcb34ab7edb",
"ChangeSetId": "arn:aws:cloudformation:eu-central-1:274788167589:changeSet/cs-3d982120-e7e4-11e8-b2e8-9bcb34ab7edb/75c001bd-aef1-4fbc-b750-81c34730bf39",
"StackId": "arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e",
"StackName": "mm-prod-major",
"Parameters": [],
"CreationTime": "2018-11-14T08:06:51.609Z",
"ExecutionStatus": "UNAVAILABLE",
"Status": "CREATE_IN_PROGRESS",
"NotificationARNs": [],
"RollbackConfiguration": {},
"Capabilities": [
"CAPABILITY_IAM"
],
"Tags": [
{
"Key": "bigband_fingerprint",
"Value": "7ee3184afbd0ff626f690343ea1161310bb07c70469cbbfcfb91c50195043613"
}
],
"Changes": []
}
2018-11-14T08:07:02.667Z [main] info: ..
2018-11-14T08:07:13.048Z [main] silly: ChangeSet description=
{
"ResponseMetadata": {
"RequestId": "4ab7820a-e7e4-11e8-b040-9db051f95411"
},
"ChangeSetName": "cs-3d982120-e7e4-11e8-b2e8-9bcb34ab7edb",
"ChangeSetId": "arn:aws:cloudformation:eu-central-1:274788167589:changeSet/cs-3d982120-e7e4-11e8-b2e8-9bcb34ab7edb/75c001bd-aef1-4fbc-b750-81c34730bf39",
"StackId": "arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e",
"StackName": "mm-prod-major",
"Parameters": [],
"CreationTime": "2018-11-14T08:06:51.609Z",
"ExecutionStatus": "AVAILABLE",
"Status": "CREATE_COMPLETE",
"NotificationARNs": [],
"RollbackConfiguration": {},
"Capabilities": [
"CAPABILITY_IAM"
],
"Tags": [
{
"Key": "bigband_fingerprint",
"Value": "7ee3184afbd0ff626f690343ea1161310bb07c70469cbbfcfb91c50195043613"
}
],
"Changes": [
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "ingestionErrorSink",
"PhysicalResourceId": "mm-prod-major-ingestion-errorSink",
"ResourceType": "AWS::Lambda::Function",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "ingestionStore",
"PhysicalResourceId": "mm-prod-major-ingestion-store",
"ResourceType": "AWS::Lambda::Function",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "ingestionTrafficStatsSink",
"PhysicalResourceId": "mm-prod-major-ingestion-trafficStatsSink",
"ResourceType": "AWS::Lambda::Function",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "storageTopN",
"PhysicalResourceId": "mm-prod-major-storage-topN",
"ResourceType": "AWS::DynamoDB::Table",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "storageTrafficStats",
"PhysicalResourceId": "mm-prod-major-storage-trafficStats",
"ResourceType": "AWS::DynamoDB::Table",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "storageTrafficStatsStream",
"PhysicalResourceId": "mm-prod-major-storage-TrafficStatsStream",
"ResourceType": "AWS::Kinesis::Stream",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "supportPercentileCalculator",
"PhysicalResourceId": "mm-prod-major-support-percentileCalculator",
"ResourceType": "AWS::Lambda::Function",
"Replacement": "False",
"Scope": [
"Properties",
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Properties",
"Name": "Role",
"RequiresRecreation": "Never"
},
"Evaluation": "Dynamic",
"ChangeSource": "ResourceAttribute",
"CausingEntity": "supportPercentileCalculatorRole.Arn"
},
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "supportPercentileCalculatorRole",
"PhysicalResourceId": "mm-prod-major-supportPercentileCalculatorRole-5H8JVRW4R9XL",
"ResourceType": "AWS::IAM::Role",
"Replacement": "False",
"Scope": [
"Properties"
],
"Details": [
{
"Target": {
"Attribute": "Properties",
"Name": "Policies",
"RequiresRecreation": "Never"
},
"Evaluation": "Static",
"ChangeSource": "DirectModification"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "supportPercentileCalculatorStream",
"PhysicalResourceId": "29f4408f-d0a1-452a-b2bf-c04d0f4c39ba",
"ResourceType": "AWS::Lambda::EventSourceMapping",
"Replacement": "Conditional",
"Scope": [
"Properties"
],
"Details": [
{
"Target": {
"Attribute": "Properties",
"Name": "EventSourceArn",
"RequiresRecreation": "Always"
},
"Evaluation": "Dynamic",
"ChangeSource": "ResourceAttribute",
"CausingEntity": "storageTrafficStatsStream.Arn"
}
]
}
}
]
}
2018-11-14T08:07:13.049Z [main] info: Enacting Change set
2018-11-14T08:07:16.469Z [main] silly: Waiting for stack (arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e) to be updated
2018-11-14T08:07:16.469Z [main] info: .
2018-11-14T08:07:29.159Z [main] info: ..
2018-11-14T08:07:50.236Z [main] info: ...
2018-11-14T08:07:55.155Z [main] info: Stack status: UPDATE_COMPLETE
2018-11-14T08:07:55.155Z [main] silly: stack ID: arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e
2018-11-14T08:07:57.631Z [main] info: Rig prod-major shipped.
2018-11-14T08:13:40.251Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T08:13:40.252Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T08:13:40.252Z [main] silly: Executing: tsc --outDir "/tmp/packager-31b877a0-e7e5-11e8-aa28-23136e624a2c/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T08:13:41.201Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T08:13:41.812Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T08:13:41.812Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T08:13:41.812Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T08:13:41.812Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:13:41.812Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:13:41.812Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:13:41.812Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T08:13:41.812Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T08:13:41.812Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T08:13:41.812Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T08:13:41.812Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T08:13:41.812Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T08:13:41.812Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T08:13:41.812Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:13:41.812Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:13:41.812Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:13:41.813Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T08:13:41.813Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T08:13:41.813Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T08:13:41.813Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:13:41.813Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T08:13:41.813Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T08:13:41.813Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:13:41.813Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:13:41.813Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:13:41.813Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T08:13:41.813Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T08:13:41.813Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T08:13:41.813Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:13:41.813Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T08:13:41.813Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:13:41.813Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T08:13:41.813Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T08:13:41.813Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:13:41.813Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:13:41.813Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T08:13:41.813Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T08:13:41.813Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T08:13:41.813Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:13:41.813Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:13:41.813Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:13:41.813Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:13:41.813Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T08:13:41.813Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T08:13:41.813Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T08:13:41.814Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T08:13:41.814Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T08:13:41.814Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T08:13:41.814Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:13:41.814Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:13:42.502Z [main] info: {
"mm": {
"prod-major": {
"mm-prod-major-ingestion-store": "lambda",
"mm-prod-major-ingestion-errorSink": "lambda",
"mm-prod-major-ingestion-trafficStatsSink": "lambda",
"mm-prod-major-support-percentileCalculator": "lambda",
"mm-prod-major-storage-TrafficStatsStream": "kinesis",
"mm-prod-major-storage-trafficStats": "dynamodb",
"mm-prod-major-storage-topN": "dynamodb"
}
}
}
2018-11-14T08:14:10.412Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T08:14:10.413Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T08:14:10.413Z [main] silly: Executing: tsc --outDir "/tmp/packager-43b284a0-e7e5-11e8-8df0-d5b8e049755a/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T08:14:11.299Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T08:14:11.880Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T08:14:11.880Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T08:14:11.880Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T08:14:11.880Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:14:11.880Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:14:11.880Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:14:11.880Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T08:14:11.880Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T08:14:11.880Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T08:14:11.880Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T08:14:11.880Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T08:14:11.880Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T08:14:11.880Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T08:14:11.880Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:14:11.880Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:14:11.881Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:14:11.881Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T08:14:11.881Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T08:14:11.881Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T08:14:11.881Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:14:11.881Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T08:14:11.881Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T08:14:11.881Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:14:11.881Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:14:11.881Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:14:11.881Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T08:14:11.881Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T08:14:11.881Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T08:14:11.881Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:14:11.881Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T08:14:11.881Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:14:11.881Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T08:14:11.881Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T08:14:11.881Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:14:11.881Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:14:11.881Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T08:14:11.881Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T08:14:11.881Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T08:14:11.881Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:14:11.881Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:14:11.881Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:14:11.881Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:14:11.881Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T08:14:11.881Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T08:14:11.882Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T08:14:11.882Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T08:14:11.882Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T08:14:11.882Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T08:14:11.882Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:14:11.882Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:14:13.936Z [main] info: [
[
"<4 minutes ago> ",
"2018-11-14T08:10:26.711Z be4b0f80-e7e4-11e8-8231-09ef201f3d9d _BIGBAND_ERROR_SINK_",
{
"message": "Dynamodb.put duration (ok%=96.08) exceeded threshold",
"stack": [
"Error: Dynamodb.put duration (ok%=96.08) exceeded threshold",
" at /var/task/build/src/store/compute.js:157:29",
" at Generator.next (<anonymous>)",
" at fulfilled (/var/task/build/src/store/compute.js:4:58)",
" at <anonymous>",
" at process._tickDomainCallback (internal/process/next_tick.js:228:7)"
],
"origin": "mm-prod-major-ingestion-store",
"details": {
"originInstanceId": "662cc550-e7e4-11e8-b1a6-5fb32be94863",
"rpcCount": 306,
"slowPutCount": 12,
"okPercentage": 96.08,
"dt": 309,
"threshold": 50
},
"remainingTimeInMillis": 29671
}
],
[
"<4 minutes ago> ",
"2018-11-14T08:10:32.112Z c17b1a0e-e7e4-11e8-a38e-5ddefd707b42 _BIGBAND_ERROR_SINK_",
{
"message": "Dynamodb.put duration (ok%=95.95) exceeded threshold",
"stack": [
"Error: Dynamodb.put duration (ok%=95.95) exceeded threshold",
" at /var/task/build/src/store/compute.js:157:29",
" at Generator.next (<anonymous>)",
" at fulfilled (/var/task/build/src/store/compute.js:4:58)",
" at <anonymous>",
" at process._tickDomainCallback (internal/process/next_tick.js:228:7)"
],
"origin": "mm-prod-major-ingestion-store",
"details": {
"originInstanceId": "662cc550-e7e4-11e8-b1a6-5fb32be94863",
"rpcCount": 321,
"slowPutCount": 13,
"okPercentage": 95.95,
"dt": 54,
"threshold": 50
},
"remainingTimeInMillis": 29942
}
],
[
"<3 minutes ago> ",
"2018-11-14T08:11:01.466Z d2ee1c3d-e7e4-11e8-8511-d504d78dd47a _BIGBAND_ERROR_SINK_",
{
"message": "Dynamodb.put duration (ok%=99.21) exceeded threshold",
"stack": [
"Error: Dynamodb.put duration (ok%=99.21) exceeded threshold",
" at /var/task/build/src/store/compute.js:157:29",
" at Generator.next (<anonymous>)",
" at fulfilled (/var/task/build/src/store/compute.js:4:58)",
" at <anonymous>",
" at process._tickDomainCallback (internal/process/next_tick.js:228:7)"
],
"origin": "mm-prod-major-ingestion-store",
"details": {
"originInstanceId": "662bb3e0-e7e4-11e8-8dd2-4ba27af8b2c5",
"rpcCount": 254,
"slowPutCount": 2,
"okPercentage": 99.21,
"dt": 54,
"threshold": 50
},
"remainingTimeInMillis": 29941
}
],
[
"<3 minutes ago> ",
"2018-11-14T08:11:05.579Z d57ed9ee-e7e4-11e8-90b9-99e0c3178c51 _BIGBAND_ERROR_SINK_",
{
"message": "Dynamodb.put duration (ok%=99.55) exceeded threshold",
"stack": [
"Error: Dynamodb.put duration (ok%=99.55) exceeded threshold",
" at /var/task/build/src/store/compute.js:157:29",
" at Generator.next (<anonymous>)",
" at fulfilled (/var/task/build/src/store/compute.js:4:58)",
" at <anonymous>",
" at process._tickDomainCallback (internal/process/next_tick.js:228:7)"
],
"origin": "mm-prod-major-ingestion-store",
"details": {
"originInstanceId": "65f86ee0-e7e4-11e8-9920-390e6db77530",
"rpcCount": 222,
"slowPutCount": 1,
"okPercentage": 99.55,
"dt": 51,
"threshold": 50
},
"remainingTimeInMillis": 29944
}
],
[
"<3 minutes ago> ",
"2018-11-14T08:11:13.044Z d9e540cc-e7e4-11e8-bb4c-b71a634cafce _BIGBAND_ERROR_SINK_",
{
"message": "Dynamodb.put duration (ok%=99.16) exceeded threshold",
"stack": [
"Error: Dynamodb.put duration (ok%=99.16) exceeded threshold",
" at /var/task/build/src/store/compute.js:157:29",
" at Generator.next (<anonymous>)",
" at fulfilled (/var/task/build/src/store/compute.js:4:58)",
" at <anonymous>",
" at process._tickDomainCallback (internal/process/next_tick.js:228:7)"
],
"origin": "mm-prod-major-ingestion-store",
"details": {
"originInstanceId": "65f6c130-e7e4-11e8-ae34-2708c771ab18",
"rpcCount": 237,
"slowPutCount": 2,
"okPercentage": 99.16,
"dt": 61,
"threshold": 50
},
"remainingTimeInMillis": 29936
}
],
[
"<3 minutes ago> ",
"2018-11-14T08:11:40.211Z ea234624-e7e4-11e8-b2a0-5d3c4d2e758c _BIGBAND_ERROR_SINK_",
{
"message": "Dynamodb.put duration (ok%=96.8) exceeded threshold",
"stack": [
"Error: Dynamodb.put duration (ok%=96.8) exceeded threshold",
" at /var/task/build/src/store/compute.js:157:29",
" at Generator.next (<anonymous>)",
" at fulfilled (/var/task/build/src/store/compute.js:4:58)",
" at <anonymous>",
" at process._tickDomainCallback (internal/process/next_tick.js:228:7)"
],
"origin": "mm-prod-major-ingestion-store",
"details": {
"originInstanceId": "662cc550-e7e4-11e8-b1a6-5fb32be94863",
"rpcCount": 438,
"slowPutCount": 14,
"okPercentage": 96.8,
"dt": 61,
"threshold": 50
},
"remainingTimeInMillis": 29934
}
],
[
"<32 seconds ago> ",
"2018-11-14T08:13:41.922Z 32aa7976-e7e5-11e8-b80f-555206294198 _BIGBAND_ERROR_SINK_",
{
"message": "Dynamodb.put duration (ok%=97.76) exceeded threshold",
"stack": [
"Error: Dynamodb.put duration (ok%=97.76) exceeded threshold",
" at /var/task/build/src/store/compute.js:157:29",
" at Generator.next (<anonymous>)",
" at fulfilled (/var/task/build/src/store/compute.js:4:58)",
" at <anonymous>",
" at process._tickDomainCallback (internal/process/next_tick.js:228:7)"
],
"origin": "mm-prod-major-ingestion-store",
"details": {
"originInstanceId": "662cc550-e7e4-11e8-b1a6-5fb32be94863",
"rpcCount": 670,
"slowPutCount": 15,
"okPercentage": 97.76,
"dt": 197,
"threshold": 50
},
"remainingTimeInMillis": 29800
}
]
]
2018-11-14T08:14:42.934Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T08:14:42.935Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T08:14:42.935Z [main] silly: Executing: tsc --outDir "/tmp/packager-57152250-e7e5-11e8-9136-053c8223bb5e/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T08:14:43.868Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T08:14:44.445Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T08:14:44.445Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T08:14:44.445Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T08:14:44.445Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:14:44.445Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:14:44.445Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:14:44.445Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T08:14:44.445Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T08:14:44.445Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T08:14:44.445Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T08:14:44.445Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T08:14:44.445Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T08:14:44.446Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T08:14:44.446Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:14:44.446Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:14:44.446Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:14:44.446Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T08:14:44.446Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T08:14:44.446Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T08:14:44.446Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:14:44.446Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T08:14:44.446Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T08:14:44.446Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:14:44.446Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:14:44.446Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:14:44.446Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T08:14:44.446Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T08:14:44.446Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T08:14:44.446Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:14:44.446Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T08:14:44.446Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:14:44.446Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T08:14:44.446Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T08:14:44.446Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:14:44.446Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:14:44.446Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T08:14:44.446Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T08:14:44.446Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T08:14:44.446Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:14:44.446Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:14:44.446Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:14:44.447Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:14:44.447Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T08:14:44.447Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T08:14:44.447Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T08:14:44.447Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T08:14:44.447Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T08:14:44.447Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T08:14:44.447Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:14:44.447Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:14:45.124Z [main] info: {
"mm": {
"prod-major": {
"mm-prod-major-ingestion-store": "lambda",
"mm-prod-major-ingestion-errorSink": "lambda",
"mm-prod-major-ingestion-trafficStatsSink": "lambda",
"mm-prod-major-support-percentileCalculator": "lambda",
"mm-prod-major-storage-TrafficStatsStream": "kinesis",
"mm-prod-major-storage-trafficStats": "dynamodb",
"mm-prod-major-storage-topN": "dynamodb"
}
}
}
2018-11-14T08:15:17.686Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T08:15:17.687Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T08:15:17.687Z [main] silly: Executing: tsc --outDir "/tmp/packager-6bcbde50-e7e5-11e8-b52c-b5605d0fb00b/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T08:15:18.648Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T08:15:19.232Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T08:15:19.232Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T08:15:19.232Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T08:15:19.232Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:15:19.232Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:15:19.232Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:15:19.232Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T08:15:19.232Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T08:15:19.232Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T08:15:19.232Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T08:15:19.232Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T08:15:19.232Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T08:15:19.233Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T08:15:19.233Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:15:19.233Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:15:19.233Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:15:19.233Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T08:15:19.233Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T08:15:19.233Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T08:15:19.233Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:15:19.233Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T08:15:19.233Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T08:15:19.233Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:15:19.233Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:15:19.233Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:15:19.233Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T08:15:19.233Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T08:15:19.233Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T08:15:19.233Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:15:19.233Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T08:15:19.233Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:15:19.233Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T08:15:19.233Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T08:15:19.233Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:15:19.233Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:15:19.233Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T08:15:19.233Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T08:15:19.233Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T08:15:19.233Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:15:19.233Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:15:19.233Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:15:19.233Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:15:19.234Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T08:15:19.234Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T08:15:19.234Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T08:15:19.234Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T08:15:19.234Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T08:15:19.234Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T08:15:19.234Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:15:19.234Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:15:30.020Z [main] info: []
2018-11-14T08:15:32.740Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T08:15:32.741Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T08:15:32.741Z [main] silly: Executing: tsc --outDir "/tmp/packager-74c4ed30-e7e5-11e8-8664-171997060fae/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T08:15:33.661Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T08:15:34.255Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T08:15:34.255Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T08:15:34.255Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T08:15:34.255Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:15:34.255Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:15:34.255Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:15:34.255Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T08:15:34.255Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T08:15:34.255Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T08:15:34.255Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T08:15:34.255Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T08:15:34.255Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T08:15:34.255Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T08:15:34.255Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:15:34.255Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:15:34.255Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:15:34.255Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T08:15:34.255Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T08:15:34.255Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T08:15:34.255Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:15:34.255Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T08:15:34.256Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T08:15:34.256Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:15:34.256Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:15:34.256Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:15:34.256Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T08:15:34.256Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T08:15:34.256Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T08:15:34.256Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:15:34.256Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T08:15:34.256Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:15:34.256Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T08:15:34.256Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T08:15:34.256Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:15:34.256Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:15:34.256Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T08:15:34.256Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T08:15:34.256Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T08:15:34.256Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:15:34.256Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:15:34.256Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:15:34.256Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:15:34.256Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T08:15:34.256Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T08:15:34.256Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T08:15:34.256Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T08:15:34.256Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T08:15:34.256Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T08:15:34.256Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:15:34.256Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:15:36.545Z [main] info: []
2018-11-14T08:15:38.790Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T08:15:38.791Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T08:15:38.791Z [main] silly: Executing: tsc --outDir "/tmp/packager-78601550-e7e5-11e8-8656-bb71f61dd23b/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T08:15:39.755Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T08:15:40.325Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T08:15:40.325Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T08:15:40.325Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T08:15:40.325Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:15:40.325Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:15:40.325Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:15:40.325Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T08:15:40.326Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T08:15:40.326Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T08:15:40.326Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T08:15:40.326Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T08:15:40.326Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T08:15:40.326Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T08:15:40.326Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:15:40.326Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:15:40.326Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:15:40.326Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T08:15:40.326Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T08:15:40.326Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T08:15:40.326Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:15:40.326Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T08:15:40.326Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T08:15:40.326Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:15:40.326Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:15:40.326Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:15:40.326Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T08:15:40.326Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T08:15:40.326Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T08:15:40.326Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:15:40.326Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T08:15:40.326Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:15:40.326Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T08:15:40.326Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T08:15:40.326Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:15:40.326Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:15:40.326Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T08:15:40.327Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T08:15:40.327Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T08:15:40.327Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:15:40.327Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:15:40.327Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:15:40.327Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:15:40.327Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T08:15:40.327Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T08:15:40.327Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T08:15:40.327Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T08:15:40.327Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T08:15:40.327Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T08:15:40.327Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:15:40.327Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:15:55.749Z [main] info: []
2018-11-14T08:16:51.652Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T08:16:51.653Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T08:16:51.653Z [main] silly: Executing: tsc --outDir "/tmp/packager-a3cdf130-e7e5-11e8-aa2b-77861991471f/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T08:16:52.581Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T08:16:53.181Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T08:16:53.181Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T08:16:53.181Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T08:16:53.181Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:16:53.181Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:16:53.181Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:16:53.181Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T08:16:53.181Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T08:16:53.181Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T08:16:53.181Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T08:16:53.181Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T08:16:53.181Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T08:16:53.181Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T08:16:53.181Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:16:53.181Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:16:53.181Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:16:53.181Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T08:16:53.182Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T08:16:53.182Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T08:16:53.182Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:16:53.182Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T08:16:53.182Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T08:16:53.182Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:16:53.182Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:16:53.182Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:16:53.182Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T08:16:53.182Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T08:16:53.182Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T08:16:53.182Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:16:53.182Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T08:16:53.182Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:16:53.182Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T08:16:53.182Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T08:16:53.182Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:16:53.182Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:16:53.182Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T08:16:53.182Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T08:16:53.182Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T08:16:53.182Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:16:53.182Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:16:53.182Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:16:53.182Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:16:53.182Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T08:16:53.182Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T08:16:53.182Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T08:16:53.183Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T08:16:53.183Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T08:16:53.183Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T08:16:53.183Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:16:53.183Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:16:55.385Z [main] info: [
[
"<15 seconds ago> ",
"2018-11-14T08:16:39.993Z 811afbbd-0005-4ee7-ba43-d38475f4c21a First 10 summaries (out of 1)=",
"[",
" {",
" \"p10\": 8,",
" \"p50\": 12,",
" \"p90\": 24,",
" \"p99\": 36",
" }",
"]"
]
]
2018-11-14T08:17:01.955Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T08:17:01.956Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T08:17:01.956Z [main] silly: Executing: tsc --outDir "/tmp/packager-a9f20e20-e7e5-11e8-90b8-775430282904/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T08:17:02.881Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T08:17:03.451Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T08:17:03.451Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T08:17:03.451Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T08:17:03.451Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:17:03.451Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:17:03.451Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:17:03.451Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T08:17:03.451Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T08:17:03.451Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T08:17:03.451Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T08:17:03.452Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T08:17:03.452Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T08:17:03.452Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T08:17:03.452Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:17:03.452Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:17:03.452Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:17:03.452Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T08:17:03.452Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T08:17:03.452Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T08:17:03.452Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:17:03.452Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T08:17:03.452Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T08:17:03.452Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:17:03.452Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:17:03.452Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:17:03.452Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T08:17:03.452Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T08:17:03.452Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T08:17:03.452Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:17:03.452Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T08:17:03.452Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:17:03.452Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T08:17:03.452Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T08:17:03.452Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:17:03.452Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:17:03.452Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T08:17:03.452Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T08:17:03.452Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T08:17:03.452Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:17:03.452Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:17:03.453Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:17:03.453Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:17:03.453Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T08:17:03.453Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T08:17:03.453Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T08:17:03.453Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T08:17:03.453Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T08:17:03.453Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T08:17:03.453Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:17:03.453Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:17:06.902Z [main] info: []
2018-11-14T08:17:09.644Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T08:17:09.645Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T08:17:09.645Z [main] silly: Executing: tsc --outDir "/tmp/packager-ae874db0-e7e5-11e8-bf2e-07f795b7d2a8/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T08:17:10.568Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T08:17:11.120Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T08:17:11.120Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T08:17:11.120Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T08:17:11.120Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:17:11.120Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:17:11.120Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:17:11.120Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T08:17:11.120Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T08:17:11.120Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T08:17:11.120Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T08:17:11.120Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T08:17:11.120Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T08:17:11.120Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T08:17:11.121Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:17:11.121Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:17:11.121Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:17:11.121Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T08:17:11.121Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T08:17:11.121Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T08:17:11.121Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:17:11.121Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T08:17:11.121Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T08:17:11.121Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:17:11.121Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:17:11.121Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:17:11.121Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T08:17:11.121Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T08:17:11.121Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T08:17:11.121Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:17:11.121Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T08:17:11.121Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:17:11.121Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T08:17:11.121Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T08:17:11.121Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:17:11.121Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:17:11.121Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T08:17:11.121Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T08:17:11.121Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T08:17:11.121Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:17:11.121Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:17:11.121Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:17:11.122Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:17:11.122Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T08:17:11.122Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T08:17:11.122Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T08:17:11.122Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T08:17:11.122Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T08:17:11.122Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T08:17:11.122Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:17:11.122Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:17:13.673Z [main] info: []
2018-11-14T08:17:50.858Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T08:17:50.859Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T08:17:50.859Z [main] silly: Executing: tsc --outDir "/tmp/packager-c7180f90-e7e5-11e8-b168-1701e8cedbb2/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T08:17:51.784Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T08:17:52.351Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T08:17:52.351Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T08:17:52.351Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T08:17:52.351Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:17:52.351Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:17:52.351Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:17:52.351Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T08:17:52.352Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T08:17:52.352Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T08:17:52.352Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T08:17:52.352Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T08:17:52.352Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T08:17:52.352Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T08:17:52.352Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:17:52.352Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:17:52.352Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:17:52.352Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T08:17:52.352Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T08:17:52.352Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T08:17:52.352Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:17:52.352Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T08:17:52.352Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T08:17:52.352Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:17:52.352Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:17:52.352Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:17:52.352Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T08:17:52.352Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T08:17:52.352Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T08:17:52.352Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:17:52.352Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T08:17:52.352Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:17:52.352Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T08:17:52.352Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T08:17:52.352Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:17:52.352Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:17:52.352Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T08:17:52.353Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T08:17:52.353Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T08:17:52.353Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:17:52.353Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:17:52.353Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:17:52.353Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:17:52.353Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T08:17:52.353Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T08:17:52.353Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T08:17:52.353Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T08:17:52.353Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T08:17:52.353Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T08:17:52.353Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:17:52.353Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:17:55.307Z [main] info: [
[
"<1 minutes ago> ",
"2018-11-14T08:16:39.993Z 811afbbd-0005-4ee7-ba43-d38475f4c21a First 10 summaries (out of 1)=",
"[",
" {",
" \"p10\": 8,",
" \"p50\": 12,",
" \"p90\": 24,",
" \"p99\": 36",
" }",
"]"
]
]
2018-11-14T08:18:00.309Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T08:18:00.310Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T08:18:00.310Z [main] silly: Executing: tsc --outDir "/tmp/packager-ccba2b40-e7e5-11e8-9b71-0524ee7214b6/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T08:18:01.283Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T08:18:01.834Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T08:18:01.834Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T08:18:01.834Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T08:18:01.835Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:18:01.835Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:18:01.835Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:18:01.835Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T08:18:01.835Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T08:18:01.835Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T08:18:01.835Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T08:18:01.835Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T08:18:01.835Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T08:18:01.835Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T08:18:01.835Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:18:01.835Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:18:01.835Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:18:01.835Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T08:18:01.835Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T08:18:01.835Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T08:18:01.835Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:18:01.835Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T08:18:01.835Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T08:18:01.835Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:18:01.835Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:18:01.835Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:18:01.835Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T08:18:01.835Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T08:18:01.835Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T08:18:01.835Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:18:01.835Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T08:18:01.835Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:18:01.836Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T08:18:01.836Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T08:18:01.836Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:18:01.836Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:18:01.836Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T08:18:01.836Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T08:18:01.836Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T08:18:01.836Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:18:01.836Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:18:01.836Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:18:01.836Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:18:01.836Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T08:18:01.836Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T08:18:01.836Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T08:18:01.836Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T08:18:01.836Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T08:18:01.836Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T08:18:01.836Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:18:01.836Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:18:11.063Z [main] info: [
[
"<7 minutes ago> ",
"2018-11-14T08:10:45.873Z b07ada6d-5b65-477a-9f73-c03846761424 First 10 summaries (out of 1)=",
"[",
" {",
" \"p10\": 10,",
" \"p50\": 15,",
" \"p90\": 29,",
" \"p99\": 88",
" }",
"]"
],
[
"<5 minutes ago> ",
"2018-11-14T08:13:40.950Z 9fc3469a-922e-4073-9c49-2fd86473d54f First 10 summaries (out of 1)=",
"[",
" {",
" \"p10\": 9,",
" \"p50\": 14,",
" \"p90\": 27,",
" \"p99\": 38",
" }",
"]"
],
[
"<3 minutes ago> ",
"2018-11-14T08:15:37.973Z 5178e4c7-9da8-4e07-a785-8c4f38e5c916 First 10 summaries (out of 1)=",
"[",
" {",
" \"p10\": 9,",
" \"p50\": 14,",
" \"p90\": 27,",
" \"p99\": 56",
" }",
"]"
],
[
"<2 minutes ago> ",
"2018-11-14T08:16:39.993Z 811afbbd-0005-4ee7-ba43-d38475f4c21a First 10 summaries (out of 1)=",
"[",
" {",
" \"p10\": 8,",
" \"p50\": 12,",
" \"p90\": 24,",
" \"p99\": 36",
" }",
"]"
],
[
"<26 seconds ago> ",
"2018-11-14T08:17:45.048Z 439fa9ee-10cf-47db-8001-1eea3b28e1a4 First 10 summaries (out of 1)=",
"[",
" {",
" \"p10\": 8,",
" \"p50\": 12,",
" \"p90\": 26,",
" \"p99\": 42",
" }",
"]"
]
]
2018-11-14T08:20:45.767Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T08:20:45.769Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T08:20:45.769Z [main] silly: Executing: tsc --outDir "/tmp/packager-2f590e60-e7e6-11e8-89dd-b5a0b87ef1d2/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T08:20:46.926Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T08:20:47.493Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T08:20:47.493Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T08:20:47.493Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T08:20:47.493Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:20:47.493Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:20:47.494Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:20:47.494Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T08:20:47.494Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T08:20:47.494Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T08:20:47.494Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T08:20:47.494Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T08:20:47.494Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T08:20:47.494Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T08:20:47.494Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:20:47.494Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:20:47.494Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:20:47.494Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T08:20:47.494Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T08:20:47.494Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T08:20:47.494Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:20:47.494Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T08:20:47.494Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T08:20:47.494Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:20:47.494Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:20:47.494Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:20:47.494Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T08:20:47.494Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T08:20:47.494Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T08:20:47.494Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:20:47.494Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T08:20:47.494Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:20:47.494Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T08:20:47.494Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T08:20:47.495Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:20:47.495Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:20:47.495Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T08:20:47.495Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T08:20:47.495Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T08:20:47.495Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:20:47.495Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:20:47.495Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:20:47.495Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:20:47.495Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T08:20:47.495Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T08:20:47.495Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T08:20:47.495Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T08:20:47.495Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T08:20:47.495Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T08:20:47.495Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:20:47.495Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:20:48.365Z [main] info: Shipping rig prod-major to eu-central-1
2018-11-14T08:20:48.365Z [main] silly: Packing src/store/compute into build
2018-11-14T08:20:48.366Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-14T08:20:48.366Z [main] silly: Executing: tsc --outDir "/tmp/packager-30e5a1d0-e7e6-11e8-89dd-b5a0b87ef1d2/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/store/compute"
2018-11-14T08:20:52.672Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-14T08:20:53.331Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T08:20:53.331Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T08:20:53.331Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T08:20:53.331Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T08:20:53.400Z [main] info: Pushing code: store
2018-11-14T08:20:53.451Z [main] silly: Packing src/support/errorSink into build
2018-11-14T08:20:53.451Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-14T08:20:53.451Z [main] silly: Executing: tsc --outDir "/tmp/packager-33edb1b0-e7e6-11e8-89dd-b5a0b87ef1d2/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink"
2018-11-14T08:20:54.666Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-14T08:20:55.240Z [main] info: Pushing code: errorSink
2018-11-14T08:20:55.240Z [main] silly: Packing src/support/trafficStatsSink into build
2018-11-14T08:20:55.240Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-14T08:20:55.240Z [main] silly: Executing: tsc --outDir "/tmp/packager-34feac80-e7e6-11e8-89dd-b5a0b87ef1d2/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink"
2018-11-14T08:20:59.198Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-14T08:20:59.753Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T08:20:59.753Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T08:20:59.753Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T08:20:59.826Z [main] info: Pushing code: trafficStatsSink
2018-11-14T08:20:59.888Z [main] silly: Packing src/support/percentileCalculator into build
2018-11-14T08:20:59.888Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator
2018-11-14T08:20:59.888Z [main] silly: Executing: tsc --outDir "/tmp/packager-37c3bff0-e7e6-11e8-89dd-b5a0b87ef1d2/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator"
2018-11-14T08:21:03.285Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator
2018-11-14T08:21:03.854Z [main] info: Pushing code: percentileCalculator
2018-11-14T08:21:24.145Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T08:21:24.146Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T08:21:24.146Z [main] silly: Executing: tsc --outDir "/tmp/packager-46391300-e7e6-11e8-9214-bfb23aa46e58/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T08:21:25.089Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T08:21:25.682Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T08:21:25.683Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T08:21:25.683Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T08:21:25.683Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:21:25.683Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:21:25.683Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:21:25.683Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T08:21:25.683Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T08:21:25.683Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T08:21:25.683Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T08:21:25.683Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T08:21:25.683Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T08:21:25.683Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T08:21:25.683Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:21:25.683Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:21:25.683Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:21:25.683Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T08:21:25.683Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T08:21:25.683Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T08:21:25.683Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:21:25.683Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T08:21:25.683Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T08:21:25.683Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:21:25.683Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:21:25.684Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:21:25.684Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T08:21:25.684Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T08:21:25.684Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T08:21:25.684Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:21:25.684Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T08:21:25.684Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:21:25.684Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T08:21:25.684Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T08:21:25.684Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:21:25.684Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:21:25.684Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T08:21:25.684Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T08:21:25.684Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T08:21:25.684Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:21:25.684Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:21:25.684Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:21:25.684Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:21:25.684Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T08:21:25.684Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T08:21:25.684Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T08:21:25.684Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T08:21:25.684Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T08:21:25.684Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T08:21:25.684Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:21:25.684Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:21:26.366Z [main] info: Shipping rig prod-major to eu-central-1
2018-11-14T08:21:26.366Z [main] silly: Packing src/store/compute into build
2018-11-14T08:21:26.366Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-14T08:21:26.366Z [main] silly: Executing: tsc --outDir "/tmp/packager-478c1fe0-e7e6-11e8-9214-bfb23aa46e58/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/store/compute"
2018-11-14T08:21:29.734Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-14T08:21:30.304Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T08:21:30.305Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T08:21:30.305Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T08:21:30.305Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T08:21:30.386Z [main] info: Pushing code: store
2018-11-14T08:21:30.440Z [main] silly: Packing src/support/errorSink into build
2018-11-14T08:21:30.440Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-14T08:21:30.440Z [main] silly: Executing: tsc --outDir "/tmp/packager-49f9c480-e7e6-11e8-9214-bfb23aa46e58/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink"
2018-11-14T08:21:31.336Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-14T08:21:31.866Z [main] info: Pushing code: errorSink
2018-11-14T08:21:31.867Z [main] silly: Packing src/support/trafficStatsSink into build
2018-11-14T08:21:31.867Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-14T08:21:31.867Z [main] silly: Executing: tsc --outDir "/tmp/packager-4ad382b0-e7e6-11e8-9214-bfb23aa46e58/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink"
2018-11-14T08:21:35.226Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-14T08:21:35.766Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T08:21:35.767Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T08:21:35.767Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T08:21:35.834Z [main] info: Pushing code: trafficStatsSink
2018-11-14T08:21:35.884Z [main] silly: Packing src/support/percentileCalculator into build
2018-11-14T08:21:35.884Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator
2018-11-14T08:21:35.884Z [main] silly: Executing: tsc --outDir "/tmp/packager-4d384db0-e7e6-11e8-9214-bfb23aa46e58/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator"
2018-11-14T08:21:39.160Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator
2018-11-14T08:21:39.711Z [main] info: Pushing code: percentileCalculator
2018-11-14T08:24:10.925Z [main] silly: Fingerprint comparsion:
6b0185d99edc5db9f9e21cfe6b01cfe547ea026c4fc8dd674f9eec16bc0edc38
7ee3184afbd0ff626f690343ea1161310bb07c70469cbbfcfb91c50195043613
2018-11-14T08:24:10.926Z [main] silly: StackSpec: {
"AWSTemplateFormatVersion": "2010-09-09",
"Transform": "AWS::Serverless-2016-10-31",
"Description": "description goes here",
"Resources": {
"ingestionStore": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"dynamodb:*"
],
"Resource": "arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-topN"
}
]
},
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"lambda:InvokeFunction"
],
"Resource": "arn:aws:lambda:eu-central-1:274788167589:function:mm-prod-major-ingestion-errorSink"
}
]
},
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"lambda:InvokeFunction"
],
"Resource": "arn:aws:lambda:eu-central-1:274788167589:function:mm-prod-major-ingestion-trafficStatsSink"
}
]
}
],
"Handler": "ingestion-store_Handler.handle",
"Description": "Ingest data into the metric machine",
"MemorySize": 1024,
"Timeout": 30,
"FunctionName": "mm-prod-major-ingestion-store",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-store.zip"
}
},
"ingestionErrorSink": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [],
"Handler": "ingestion-errorSink_Handler.handle",
"Description": "Track error reports",
"MemorySize": 1024,
"Timeout": 5,
"ReservedConcurrentExecutions": 1,
"FunctionName": "mm-prod-major-ingestion-errorSink",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-errorSink.zip"
}
},
"ingestionTrafficStatsSink": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"dynamodb:*"
],
"Resource": "arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-trafficStats"
}
]
},
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"kinesis:*"
],
"Resource": "arn:aws:kinesis:eu-central-1:274788167589:stream/mm-prod-major-storage-TrafficStatsStream"
}
]
}
],
"Handler": "ingestion-trafficStatsSink_Handler.handle",
"Description": "Record various stats about RPC calls",
"MemorySize": 1024,
"Timeout": 5,
"FunctionName": "mm-prod-major-ingestion-trafficStatsSink",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-trafficStatsSink.zip"
}
},
"supportPercentileCalculator": {
"Type": "AWS::Serverless::Function",
"Properties": {
"Runtime": "nodejs8.10",
"Policies": [
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"dynamodb:*"
],
"Resource": "arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-datapoints"
}
]
}
],
"Handler": "support-percentileCalculator_Handler.handle",
"Events": {
"Stream": {
"Type": "Kinesis",
"Properties": {
"Stream": {
"Fn::GetAtt": [
"storageTrafficStatsStream",
"Arn"
]
},
"BatchSize": 5000,
"StartingPosition": "LATEST"
}
}
},
"MemorySize": 3008,
"Timeout": 15,
"ReservedConcurrentExecutions": 1,
"FunctionName": "mm-prod-major-support-percentileCalculator",
"CodeUri": "s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-support-percentileCalculator.zip"
}
},
"storageTrafficStatsStream": {
"Type": "AWS::Kinesis::Stream",
"Properties": {
"RetentionPeriodHours": 24,
"ShardCount": 2,
"Name": "mm-prod-major-storage-TrafficStatsStream"
}
},
"storageTrafficStats": {
"Type": "AWS::DynamoDB::Table",
"Properties": {
"AttributeDefinitions": [
{
"AttributeName": "metricName",
"AttributeType": "S"
},
{
"AttributeName": "slot",
"AttributeType": "N"
}
],
"KeySchema": [
{
"AttributeName": "metricName",
"KeyType": "HASH"
},
{
"AttributeName": "slot",
"KeyType": "RANGE"
}
],
"ProvisionedThroughput": {
"ReadCapacityUnits": 20,
"WriteCapacityUnits": 50
},
"TableName": "mm-prod-major-storage-trafficStats"
}
},
"storageDatapoints": {
"Type": "AWS::DynamoDB::Table",
"Properties": {
"AttributeDefinitions": [
{
"AttributeName": "n",
"AttributeType": "S"
},
{
"AttributeName": "t",
"AttributeType": "N"
}
],
"KeySchema": [
{
"AttributeName": "n",
"KeyType": "HASH"
},
{
"AttributeName": "t",
"KeyType": "RANGE"
}
],
"ProvisionedThroughput": {
"ReadCapacityUnits": 20,
"WriteCapacityUnits": 50
},
"TableName": "mm-prod-major-storage-datapoints"
}
},
"storageTopN": {
"Type": "AWS::DynamoDB::Table",
"Properties": {
"AttributeDefinitions": [
{
"AttributeName": "id",
"AttributeType": "S"
},
{
"AttributeName": "slot",
"AttributeType": "N"
}
],
"KeySchema": [
{
"AttributeName": "id",
"KeyType": "HASH"
},
{
"AttributeName": "slot",
"KeyType": "RANGE"
}
],
"ProvisionedThroughput": {
"ReadCapacityUnits": 6,
"WriteCapacityUnits": 200
},
"TableName": "mm-prod-major-storage-topN"
}
}
}
}
2018-11-14T08:24:10.926Z [main] silly: createChangeSetReq=
{
"StackName": "mm-prod-major",
"ChangeSetName": "cs-a9a1fce0-e7e6-11e8-9214-bfb23aa46e58",
"ChangeSetType": "UPDATE",
"Capabilities": [
"CAPABILITY_IAM"
],
"TemplateBody": "{\"AWSTemplateFormatVersion\":\"2010-09-09\",\"Transform\":\"AWS::Serverless-2016-10-31\",\"Description\":\"description goes here\",\"Resources\":{\"ingestionStore\":{\"Type\":\"AWS::Serverless::Function\",\"Properties\":{\"Runtime\":\"nodejs8.10\",\"Policies\":[{\"Version\":\"2012-10-17\",\"Statement\":[{\"Effect\":\"Allow\",\"Action\":[\"dynamodb:*\"],\"Resource\":\"arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-topN\"}]},{\"Version\":\"2012-10-17\",\"Statement\":[{\"Effect\":\"Allow\",\"Action\":[\"lambda:InvokeFunction\"],\"Resource\":\"arn:aws:lambda:eu-central-1:274788167589:function:mm-prod-major-ingestion-errorSink\"}]},{\"Version\":\"2012-10-17\",\"Statement\":[{\"Effect\":\"Allow\",\"Action\":[\"lambda:InvokeFunction\"],\"Resource\":\"arn:aws:lambda:eu-central-1:274788167589:function:mm-prod-major-ingestion-trafficStatsSink\"}]}],\"Handler\":\"ingestion-store_Handler.handle\",\"Description\":\"Ingest data into the metric machine\",\"MemorySize\":1024,\"Timeout\":30,\"FunctionName\":\"mm-prod-major-ingestion-store\",\"CodeUri\":\"s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-store.zip\"}},\"ingestionErrorSink\":{\"Type\":\"AWS::Serverless::Function\",\"Properties\":{\"Runtime\":\"nodejs8.10\",\"Policies\":[],\"Handler\":\"ingestion-errorSink_Handler.handle\",\"Description\":\"Track error reports\",\"MemorySize\":1024,\"Timeout\":5,\"ReservedConcurrentExecutions\":1,\"FunctionName\":\"mm-prod-major-ingestion-errorSink\",\"CodeUri\":\"s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-errorSink.zip\"}},\"ingestionTrafficStatsSink\":{\"Type\":\"AWS::Serverless::Function\",\"Properties\":{\"Runtime\":\"nodejs8.10\",\"Policies\":[{\"Version\":\"2012-10-17\",\"Statement\":[{\"Effect\":\"Allow\",\"Action\":[\"dynamodb:*\"],\"Resource\":\"arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-trafficStats\"}]},{\"Version\":\"2012-10-17\",\"Statement\":[{\"Effect\":\"Allow\",\"Action\":[\"kinesis:*\"],\"Resource\":\"arn:aws:kinesis:eu-central-1:274788167589:stream/mm-prod-major-storage-TrafficStatsStream\"}]}],\"Handler\":\"ingestion-trafficStatsSink_Handler.handle\",\"Description\":\"Record various stats about RPC calls\",\"MemorySize\":1024,\"Timeout\":5,\"FunctionName\":\"mm-prod-major-ingestion-trafficStatsSink\",\"CodeUri\":\"s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-ingestion-trafficStatsSink.zip\"}},\"supportPercentileCalculator\":{\"Type\":\"AWS::Serverless::Function\",\"Properties\":{\"Runtime\":\"nodejs8.10\",\"Policies\":[{\"Version\":\"2012-10-17\",\"Statement\":[{\"Effect\":\"Allow\",\"Action\":[\"dynamodb:*\"],\"Resource\":\"arn:aws:dynamodb:eu-central-1:274788167589:table/mm-prod-major-storage-datapoints\"}]}],\"Handler\":\"support-percentileCalculator_Handler.handle\",\"Events\":{\"Stream\":{\"Type\":\"Kinesis\",\"Properties\":{\"Stream\":{\"Fn::GetAtt\":[\"storageTrafficStatsStream\",\"Arn\"]},\"BatchSize\":5000,\"StartingPosition\":\"LATEST\"}}},\"MemorySize\":3008,\"Timeout\":15,\"ReservedConcurrentExecutions\":1,\"FunctionName\":\"mm-prod-major-support-percentileCalculator\",\"CodeUri\":\"s3://testim-dataplatform/metric-machine/deployables/mm-prod-major-support-percentileCalculator.zip\"}},\"storageTrafficStatsStream\":{\"Type\":\"AWS::Kinesis::Stream\",\"Properties\":{\"RetentionPeriodHours\":24,\"ShardCount\":2,\"Name\":\"mm-prod-major-storage-TrafficStatsStream\"}},\"storageTrafficStats\":{\"Type\":\"AWS::DynamoDB::Table\",\"Properties\":{\"AttributeDefinitions\":[{\"AttributeName\":\"metricName\",\"AttributeType\":\"S\"},{\"AttributeName\":\"slot\",\"AttributeType\":\"N\"}],\"KeySchema\":[{\"AttributeName\":\"metricName\",\"KeyType\":\"HASH\"},{\"AttributeName\":\"slot\",\"KeyType\":\"RANGE\"}],\"ProvisionedThroughput\":{\"ReadCapacityUnits\":20,\"WriteCapacityUnits\":50},\"TableName\":\"mm-prod-major-storage-trafficStats\"}},\"storageDatapoints\":{\"Type\":\"AWS::DynamoDB::Table\",\"Properties\":{\"AttributeDefinitions\":[{\"AttributeName\":\"n\",\"AttributeType\":\"S\"},{\"AttributeName\":\"t\",\"AttributeType\":\"N\"}],\"KeySchema\":[{\"AttributeName\":\"n\",\"KeyType\":\"HASH\"},{\"AttributeName\":\"t\",\"KeyType\":\"RANGE\"}],\"ProvisionedThroughput\":{\"ReadCapacityUnits\":20,\"WriteCapacityUnits\":50},\"TableName\":\"mm-prod-major-storage-datapoints\"}},\"storageTopN\":{\"Type\":\"AWS::DynamoDB::Table\",\"Properties\":{\"AttributeDefinitions\":[{\"AttributeName\":\"id\",\"AttributeType\":\"S\"},{\"AttributeName\":\"slot\",\"AttributeType\":\"N\"}],\"KeySchema\":[{\"AttributeName\":\"id\",\"KeyType\":\"HASH\"},{\"AttributeName\":\"slot\",\"KeyType\":\"RANGE\"}],\"ProvisionedThroughput\":{\"ReadCapacityUnits\":6,\"WriteCapacityUnits\":200},\"TableName\":\"mm-prod-major-storage-topN\"}}}}",
"Tags": [
{
"Key": "bigband_fingerprint",
"Value": "6b0185d99edc5db9f9e21cfe6b01cfe547ea026c4fc8dd674f9eec16bc0edc38"
}
]
}
2018-11-14T08:24:10.926Z [main] info: Creating change set
2018-11-14T08:24:12.671Z [main] info: .
2018-11-14T08:24:14.677Z [main] silly: ChangeSet description=
{
"ResponseMetadata": {
"RequestId": "abcb9451-e7e6-11e8-8436-df4395e01b0a"
},
"ChangeSetName": "cs-a9a1fce0-e7e6-11e8-9214-bfb23aa46e58",
"ChangeSetId": "arn:aws:cloudformation:eu-central-1:274788167589:changeSet/cs-a9a1fce0-e7e6-11e8-9214-bfb23aa46e58/5f7b92a5-3aa8-40a6-9a50-da1797225048",
"StackId": "arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e",
"StackName": "mm-prod-major",
"Parameters": [],
"CreationTime": "2018-11-14T08:24:12.398Z",
"ExecutionStatus": "UNAVAILABLE",
"Status": "CREATE_IN_PROGRESS",
"NotificationARNs": [],
"RollbackConfiguration": {},
"Capabilities": [
"CAPABILITY_IAM"
],
"Tags": [
{
"Key": "bigband_fingerprint",
"Value": "6b0185d99edc5db9f9e21cfe6b01cfe547ea026c4fc8dd674f9eec16bc0edc38"
}
],
"Changes": []
}
2018-11-14T08:24:24.690Z [main] info: ..
2018-11-14T08:24:25.441Z [main] silly: ChangeSet description=
{
"ResponseMetadata": {
"RequestId": "b2359372-e7e6-11e8-b040-9db051f95411"
},
"ChangeSetName": "cs-a9a1fce0-e7e6-11e8-9214-bfb23aa46e58",
"ChangeSetId": "arn:aws:cloudformation:eu-central-1:274788167589:changeSet/cs-a9a1fce0-e7e6-11e8-9214-bfb23aa46e58/5f7b92a5-3aa8-40a6-9a50-da1797225048",
"StackId": "arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e",
"StackName": "mm-prod-major",
"Parameters": [],
"CreationTime": "2018-11-14T08:24:12.398Z",
"ExecutionStatus": "AVAILABLE",
"Status": "CREATE_COMPLETE",
"NotificationARNs": [],
"RollbackConfiguration": {},
"Capabilities": [
"CAPABILITY_IAM"
],
"Tags": [
{
"Key": "bigband_fingerprint",
"Value": "6b0185d99edc5db9f9e21cfe6b01cfe547ea026c4fc8dd674f9eec16bc0edc38"
}
],
"Changes": [
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "ingestionErrorSink",
"PhysicalResourceId": "mm-prod-major-ingestion-errorSink",
"ResourceType": "AWS::Lambda::Function",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "ingestionStore",
"PhysicalResourceId": "mm-prod-major-ingestion-store",
"ResourceType": "AWS::Lambda::Function",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "ingestionTrafficStatsSink",
"PhysicalResourceId": "mm-prod-major-ingestion-trafficStatsSink",
"ResourceType": "AWS::Lambda::Function",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Add",
"LogicalResourceId": "storageDatapoints",
"ResourceType": "AWS::DynamoDB::Table",
"Scope": [],
"Details": []
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "storageTopN",
"PhysicalResourceId": "mm-prod-major-storage-topN",
"ResourceType": "AWS::DynamoDB::Table",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "storageTrafficStats",
"PhysicalResourceId": "mm-prod-major-storage-trafficStats",
"ResourceType": "AWS::DynamoDB::Table",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "storageTrafficStatsStream",
"PhysicalResourceId": "mm-prod-major-storage-TrafficStatsStream",
"ResourceType": "AWS::Kinesis::Stream",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "supportPercentileCalculator",
"PhysicalResourceId": "mm-prod-major-support-percentileCalculator",
"ResourceType": "AWS::Lambda::Function",
"Replacement": "False",
"Scope": [
"Tags"
],
"Details": [
{
"Target": {
"Attribute": "Tags",
"RequiresRecreation": "Never"
},
"Evaluation": "Static"
}
]
}
},
{
"Type": "Resource",
"ResourceChange": {
"Action": "Modify",
"LogicalResourceId": "supportPercentileCalculatorStream",
"PhysicalResourceId": "29f4408f-d0a1-452a-b2bf-c04d0f4c39ba",
"ResourceType": "AWS::Lambda::EventSourceMapping",
"Replacement": "Conditional",
"Scope": [
"Properties"
],
"Details": [
{
"Target": {
"Attribute": "Properties",
"Name": "EventSourceArn",
"RequiresRecreation": "Always"
},
"Evaluation": "Dynamic",
"ChangeSource": "ResourceAttribute",
"CausingEntity": "storageTrafficStatsStream.Arn"
}
]
}
}
]
}
2018-11-14T08:24:25.442Z [main] info: Enacting Change set
2018-11-14T08:24:27.247Z [main] silly: Waiting for stack (arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e) to be updated
2018-11-14T08:24:27.248Z [main] info: .
2018-11-14T08:24:37.977Z [main] info: ..
2018-11-14T08:24:58.681Z [main] info: ...
2018-11-14T08:25:39.373Z [main] info: ....
2018-11-14T08:25:40.466Z [main] info: Stack status: UPDATE_COMPLETE
2018-11-14T08:25:40.467Z [main] silly: stack ID: arn:aws:cloudformation:eu-central-1:274788167589:stack/mm-prod-major/078a2ea0-e269-11e8-bf7a-50a68a770c1e
2018-11-14T08:25:42.088Z [main] info: Rig prod-major shipped.
2018-11-14T08:26:27.394Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T08:26:27.396Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T08:26:27.397Z [main] silly: Executing: tsc --outDir "/tmp/packager-faf8e4f0-e7e6-11e8-b88d-077e2792092f/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T08:26:28.454Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T08:26:29.013Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T08:26:29.014Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T08:26:29.014Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T08:26:29.014Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:26:29.014Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:26:29.014Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:26:29.014Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T08:26:29.014Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T08:26:29.014Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T08:26:29.014Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T08:26:29.014Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T08:26:29.014Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T08:26:29.014Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T08:26:29.014Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:26:29.014Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:26:29.014Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:26:29.014Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T08:26:29.014Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T08:26:29.014Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T08:26:29.014Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:26:29.014Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T08:26:29.014Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T08:26:29.014Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:26:29.014Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:26:29.014Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:26:29.014Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T08:26:29.015Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T08:26:29.015Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T08:26:29.015Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:26:29.015Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T08:26:29.015Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:26:29.015Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T08:26:29.015Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T08:26:29.015Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:26:29.015Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:26:29.015Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T08:26:29.015Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T08:26:29.015Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T08:26:29.015Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:26:29.015Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:26:29.015Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:26:29.015Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:26:29.015Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T08:26:29.015Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T08:26:29.015Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T08:26:29.015Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T08:26:29.015Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T08:26:29.015Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T08:26:29.015Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:26:29.015Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:26:35.315Z [main] info: []
2018-11-14T08:26:43.570Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T08:26:43.571Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T08:26:43.571Z [main] silly: Executing: tsc --outDir "/tmp/packager-049d7610-e7e7-11e8-97c0-1150dec23aed/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T08:26:44.498Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T08:26:45.035Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T08:26:45.036Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T08:26:45.036Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T08:26:45.036Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:26:45.036Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:26:45.036Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:26:45.036Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T08:26:45.036Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T08:26:45.036Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T08:26:45.036Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T08:26:45.036Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T08:26:45.036Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T08:26:45.036Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T08:26:45.036Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:26:45.036Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:26:45.036Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:26:45.036Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T08:26:45.036Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T08:26:45.036Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T08:26:45.036Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:26:45.036Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T08:26:45.036Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T08:26:45.036Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:26:45.036Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T08:26:45.037Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:26:45.037Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T08:26:45.037Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T08:26:45.037Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T08:26:45.037Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T08:26:45.037Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T08:26:45.037Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T08:26:45.037Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T08:26:45.037Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T08:26:45.037Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:26:45.037Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:26:45.037Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T08:26:45.037Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T08:26:45.037Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T08:26:45.037Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:26:45.037Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:26:45.037Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:26:45.037Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:26:45.037Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T08:26:45.037Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T08:26:45.037Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T08:26:45.037Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T08:26:45.037Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T08:26:45.037Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T08:26:45.037Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T08:26:45.037Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T08:26:48.703Z [main] info: [
[
"<12 seconds ago> ",
"2018-11-14T08:26:36.333Z 7830f1d5-6454-4be9-89b0-95f8b621e3d1 First 10 summaries (out of 1)=",
"[",
" {",
" \"metricName\": \"mm-prod-major-ingestion-store.metric_machine_put\",",
" \"p10\": 8,",
" \"p50\": 13,",
" \"p90\": 27,",
" \"p99\": 101",
" }",
"]"
]
]
2018-11-14T11:15:50.391Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T11:15:50.392Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T11:15:50.392Z [main] silly: Executing: tsc --outDir "/tmp/packager-a4977960-e7fe-11e8-b117-852fb74a70dd/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T11:15:51.264Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T11:15:51.832Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T11:15:51.832Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T11:15:51.832Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T11:15:51.832Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T11:15:51.832Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T11:15:51.832Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:15:51.832Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T11:15:51.832Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T11:15:51.832Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T11:15:51.832Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T11:15:51.832Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T11:15:51.832Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T11:15:51.832Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T11:15:51.832Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T11:15:51.832Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T11:15:51.832Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:15:51.832Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T11:15:51.832Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T11:15:51.832Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T11:15:51.832Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:15:51.833Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T11:15:51.833Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T11:15:51.833Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T11:15:51.833Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T11:15:51.833Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:15:51.833Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T11:15:51.833Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T11:15:51.833Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T11:15:51.833Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:15:51.833Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T11:15:51.833Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T11:15:51.833Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T11:15:51.833Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T11:15:51.833Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T11:15:51.833Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T11:15:51.833Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T11:15:51.833Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T11:15:51.833Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T11:15:51.833Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T11:15:51.833Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T11:15:51.833Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T11:15:51.833Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T11:15:51.833Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T11:15:51.833Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T11:15:51.833Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T11:15:51.833Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T11:15:51.833Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T11:15:51.833Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T11:15:51.833Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T11:15:51.834Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T11:15:52.535Z [main] info: Shipping rig prod-major to eu-central-1
2018-11-14T11:15:52.535Z [main] silly: Packing src/store/compute into build
2018-11-14T11:15:52.535Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-14T11:15:52.535Z [main] silly: Executing: tsc --outDir "/tmp/packager-a5dec670-e7fe-11e8-b117-852fb74a70dd/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/store/compute"
2018-11-14T11:15:55.814Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-14T11:15:56.379Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T11:15:56.379Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T11:15:56.379Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T11:15:56.379Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T11:15:56.446Z [main] info: Pushing code: store
2018-11-14T11:15:56.470Z [main] silly: Packing src/support/errorSink into build
2018-11-14T11:15:56.470Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-14T11:15:56.470Z [main] silly: Executing: tsc --outDir "/tmp/packager-a8373560-e7fe-11e8-b117-852fb74a70dd/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink"
2018-11-14T11:15:57.360Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-14T11:15:57.880Z [main] info: Pushing code: errorSink
2018-11-14T11:15:57.881Z [main] silly: Packing src/support/trafficStatsSink into build
2018-11-14T11:15:57.881Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-14T11:15:57.881Z [main] silly: Executing: tsc --outDir "/tmp/packager-a90e8290-e7fe-11e8-b117-852fb74a70dd/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink"
2018-11-14T11:16:01.274Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-14T11:16:01.820Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T11:16:01.820Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T11:16:01.820Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T11:16:01.918Z [main] info: Pushing code: trafficStatsSink
2018-11-14T11:16:01.957Z [main] silly: Packing src/support/percentileCalculator into build
2018-11-14T11:16:01.957Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator
2018-11-14T11:16:01.957Z [main] silly: Executing: tsc --outDir "/tmp/packager-ab7c7550-e7fe-11e8-b117-852fb74a70dd/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator"
2018-11-14T11:16:05.260Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator
2018-11-14T11:16:05.793Z [main] info: Pushing code: percentileCalculator
2018-11-14T11:16:21.697Z [main] silly: Fingerprint comparsion:
6b0185d99edc5db9f9e21cfe6b01cfe547ea026c4fc8dd674f9eec16bc0edc38
6b0185d99edc5db9f9e21cfe6b01cfe547ea026c4fc8dd674f9eec16bc0edc38
2018-11-14T11:16:21.697Z [main] info: No stack changes
2018-11-14T11:16:22.818Z [main] info: Rig prod-major shipped.
2018-11-14T11:16:44.236Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T11:16:44.237Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T11:16:44.237Z [main] silly: Executing: tsc --outDir "/tmp/packager-c4af91b0-e7fe-11e8-98ca-e7e0aefac416/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T11:16:45.143Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T11:16:45.677Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T11:16:45.677Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T11:16:45.677Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T11:16:45.677Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T11:16:45.677Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T11:16:45.678Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:16:45.678Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T11:16:45.678Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T11:16:45.678Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T11:16:45.678Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T11:16:45.678Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T11:16:45.678Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T11:16:45.678Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T11:16:45.678Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T11:16:45.678Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T11:16:45.678Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:16:45.678Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T11:16:45.678Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T11:16:45.678Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T11:16:45.678Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:16:45.678Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T11:16:45.678Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T11:16:45.678Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T11:16:45.678Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T11:16:45.678Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:16:45.678Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T11:16:45.678Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T11:16:45.678Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T11:16:45.678Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:16:45.678Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T11:16:45.678Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T11:16:45.678Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T11:16:45.678Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T11:16:45.678Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T11:16:45.679Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T11:16:45.679Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T11:16:45.679Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T11:16:45.679Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T11:16:45.679Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T11:16:45.679Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T11:16:45.679Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T11:16:45.679Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T11:16:45.679Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T11:16:45.679Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T11:16:45.679Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T11:16:45.679Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T11:16:45.679Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T11:16:45.679Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T11:16:45.679Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T11:16:45.679Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T11:16:47.339Z [main] info: []
2018-11-14T11:16:49.382Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T11:16:49.383Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T11:16:49.383Z [main] silly: Executing: tsc --outDir "/tmp/packager-c7c0c950-e7fe-11e8-81a5-2b0a4e4084f0/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T11:16:50.302Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T11:16:50.844Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T11:16:50.844Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T11:16:50.844Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T11:16:50.844Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T11:16:50.844Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T11:16:50.844Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:16:50.844Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T11:16:50.844Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T11:16:50.844Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T11:16:50.844Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T11:16:50.844Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T11:16:50.844Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T11:16:50.844Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T11:16:50.844Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T11:16:50.844Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T11:16:50.844Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:16:50.844Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T11:16:50.844Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T11:16:50.844Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T11:16:50.844Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:16:50.845Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T11:16:50.845Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T11:16:50.845Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T11:16:50.845Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T11:16:50.845Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:16:50.845Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T11:16:50.845Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T11:16:50.845Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T11:16:50.845Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:16:50.845Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T11:16:50.845Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T11:16:50.845Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T11:16:50.845Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T11:16:50.845Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T11:16:50.845Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T11:16:50.845Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T11:16:50.845Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T11:16:50.845Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T11:16:50.845Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T11:16:50.845Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T11:16:50.845Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T11:16:50.845Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T11:16:50.845Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T11:16:50.845Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T11:16:50.845Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T11:16:50.845Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T11:16:50.845Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T11:16:50.845Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T11:16:50.845Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T11:16:50.846Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T11:16:52.297Z [main] info: []
2018-11-14T11:16:54.394Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T11:16:54.395Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T11:16:54.395Z [main] silly: Executing: tsc --outDir "/tmp/packager-cabd8e90-e7fe-11e8-a809-efa155d21d12/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T11:16:55.293Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T11:16:55.840Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T11:16:55.841Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T11:16:55.841Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T11:16:55.841Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T11:16:55.841Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T11:16:55.841Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:16:55.841Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T11:16:55.841Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T11:16:55.841Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T11:16:55.841Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T11:16:55.841Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T11:16:55.841Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T11:16:55.841Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T11:16:55.841Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T11:16:55.841Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T11:16:55.841Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:16:55.841Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T11:16:55.841Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T11:16:55.841Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T11:16:55.841Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:16:55.841Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T11:16:55.841Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T11:16:55.841Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T11:16:55.841Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T11:16:55.841Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:16:55.841Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T11:16:55.841Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T11:16:55.842Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T11:16:55.842Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:16:55.842Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T11:16:55.842Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T11:16:55.842Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T11:16:55.842Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T11:16:55.842Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T11:16:55.842Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T11:16:55.842Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T11:16:55.842Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T11:16:55.842Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T11:16:55.842Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T11:16:55.842Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T11:16:55.842Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T11:16:55.842Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T11:16:55.842Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T11:16:55.842Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T11:16:55.842Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T11:16:55.842Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T11:16:55.842Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T11:16:55.842Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T11:16:55.842Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T11:16:55.842Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T11:16:57.374Z [main] info: []
2018-11-14T11:17:00.337Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T11:17:00.338Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T11:17:00.338Z [main] silly: Executing: tsc --outDir "/tmp/packager-ce486300-e7fe-11e8-85c0-77154cff83b2/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T11:17:01.262Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T11:17:01.786Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T11:17:01.786Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T11:17:01.786Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T11:17:01.786Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T11:17:01.786Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T11:17:01.786Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:17:01.786Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T11:17:01.786Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T11:17:01.786Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T11:17:01.786Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T11:17:01.786Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T11:17:01.786Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T11:17:01.786Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T11:17:01.786Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T11:17:01.786Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T11:17:01.786Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:17:01.786Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T11:17:01.786Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T11:17:01.786Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T11:17:01.786Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:17:01.786Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T11:17:01.786Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T11:17:01.786Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T11:17:01.787Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T11:17:01.787Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:17:01.787Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T11:17:01.787Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T11:17:01.787Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T11:17:01.787Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:17:01.787Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T11:17:01.787Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T11:17:01.787Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T11:17:01.787Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T11:17:01.787Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T11:17:01.787Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T11:17:01.787Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T11:17:01.787Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T11:17:01.787Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T11:17:01.787Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T11:17:01.787Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T11:17:01.787Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T11:17:01.787Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T11:17:01.787Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T11:17:01.787Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T11:17:01.787Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T11:17:01.787Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T11:17:01.787Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T11:17:01.787Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T11:17:01.787Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T11:17:01.787Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T11:17:03.666Z [main] info: [
[
"<20 seconds ago> ",
"2018-11-14T11:16:43.869Z c43001e8-e7fe-11e8-9e12-f9b266ee683f labels=[{\"name\":\"projectId\",\"value\":\"NetApp_16f9014d-a368-a70b-f5ae-52b81ea7ec84\"},{\"name\":\"name\",\"value\":\"cajGHjFnGl.json\"}]"
],
[
"<20 seconds ago> ",
"2018-11-14T11:16:43.869Z c43001e8-e7fe-11e8-9e12-f9b266ee683f Attempting to write 25663 into slot 12."
],
[
"<19 seconds ago> ",
"2018-11-14T11:16:44.234Z c4a77c43-e7fe-11e8-b846-43b6120a6011 labels=[{\"name\":\"projectId\",\"value\":\"gnLmAc6O\"},{\"name\":\"name\",\"value\":\"1nxUbDO0or.json\"}]"
],
[
"<19 seconds ago> ",
"2018-11-14T11:16:44.234Z c4a77c43-e7fe-11e8-b846-43b6120a6011 Attempting to write 6515 into slot 3."
],
[
"<19 seconds ago> ",
"2018-11-14T11:16:44.414Z c4c3b6de-e7fe-11e8-a585-83ee7771210b labels=[{\"name\":\"projectId\",\"value\":\"UInVBHdl\"},{\"name\":\"name\",\"value\":\"HZC1vBzcr9.json\"}]"
],
[
"<19 seconds ago> ",
"2018-11-14T11:16:44.414Z c4c3b6de-e7fe-11e8-a585-83ee7771210b Attempting to write 8519 into slot 4."
],
[
"<19 seconds ago> ",
"2018-11-14T11:16:44.615Z c4dce3b2-e7fe-11e8-9d6a-f5e73d70722a labels=[{\"name\":\"projectId\",\"value\":\"NyXN7ywxkHRUI7EiKyOM\"},{\"name\":\"name\",\"value\":\"7bzOYGKK9K.json\"}]"
],
[
"<19 seconds ago> ",
"2018-11-14T11:16:44.615Z c4dce3b2-e7fe-11e8-9d6a-f5e73d70722a Attempting to write 24035 into slot 12."
],
[
"<19 seconds ago> ",
"2018-11-14T11:16:44.695Z c4ed10c8-e7fe-11e8-8a6a-7f6e9dc85f74 labels=[{\"name\":\"projectId\",\"value\":\"gnLmAc6O\"},{\"name\":\"name\",\"value\":\"FhZhZsWWUe.json\"}]"
],
[
"<19 seconds ago> ",
"2018-11-14T11:16:44.695Z c4ed10c8-e7fe-11e8-8a6a-7f6e9dc85f74 Attempting to write 18511 into slot 9."
],
[
"<19 seconds ago> ",
"2018-11-14T11:16:44.761Z c4f8d07f-e7fe-11e8-a793-ad984bdc55b0 labels=[{\"name\":\"projectId\",\"value\":\"NyXN7ywxkHRUI7EiKyOM\"},{\"name\":\"name\",\"value\":\"BYilGebfLN.json\"}]"
],
[
"<19 seconds ago> ",
"2018-11-14T11:16:44.761Z c4f8d07f-e7fe-11e8-a793-ad984bdc55b0 Attempting to write 9645 into slot 4."
],
[
"<19 seconds ago> ",
"2018-11-14T11:16:44.877Z c50812af-e7fe-11e8-98ea-711bdd7b3927 labels=[{\"name\":\"projectId\",\"value\":\"UInVBHdl\"},{\"name\":\"name\",\"value\":\"Un3q6bEMcr.json\"}]"
],
[
"<19 seconds ago> ",
"2018-11-14T11:16:44.877Z c50812af-e7fe-11e8-98ea-711bdd7b3927 Attempting to write 8519 into slot 4."
],
[
"<19 seconds ago> ",
"2018-11-14T11:16:44.951Z c50b46bf-e7fe-11e8-9252-d17a032fdb8a labels=[{\"name\":\"projectId\",\"value\":\"NyXN7ywxkHRUI7EiKyOM\"},{\"name\":\"name\",\"value\":\"om4hsPVmyr.json\"}]"
],
[
"<19 seconds ago> ",
"2018-11-14T11:16:44.951Z c50b46bf-e7fe-11e8-9252-d17a032fdb8a Attempting to write 13673 into slot 6."
],
[
"<19 seconds ago> ",
"2018-11-14T11:16:45.004Z c518b429-e7fe-11e8-90f3-6d030f277b63 labels=[{\"name\":\"projectId\",\"value\":\"MPCVUyMA\"},{\"name\":\"name\",\"value\":\"n1u4ZQh7WS.json\"}]"
],
[
"<19 seconds ago> ",
"2018-11-14T11:16:45.005Z c518b429-e7fe-11e8-90f3-6d030f277b63 Attempting to write 14591 into slot 7."
],
[
"<18 seconds ago> ",
"2018-11-14T11:16:45.166Z c535ffea-e7fe-11e8-8d1a-6f7eea9a8f43 labels=[{\"name\":\"projectId\",\"value\":\"WyRAcBgl\"},{\"name\":\"name\",\"value\":\"j5tliwGfr6.json\"}]"
],
[
"<18 seconds ago> ",
"2018-11-14T11:16:45.166Z c535ffea-e7fe-11e8-8d1a-6f7eea9a8f43 Attempting to write 14780 into slot 7."
],
[
"<18 seconds ago> ",
"2018-11-14T11:16:45.288Z c545910f-e7fe-11e8-8e77-73bf6f1e5e70 labels=[{\"name\":\"projectId\",\"value\":\"IQt58HozXFrPgBKwVB3K\"},{\"name\":\"name\",\"value\":\"77kzqPTzGs.json\"}]"
],
[
"<18 seconds ago> ",
"2018-11-14T11:16:45.288Z c545910f-e7fe-11e8-8e77-73bf6f1e5e70 Attempting to write 7795 into slot 3."
],
[
"<18 seconds ago> ",
"2018-11-14T11:16:45.422Z c553255e-e7fe-11e8-ba57-d56028232d13 labels=[{\"name\":\"projectId\",\"value\":\"WyRAcBgl\"},{\"name\":\"name\",\"value\":\"YdbEYr5o2G.json\"}]"
],
[
"<18 seconds ago> ",
"2018-11-14T11:16:45.422Z c553255e-e7fe-11e8-ba57-d56028232d13 Attempting to write 17886 into slot 8."
],
[
"<18 seconds ago> ",
"2018-11-14T11:16:45.503Z c54c6ee9-e7fe-11e8-8e77-73bf6f1e5e70 labels=[{\"name\":\"projectId\",\"value\":\"NetApp_16f9014d-a368-a70b-f5ae-52b81ea7ec84\"},{\"name\":\"name\",\"value\":\"7bho4HZbz5.json\"}]"
],
[
"<18 seconds ago> ",
"2018-11-14T11:16:45.504Z c54c6ee9-e7fe-11e8-8e77-73bf6f1e5e70 Attempting to write 31035 into slot 15."
],
[
"<18 seconds ago> ",
"2018-11-14T11:16:45.609Z c57860ac-e7fe-11e8-a996-1f579c79e0f9 labels=[{\"name\":\"projectId\",\"value\":\"UInVBHdl\"},{\"name\":\"name\",\"value\":\"MrANZmyKTO.json\"}]"
],
[
"<18 seconds ago> ",
"2018-11-14T11:16:45.609Z c57860ac-e7fe-11e8-a996-1f579c79e0f9 Attempting to write 6176 into slot 3."
],
[
"<18 seconds ago> ",
"2018-11-14T11:16:45.709Z c58669e1-e7fe-11e8-81ec-89eed086e1c1 labels=[{\"name\":\"projectId\",\"value\":\"NetApp_16f9014d-a368-a70b-f5ae-52b81ea7ec84\"},{\"name\":\"name\",\"value\":\"pjmgxnlLna.json\"}]"
],
[
"<18 seconds ago> ",
"2018-11-14T11:16:45.709Z c58669e1-e7fe-11e8-81ec-89eed086e1c1 Attempting to write 18403 into slot 9."
],
[
"<18 seconds ago> ",
"2018-11-14T11:16:45.851Z c59ead86-e7fe-11e8-ae02-b14918e49f14 labels=[{\"name\":\"projectId\",\"value\":\"MPCVUyMA\"},{\"name\":\"name\",\"value\":\"DXfIEnf6MZ.json\"}]"
],
[
"<18 seconds ago> ",
"2018-11-14T11:16:45.851Z c59ead86-e7fe-11e8-ae02-b14918e49f14 Attempting to write 14594 into slot 7."
],
[
"<18 seconds ago> ",
"2018-11-14T11:16:46.046Z c5bbab33-e7fe-11e8-8249-dd6596a51fdf labels=[{\"name\":\"projectId\",\"value\":\"NetApp_16f9014d-a368-a70b-f5ae-52b81ea7ec84\"},{\"name\":\"name\",\"value\":\"DM3kmXIeB6.json\"}]"
],
[
"<18 seconds ago> ",
"2018-11-14T11:16:46.046Z c5bbab33-e7fe-11e8-8249-dd6596a51fdf Attempting to write 16748 into slot 8."
],
[
"<17 seconds ago> ",
"2018-11-14T11:16:46.237Z c5d6acc1-e7fe-11e8-95b9-9bed6c249fd6 labels=[{\"name\":\"projectId\",\"value\":\"NetApp_16f9014d-a368-a70b-f5ae-52b81ea7ec84\"},{\"name\":\"name\",\"value\":\"9jmWUmVqmU.json\"}]"
],
[
"<17 seconds ago> ",
"2018-11-14T11:16:46.237Z c5d6acc1-e7fe-11e8-95b9-9bed6c249fd6 Attempting to write 34894 into slot 17."
],
[
"<17 seconds ago> ",
"2018-11-14T11:16:46.321Z c5d4151d-e7fe-11e8-9e55-a189b589d71c labels=[{\"name\":\"projectId\",\"value\":\"NetApp_16f9014d-a368-a70b-f5ae-52b81ea7ec84\"},{\"name\":\"name\",\"value\":\"1zOI93tF3t.json\"}]"
],
[
"<17 seconds ago> ",
"2018-11-14T11:16:46.321Z c5d4151d-e7fe-11e8-9e55-a189b589d71c Attempting to write 13718 into slot 6."
],
[
"<17 seconds ago> ",
"2018-11-14T11:16:46.431Z c5f72d44-e7fe-11e8-b70b-b7ed91a03890 labels=[{\"name\":\"projectId\",\"value\":\"nySla2yA\"},{\"name\":\"name\",\"value\":\"PzU2TtzQEY.json\"}]"
],
[
"<17 seconds ago> ",
"2018-11-14T11:16:46.431Z c5f72d44-e7fe-11e8-b70b-b7ed91a03890 Attempting to write 11059 into slot 5."
],
[
"<17 seconds ago> ",
"2018-11-14T11:16:46.467Z c5f9c5b5-e7fe-11e8-9246-83bf8e1b486f labels=[{\"name\":\"projectId\",\"value\":\"MPCVUyMA\"},{\"name\":\"name\",\"value\":\"lMKp3bkuHw.json\"}]"
],
[
"<17 seconds ago> ",
"2018-11-14T11:16:46.468Z c5f9c5b5-e7fe-11e8-9246-83bf8e1b486f Attempting to write 18987 into slot 9."
],
[
"<17 seconds ago> ",
"2018-11-14T11:16:46.760Z c627b30f-e7fe-11e8-b343-6b85725fc17c labels=[{\"name\":\"projectId\",\"value\":\"NyXN7ywxkHRUI7EiKyOM\"},{\"name\":\"name\",\"value\":\"KXsBQxPV6L.json\"}]"
],
[
"<17 seconds ago> ",
"2018-11-14T11:16:46.760Z c627b30f-e7fe-11e8-b343-6b85725fc17c Attempting to write 21642 into slot 10."
],
[
"<17 seconds ago> ",
"2018-11-14T11:16:46.812Z c6303e8b-e7fe-11e8-94f1-05f38a886ae9 labels=[{\"name\":\"projectId\",\"value\":\"NetApp_16f9014d-a368-a70b-f5ae-52b81ea7ec84\"},{\"name\":\"name\",\"value\":\"n6hgtYeU9Q.json\"}]"
],
[
"<17 seconds ago> ",
"2018-11-14T11:16:46.813Z c6303e8b-e7fe-11e8-94f1-05f38a886ae9 Attempting to write 22215 into slot 11."
],
[
"<17 seconds ago> ",
"2018-11-14T11:16:46.917Z c63e963c-e7fe-11e8-9246-83bf8e1b486f labels=[{\"name\":\"projectId\",\"value\":\"NetApp_16f9014d-a368-a70b-f5ae-52b81ea7ec84\"},{\"name\":\"name\",\"value\":\"SsrZx8UsYd.json\"}]"
],
[
"<17 seconds ago> ",
"2018-11-14T11:16:46.917Z c63e963c-e7fe-11e8-9246-83bf8e1b486f Attempting to write 26421 into slot 13."
],
[
"<17 seconds ago> ",
"2018-11-14T11:16:47.056Z c63b8987-e7fe-11e8-9cd8-edf2423f9f3b labels=[{\"name\":\"projectId\",\"value\":\"NetApp_16f9014d-a368-a70b-f5ae-52b81ea7ec84\"},{\"name\":\"name\",\"value\":\"8cfFSa6WYh.json\"}]"
],
[
"<17 seconds ago> ",
"2018-11-14T11:16:47.056Z c63b8987-e7fe-11e8-9cd8-edf2423f9f3b Attempting to write 35419 into slot 17."
],
[
"<16 seconds ago> ",
"2018-11-14T11:16:47.380Z c66d4837-e7fe-11e8-aef9-5b3e80f6ba37 labels=[{\"name\":\"projectId\",\"value\":\"NetApp_16f9014d-a368-a70b-f5ae-52b81ea7ec84\"},{\"name\":\"name\",\"value\":\"nSC8vMlXRI.json\"}]"
],
[
"<16 seconds ago> ",
"2018-11-14T11:16:47.381Z c66d4837-e7fe-11e8-aef9-5b3e80f6ba37 Attempting to write 27714 into slot 13."
],
[
"<16 seconds ago> ",
"2018-11-14T11:16:47.552Z c6840475-e7fe-11e8-a414-e1dc09892db1 labels=[{\"name\":\"projectId\",\"value\":\"NetApp_16f9014d-a368-a70b-f5ae-52b81ea7ec84\"},{\"name\":\"name\",\"value\":\"MGwkOg4YCJ.json\"}]"
],
[
"<16 seconds ago> ",
"2018-11-14T11:16:47.552Z c6840475-e7fe-11e8-a414-e1dc09892db1 Attempting to write 39852 into slot 19."
],
[
"<16 seconds ago> ",
"2018-11-14T11:16:47.648Z c6ad5e57-e7fe-11e8-bdf6-13e03433e97c labels=[{\"name\":\"projectId\",\"value\":\"nySla2yA\"},{\"name\":\"name\",\"value\":\"IMybRJWWPG.json\"}]"
],
[
"<16 seconds ago> ",
"2018-11-14T11:16:47.648Z c6ad5e57-e7fe-11e8-bdf6-13e03433e97c Attempting to write 25030 into slot 12."
],
[
"<16 seconds ago> ",
"2018-11-14T11:16:47.714Z c6b83369-e7fe-11e8-b4f1-7f93d8c0152d labels=[{\"name\":\"projectId\",\"value\":\"nySla2yA\"},{\"name\":\"name\",\"value\":\"XD5OEX1p8w.json\"}]"
],
[
"<16 seconds ago> ",
"2018-11-14T11:16:47.714Z c6b83369-e7fe-11e8-b4f1-7f93d8c0152d Attempting to write 25030 into slot 12."
],
[
"<16 seconds ago> ",
"2018-11-14T11:16:47.891Z c6c663e2-e7fe-11e8-add6-4907bfc71739 labels=[{\"name\":\"projectId\",\"value\":\"NyXN7ywxkHRUI7EiKyOM\"},{\"name\":\"name\",\"value\":\"1MZfSzdWNw.json\"}]"
],
[
"<16 seconds ago> ",
"2018-11-14T11:16:47.891Z c6c663e2-e7fe-11e8-add6-4907bfc71739 Attempting to write 18424 into slot 9."
],
[
"<16 seconds ago> ",
"2018-11-14T11:16:47.966Z c6e117eb-e7fe-11e8-a793-ad984bdc55b0 labels=[{\"name\":\"projectId\",\"value\":\"NyXN7ywxkHRUI7EiKyOM\"},{\"name\":\"name\",\"value\":\"OzxnJUVq76.json\"}]"
],
[
"<16 seconds ago> ",
"2018-11-14T11:16:47.966Z c6e117eb-e7fe-11e8-a793-ad984bdc55b0 Attempting to write 18352 into slot 9."
],
[
"<16 seconds ago> ",
"2018-11-14T11:16:48.056Z c6ef48b6-e7fe-11e8-9c58-c5f3ab72de93 labels=[{\"name\":\"projectId\",\"value\":\"WyRAcBgl\"},{\"name\":\"name\",\"value\":\"WFsiNiTutt.json\"}]"
],
[
"<16 seconds ago> ",
"2018-11-14T11:16:48.056Z c6ef48b6-e7fe-11e8-9c58-c5f3ab72de93 Attempting to write 7154 into slot 3."
],
[
"<16 seconds ago> ",
"2018-11-14T11:16:48.140Z c6fbcc97-e7fe-11e8-bb79-6b17c341ae67 labels=[{\"name\":\"projectId\",\"value\":\"NyXN7ywxkHRUI7EiKyOM\"},{\"name\":\"name\",\"value\":\"KlrFsQ6t68.json\"}]"
],
[
"<16 seconds ago> ",
"2018-11-14T11:16:48.141Z c6fbcc97-e7fe-11e8-bb79-6b17c341ae67 Attempting to write 9935 into slot 4."
],
[
"<15 seconds ago> ",
"2018-11-14T11:16:48.860Z c764ee45-e7fe-11e8-8688-cf6b19c9e9ef labels=[{\"name\":\"projectId\",\"value\":\"uMdV228A\"},{\"name\":\"name\",\"value\":\"ELG8nADcnk.json\"}]"
],
[
"<15 seconds ago> ",
"2018-11-14T11:16:48.860Z c764ee45-e7fe-11e8-8688-cf6b19c9e9ef Attempting to write 16741 into slot 8."
],
[
"<15 seconds ago> ",
"2018-11-14T11:16:48.922Z c7569612-e7fe-11e8-84c8-abf1581a35ec labels=[{\"name\":\"projectId\",\"value\":\"g3emlsB4\"},{\"name\":\"name\",\"value\":\"7jSbkLs3yv.json\"}]"
],
[
"<15 seconds ago> ",
"2018-11-14T11:16:48.922Z c7569612-e7fe-11e8-84c8-abf1581a35ec Attempting to write 34033 into slot 17."
],
[
"<14 seconds ago> ",
"2018-11-14T11:16:49.178Z c798cfbb-e7fe-11e8-b225-498dc3ca1f0e labels=[{\"name\":\"projectId\",\"value\":\"NetApp_16f9014d-a368-a70b-f5ae-52b81ea7ec84\"},{\"name\":\"name\",\"value\":\"mdYgwXD3oQ.json\"}]"
],
[
"<14 seconds ago> ",
"2018-11-14T11:16:49.178Z c798cfbb-e7fe-11e8-b225-498dc3ca1f0e Attempting to write 24397 into slot 12."
],
[
"<14 seconds ago> ",
"2018-11-14T11:16:49.326Z c7ae52ea-e7fe-11e8-92e7-45ed72c95d0a labels=[{\"name\":\"projectId\",\"value\":\"NetApp_16f9014d-a368-a70b-f5ae-52b81ea7ec84\"},{\"name\":\"name\",\"value\":\"YmKeZ14NGC.json\"}]"
],
[
"<14 seconds ago> ",
"2018-11-14T11:16:49.326Z c7ae52ea-e7fe-11e8-92e7-45ed72c95d0a Attempting to write 7358 into slot 3."
],
[
"<14 seconds ago> ",
"2018-11-14T11:16:49.526Z c7c9a38f-e7fe-11e8-9bd5-9bedd62b2288 labels=[{\"name\":\"projectId\",\"value\":\"NetApp_16f9014d-a368-a70b-f5ae-52b81ea7ec84\"},{\"name\":\"name\",\"value\":\"RLDPAN4eoD.json\"}]"
],
[
"<14 seconds ago> ",
"2018-11-14T11:16:49.526Z c7c9a38f-e7fe-11e8-9bd5-9bedd62b2288 Attempting to write 19554 into slot 9."
],
[
"<14 seconds ago> ",
"2018-11-14T11:16:49.565Z c7d4c6da-e7fe-11e8-8bd8-71e4b84074c2 labels=[{\"name\":\"projectId\",\"value\":\"NetApp_16f9014d-a368-a70b-f5ae-52b81ea7ec84\"},{\"name\":\"name\",\"value\":\"APgTZ7gl3b.json\"}]"
],
[
"<14 seconds ago> ",
"2018-11-14T11:16:49.565Z c7d4c6da-e7fe-11e8-8bd8-71e4b84074c2 Attempting to write 7874 into slot 3."
],
[
"<14 seconds ago> ",
"2018-11-14T11:16:49.687Z c7e6a177-e7fe-11e8-a012-9ff36fc5c54c labels=[{\"name\":\"projectId\",\"value\":\"NetApp_16f9014d-a368-a70b-f5ae-52b81ea7ec84\"},{\"name\":\"name\",\"value\":\"l28UcBPErd.json\"}]"
],
[
"<14 seconds ago> ",
"2018-11-14T11:16:49.687Z c7e6a177-e7fe-11e8-a012-9ff36fc5c54c Attempting to write 17102 into slot 8."
],
[
"<14 seconds ago> ",
"2018-11-14T11:16:49.798Z c7f8c9ca-e7fe-11e8-8fdb-1d554c4dce72 labels=[{\"name\":\"projectId\",\"value\":\"nySla2yA\"},{\"name\":\"name\",\"value\":\"4NubmrNhTu.json\"}]"
],
[
"<14 seconds ago> ",
"2018-11-14T11:16:49.798Z c7f8c9ca-e7fe-11e8-8fdb-1d554c4dce72 Attempting to write 6549 into slot 3."
],
[
"<14 seconds ago> ",
"2018-11-14T11:16:49.927Z c808cee9-e7fe-11e8-84c8-abf1581a35ec labels=[{\"name\":\"projectId\",\"value\":\"NetApp_16f9014d-a368-a70b-f5ae-52b81ea7ec84\"},{\"name\":\"name\",\"value\":\"xzFJz4g65v.json\"}]"
],
[
"<14 seconds ago> ",
"2018-11-14T11:16:49.927Z c808cee9-e7fe-11e8-84c8-abf1581a35ec Attempting to write 8151 into slot 4."
],
[
"<14 seconds ago> ",
"2018-11-14T11:16:50.014Z c818fb75-e7fe-11e8-8cda-bbcb32495124 labels=[{\"name\":\"projectId\",\"value\":\"NyXN7ywxkHRUI7EiKyOM\"},{\"name\":\"name\",\"value\":\"Oe3jC8Kq6f.json\"}]"
],
[
"<14 seconds ago> ",
"2018-11-14T11:16:50.014Z c818fb75-e7fe-11e8-8cda-bbcb32495124 Attempting to write 8075 into slot 4."
],
[
"<11 seconds ago> ",
"2018-11-14T11:16:52.241Z c96be145-e7fe-11e8-90ac-e1f5b0d3ea70 labels=[{\"name\":\"projectId\",\"value\":\"MPCVUyMA\"},{\"name\":\"name\",\"value\":\"jQhoTphfcR.json\"}]"
],
[
"<11 seconds ago> ",
"2018-11-14T11:16:52.241Z c96be145-e7fe-11e8-90ac-e1f5b0d3ea70 Attempting to write 15075 into slot 7."
],
[
"<11 seconds ago> ",
"2018-11-14T11:16:52.899Z c9cf8527-e7fe-11e8-9bf8-1f741ec6e625 labels=[{\"name\":\"projectId\",\"value\":\"WyRAcBgl\"},{\"name\":\"name\",\"value\":\"yiFkmaFZ7i.json\"}]"
],
[
"<11 seconds ago> ",
"2018-11-14T11:16:52.899Z c9cf8527-e7fe-11e8-9bf8-1f741ec6e625 Attempting to write 6784 into slot 3."
],
[
"<11 seconds ago> ",
"2018-11-14T11:16:52.954Z c9d94963-e7fe-11e8-92dd-076a296a99fc labels=[{\"name\":\"projectId\",\"value\":\"IQt58HozXFrPgBKwVB3K\"},{\"name\":\"name\",\"value\":\"H0LeDYduPN.json\"}]"
],
[
"<11 seconds ago> ",
"2018-11-14T11:16:52.954Z c9d94963-e7fe-11e8-92dd-076a296a99fc Attempting to write 7258 into slot 3."
],
[
"<10 seconds ago> ",
"2018-11-14T11:16:53.188Z c9fd4c3c-e7fe-11e8-af15-7d8084e7a00d labels=[{\"name\":\"projectId\",\"value\":\"nySla2yA\"},{\"name\":\"name\",\"value\":\"1GwRDzMDvp.json\"}]"
],
[
"<10 seconds ago> ",
"2018-11-14T11:16:53.188Z c9fd4c3c-e7fe-11e8-af15-7d8084e7a00d Attempting to write 5397 into slot 2."
],
[
"<10 seconds ago> ",
"2018-11-14T11:16:53.304Z ca1085e8-e7fe-11e8-9bc0-6b9bae60b843 labels=[{\"name\":\"projectId\",\"value\":\"IQt58HozXFrPgBKwVB3K\"},{\"name\":\"name\",\"value\":\"CNgKjlsetu.json\"}]"
],
[
"<10 seconds ago> ",
"2018-11-14T11:16:53.304Z ca1085e8-e7fe-11e8-9bc0-6b9bae60b843 Attempting to write 7258 into slot 3."
],
[
"<9 seconds ago> ",
"2018-11-14T11:16:54.642Z caac028b-e7fe-11e8-bf66-5d6f0343f95f labels=[{\"name\":\"projectId\",\"value\":\"NetApp_16f9014d-a368-a70b-f5ae-52b81ea7ec84\"},{\"name\":\"name\",\"value\":\"eFDloblS6u.json\"}]"
],
[
"<9 seconds ago> ",
"2018-11-14T11:16:54.642Z caac028b-e7fe-11e8-bf66-5d6f0343f95f Attempting to write 29305 into slot 14."
],
[
"<9 seconds ago> ",
"2018-11-14T11:16:54.769Z cae00ac8-e7fe-11e8-89b1-a507a51f79a5 labels=[{\"name\":\"projectId\",\"value\":\"NetApp_16f9014d-a368-a70b-f5ae-52b81ea7ec84\"},{\"name\":\"name\",\"value\":\"gdZhfbiQLs.json\"}]"
],
[
"<9 seconds ago> ",
"2018-11-14T11:16:54.769Z cae00ac8-e7fe-11e8-89b1-a507a51f79a5 Attempting to write 25255 into slot 12."
],
[
"<9 seconds ago> ",
"2018-11-14T11:16:54.911Z cb03c01b-e7fe-11e8-b0aa-dfc04d5d5b68 labels=[{\"name\":\"projectId\",\"value\":\"NetApp_16f9014d-a368-a70b-f5ae-52b81ea7ec84\"},{\"name\":\"name\",\"value\":\"aJodZtdj9R.json\"}]"
],
[
"<9 seconds ago> ",
"2018-11-14T11:16:54.912Z cb03c01b-e7fe-11e8-b0aa-dfc04d5d5b68 Attempting to write 17014 into slot 8."
],
[
"<8 seconds ago> ",
"2018-11-14T11:16:55.367Z cb492dae-e7fe-11e8-98f2-27b068c4ece2 labels=[{\"name\":\"projectId\",\"value\":\"NetApp_16f9014d-a368-a70b-f5ae-52b81ea7ec84\"},{\"name\":\"name\",\"value\":\"PLW7lXZzxb.json\"}]"
],
[
"<8 seconds ago> ",
"2018-11-14T11:16:55.368Z cb492dae-e7fe-11e8-98f2-27b068c4ece2 Attempting to write 21227 into slot 10."
],
[
"<8 seconds ago> ",
"2018-11-14T11:16:55.461Z cb590bbc-e7fe-11e8-9e2e-87a6f0930449 labels=[{\"name\":\"projectId\",\"value\":\"WyRAcBgl\"},{\"name\":\"name\",\"value\":\"aiu4gOpCyy.json\"}]"
],
[
"<8 seconds ago> ",
"2018-11-14T11:16:55.462Z cb590bbc-e7fe-11e8-9e2e-87a6f0930449 Attempting to write 7893 into slot 3."
],
[
"<8 seconds ago> ",
"2018-11-14T11:16:55.750Z cb84d6bc-e7fe-11e8-929b-6df229e942a7 labels=[{\"name\":\"projectId\",\"value\":\"nySla2yA\"},{\"name\":\"name\",\"value\":\"c9nUuPgBb7.json\"}]"
],
[
"<8 seconds ago> ",
"2018-11-14T11:16:55.750Z cb84d6bc-e7fe-11e8-929b-6df229e942a7 Attempting to write 4933 into slot 2."
],
[
"<8 seconds ago> ",
"2018-11-14T11:16:55.864Z cb95c65b-e7fe-11e8-8a6a-7f6e9dc85f74 labels=[{\"name\":\"projectId\",\"value\":\"MPCVUyMA\"},{\"name\":\"name\",\"value\":\"X7HsiVJ3lA.json\"}]"
],
[
"<8 seconds ago> ",
"2018-11-14T11:16:55.865Z cb95c65b-e7fe-11e8-8a6a-7f6e9dc85f74 Attempting to write 14594 into slot 7."
],
[
"<8 seconds ago> ",
"2018-11-14T11:16:55.904Z cb8217f9-e7fe-11e8-bcf8-79ff440ba434 labels=[{\"name\":\"projectId\",\"value\":\"NyXN7ywxkHRUI7EiKyOM\"},{\"name\":\"name\",\"value\":\"3RfQc8w4PC.json\"}]"
],
[
"<8 seconds ago> ",
"2018-11-14T11:16:55.905Z cb8217f9-e7fe-11e8-bcf8-79ff440ba434 Attempting to write 29550 into slot 14."
],
[
"<8 seconds ago> ",
"2018-11-14T11:16:55.980Z cb87e3fe-e7fe-11e8-a126-0fa32490ca03 labels=[{\"name\":\"projectId\",\"value\":\"NetApp_16f9014d-a368-a70b-f5ae-52b81ea7ec84\"},{\"name\":\"name\",\"value\":\"6NyRvatL3F.json\"}]"
],
[
"<8 seconds ago> ",
"2018-11-14T11:16:55.981Z cb87e3fe-e7fe-11e8-a126-0fa32490ca03 Attempting to write 29089 into slot 14."
],
[
"<8 seconds ago> ",
"2018-11-14T11:16:56.130Z cbb6bbad-e7fe-11e8-abba-e1151c38acbc labels=[{\"name\":\"projectId\",\"value\":\"NetApp_16f9014d-a368-a70b-f5ae-52b81ea7ec84\"},{\"name\":\"name\",\"value\":\"P451yfWNsb.json\"}]"
],
[
"<8 seconds ago> ",
"2018-11-14T11:16:56.130Z cbb6bbad-e7fe-11e8-abba-e1151c38acbc Attempting to write 19580 into slot 9."
],
[
"<7 seconds ago> ",
"2018-11-14T11:16:56.275Z cbd4cb09-e7fe-11e8-b225-498dc3ca1f0e labels=[{\"name\":\"projectId\",\"value\":\"cB7UMNPtKeoQYOQthbi2\"},{\"name\":\"name\",\"value\":\"TKwkqFkCIy.json\"}]"
],
[
"<7 seconds ago> ",
"2018-11-14T11:16:56.275Z cbd4cb09-e7fe-11e8-b225-498dc3ca1f0e Attempting to write 5245 into slot 2."
],
[
"<7 seconds ago> ",
"2018-11-14T11:16:56.435Z cbedf8df-e7fe-11e8-b41b-571455bd42d1 labels=[{\"name\":\"projectId\",\"value\":\"nySla2yA\"},{\"name\":\"name\",\"value\":\"45E7WYiePQ.json\"}]"
],
[
"<7 seconds ago> ",
"2018-11-14T11:16:56.435Z cbedf8df-e7fe-11e8-b41b-571455bd42d1 Attempting to write 6512 into slot 3."
],
[
"<7 seconds ago> ",
"2018-11-14T11:16:56.488Z cbe8a1e5-e7fe-11e8-b24a-692267b9f5b9 labels=[{\"name\":\"projectId\",\"value\":\"uMdV228A\"},{\"name\":\"name\",\"value\":\"XhtBylZkid.json\"}]"
],
[
"<7 seconds ago> ",
"2018-11-14T11:16:56.488Z cbe8a1e5-e7fe-11e8-b24a-692267b9f5b9 Attempting to write 14924 into slot 7."
],
[
"<7 seconds ago> ",
"2018-11-14T11:16:56.742Z cc1a6054-e7fe-11e8-86d0-05bf4eec7366 labels=[{\"name\":\"projectId\",\"value\":\"IQt58HozXFrPgBKwVB3K\"},{\"name\":\"name\",\"value\":\"EMxC1AXGZx.json\"}]"
],
[
"<7 seconds ago> ",
"2018-11-14T11:16:56.742Z cc1a6054-e7fe-11e8-86d0-05bf4eec7366 Attempting to write 7795 into slot 3."
],
[
"<7 seconds ago> ",
"2018-11-14T11:16:56.923Z cc378547-e7fe-11e8-8249-dd6596a51fdf labels=[{\"name\":\"projectId\",\"value\":\"uMdV228A\"},{\"name\":\"name\",\"value\":\"iNDHcWGrLW.json\"}]"
],
[
"<7 seconds ago> ",
"2018-11-14T11:16:56.923Z cc378547-e7fe-11e8-8249-dd6596a51fdf Attempting to write 16731 into slot 8."
]
]
2018-11-14T11:21:30.681Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T11:21:30.682Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T11:21:30.682Z [main] silly: Executing: tsc --outDir "/tmp/packager-6f6b9b80-e7ff-11e8-b04a-8b072517b088/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T11:21:31.552Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T11:21:32.079Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T11:21:32.080Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T11:21:32.080Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T11:21:32.080Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T11:21:32.080Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T11:21:32.080Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:21:32.080Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T11:21:32.080Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T11:21:32.080Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T11:21:32.080Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T11:21:32.080Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T11:21:32.080Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T11:21:32.080Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T11:21:32.080Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T11:21:32.080Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T11:21:32.080Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:21:32.080Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T11:21:32.080Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T11:21:32.080Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T11:21:32.080Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:21:32.080Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T11:21:32.080Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T11:21:32.080Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T11:21:32.080Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T11:21:32.080Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:21:32.080Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T11:21:32.080Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T11:21:32.080Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T11:21:32.080Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:21:32.081Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T11:21:32.081Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T11:21:32.081Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T11:21:32.081Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T11:21:32.081Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T11:21:32.081Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T11:21:32.081Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T11:21:32.081Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T11:21:32.081Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T11:21:32.081Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T11:21:32.081Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T11:21:32.081Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T11:21:32.081Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T11:21:32.081Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T11:21:32.081Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T11:21:32.081Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T11:21:32.081Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T11:21:32.081Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T11:21:32.081Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T11:21:32.081Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T11:21:32.081Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T11:21:32.777Z [main] info: Shipping rig prod-major to eu-central-1
2018-11-14T11:21:32.778Z [main] silly: Packing src/store/compute into build
2018-11-14T11:21:32.778Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-14T11:21:32.778Z [main] silly: Executing: tsc --outDir "/tmp/packager-70abbca0-e7ff-11e8-b04a-8b072517b088/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/store/compute"
2018-11-14T11:21:36.063Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/store/compute
2018-11-14T11:21:36.620Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T11:21:36.620Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T11:21:36.620Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T11:21:36.620Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T11:21:36.685Z [main] info: Pushing code: store
2018-11-14T11:21:36.732Z [main] silly: Packing src/support/errorSink into build
2018-11-14T11:21:36.732Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-14T11:21:36.732Z [main] silly: Executing: tsc --outDir "/tmp/packager-730711c0-e7ff-11e8-b04a-8b072517b088/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink"
2018-11-14T11:21:37.635Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/errorSink
2018-11-14T11:21:38.154Z [main] info: Pushing code: errorSink
2018-11-14T11:21:38.155Z [main] silly: Packing src/support/trafficStatsSink into build
2018-11-14T11:21:38.155Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-14T11:21:38.155Z [main] silly: Executing: tsc --outDir "/tmp/packager-73e033b0-e7ff-11e8-b04a-8b072517b088/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink"
2018-11-14T11:21:41.436Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/trafficStatsSink
2018-11-14T11:21:41.987Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T11:21:41.987Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T11:21:41.987Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T11:21:42.059Z [main] info: Pushing code: trafficStatsSink
2018-11-14T11:21:42.117Z [main] silly: Packing src/support/percentileCalculator into build
2018-11-14T11:21:42.118Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator
2018-11-14T11:21:42.118Z [main] silly: Executing: tsc --outDir "/tmp/packager-763cc150-e7ff-11e8-b04a-8b072517b088/build" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator"
2018-11-14T11:21:45.400Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/src/support/percentileCalculator
2018-11-14T11:21:45.948Z [main] info: Pushing code: percentileCalculator
2018-11-14T11:22:00.527Z [main] silly: Fingerprint comparsion:
6b0185d99edc5db9f9e21cfe6b01cfe547ea026c4fc8dd674f9eec16bc0edc38
6b0185d99edc5db9f9e21cfe6b01cfe547ea026c4fc8dd674f9eec16bc0edc38
2018-11-14T11:22:00.527Z [main] info: No stack changes
2018-11-14T11:22:01.458Z [main] info: Rig prod-major shipped.
2018-11-14T11:22:32.440Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T11:22:32.441Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T11:22:32.441Z [main] silly: Executing: tsc --outDir "/tmp/packager-943b4870-e7ff-11e8-87a7-f9e5b88158d0/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T11:22:33.380Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T11:22:33.929Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T11:22:33.930Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T11:22:33.930Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T11:22:33.930Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T11:22:33.930Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T11:22:33.930Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:22:33.930Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T11:22:33.930Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T11:22:33.930Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T11:22:33.930Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T11:22:33.930Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T11:22:33.930Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T11:22:33.930Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T11:22:33.930Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T11:22:33.930Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T11:22:33.930Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:22:33.930Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T11:22:33.930Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T11:22:33.930Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T11:22:33.930Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:22:33.930Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T11:22:33.930Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T11:22:33.930Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T11:22:33.930Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T11:22:33.930Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:22:33.930Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T11:22:33.930Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T11:22:33.931Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T11:22:33.931Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:22:33.931Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T11:22:33.931Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T11:22:33.931Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T11:22:33.931Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T11:22:33.931Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T11:22:33.931Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T11:22:33.931Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T11:22:33.931Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T11:22:33.931Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T11:22:33.931Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T11:22:33.931Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T11:22:33.931Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T11:22:33.931Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T11:22:33.931Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T11:22:33.931Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T11:22:33.931Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T11:22:33.931Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T11:22:33.931Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T11:22:33.931Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T11:22:33.931Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T11:22:33.931Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T11:22:35.620Z [main] info: []
2018-11-14T11:22:37.058Z [main] silly: Packing a.servicemix.ts into spec_compiled
2018-11-14T11:22:37.059Z [main] silly: Compiling /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T11:22:37.059Z [main] silly: Executing: tsc --outDir "/tmp/packager-96fbef10-e7ff-11e8-8f87-d51603b9d311/spec_compiled" --preserveConstEnums --strictNullChecks --sourceMap --target es2015 --module commonjs --allowJs --checkJs false --lib es2015 --rootDir "/home/imaman/code/data-platform/metric-machine/backend" "/home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts"
2018-11-14T11:22:37.991Z [main] silly: Packing dependencies of /home/imaman/code/data-platform/metric-machine/backend/a.servicemix.ts
2018-11-14T11:22:38.578Z [main] silly: Comparing ieee754: 1.1.8 with 1.1.8
2018-11-14T11:22:38.578Z [main] silly: Comparing querystring: 0.2.0 with 0.2.0
2018-11-14T11:22:38.578Z [main] silly: Comparing sax: 1.2.1 with 1.2.1
2018-11-14T11:22:38.578Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T11:22:38.578Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T11:22:38.578Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:22:38.578Z [main] silly: Comparing typescript: 3.0.3 with 3.0.3
2018-11-14T11:22:38.578Z [main] silly: Comparing uuid: 3.1.0 with 3.1.0
2018-11-14T11:22:38.578Z [main] silly: Comparing color-name: 1.1.3 with 1.1.3
2018-11-14T11:22:38.578Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T11:22:38.578Z [main] silly: Comparing triple-beam: 1.3.0 with 1.3.0
2018-11-14T11:22:38.578Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T11:22:38.578Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T11:22:38.578Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T11:22:38.578Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T11:22:38.578Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:22:38.578Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T11:22:38.579Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T11:22:38.579Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T11:22:38.579Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:22:38.579Z [main] silly: Comparing readable-stream: 2.3.6 with 2.3.6
2018-11-14T11:22:38.579Z [main] silly: Comparing core-util-is: 1.0.2 with 1.0.2
2018-11-14T11:22:38.579Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T11:22:38.579Z [main] silly: Comparing isarray: 1.0.0 with 1.0.0
2018-11-14T11:22:38.579Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:22:38.579Z [main] silly: Comparing util-deprecate: 1.0.2 with 1.0.2
2018-11-14T11:22:38.579Z [main] silly: Comparing process-nextick-args: 1.0.7 with 1.0.7
2018-11-14T11:22:38.579Z [main] silly: Comparing string_decoder: 1.1.1 with 1.1.1
2018-11-14T11:22:38.579Z [main] silly: Comparing safe-buffer: 5.1.2 with 5.1.2
2018-11-14T11:22:38.579Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T11:22:38.579Z [main] silly: Comparing inherits: 2.0.3 with 2.0.3
2018-11-14T11:22:38.579Z [main] silly: Comparing once: 1.4.0 with 1.4.0
2018-11-14T11:22:38.579Z [main] silly: Comparing wrappy: 1.0.2 with 1.0.2
2018-11-14T11:22:38.579Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T11:22:38.579Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T11:22:38.579Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T11:22:38.579Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T11:22:38.579Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T11:22:38.579Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T11:22:38.579Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T11:22:38.579Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T11:22:38.579Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T11:22:38.579Z [main] silly: Comparing semver: 5.5.0 with 5.5.0
2018-11-14T11:22:38.579Z [main] silly: Comparing is-stream: 1.1.0 with 1.1.0
2018-11-14T11:22:38.579Z [main] silly: Comparing path-key: 2.0.1 with 2.0.1
2018-11-14T11:22:38.579Z [main] silly: Comparing string-width: 2.1.1 with 2.1.1
2018-11-14T11:22:38.580Z [main] silly: Comparing is-fullwidth-code-point: 1.0.0 with 1.0.0
2018-11-14T11:22:38.580Z [main] silly: Comparing number-is-nan: 1.0.1 with 1.0.1
2018-11-14T11:22:38.580Z [main] silly: Comparing strip-ansi: 3.0.1 with 3.0.1
2018-11-14T11:22:38.580Z [main] silly: Comparing ansi-regex: 3.0.0 with 3.0.0
2018-11-14T11:22:42.398Z [main] info: [
[
"<22 seconds ago> ",
"2018-11-14T11:22:20.301Z 8caced8c-e7ff-11e8-8588-b54b8357aec3 event={\"labels\":[{\"name\":\"projectId\",\"value\":\"NetApp_16f9014d-a368-a70b-f5ae-52b81ea7ec84\"},{\"name\":\"name\",\"value\":\"IPYyEI06E6.json\"}],\"metricName\":\"uploader_object\",\"blob\":{\"4e61ed88-ca9c-2ae5-e866-586fad2137a6\":{\"elementLocatorResults\":[{\"className\":\"ElementLocatorResult\",\"locatorIndex\":0,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"24\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"24\",\"score\":1}],\"foundParentsIds\":[],\"displayName\":\"Body\",\"displayValue\":\"true\",\"chosenParent\":\"\",\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":1,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"25\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"25\",\"score\":0.9}],\"foundParentsIds\":[\"24\"],\"displayName\":\"Id\",\"displayValue\":\"mainContainer\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"25\",\"score\":0.1}],\"foundParentsIds\":[\"24\"],\"displayName\":\"Index\",\"displayValue\":\"1/12 from top\",\"chosenParent\":0,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":2,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"33\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"33\",\"score\":0.9}],\"foundParentsIds\":[\"25\"],\"displayName\":\"Text\",\"displayValue\":\"Cloud Manager\",\"chosenParent\":1,\"time\":3},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"33\",\"score\":0.5}],\"foundParentsIds\":[\"25\"],\"displayName\":\"Class\",\"displayValue\":\"title\",\"chosenParent\":1,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":3,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"28\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"28\",\"score\":0.1}],\"foundParentsIds\":[\"25\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":1,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"28\",\"score\":1}],\"foundParentsIds\":[\"33\"],\"displayName\":\"child\",\"displayValue\":\"Text=Cloud Manager\",\"chosenParent\":2,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":4,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"58\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"58\",\"score\":0.5}],\"foundParentsIds\":[\"24\",\"25\",\"28\"],\"displayName\":\"Class\",\"displayValue\":\"layout\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"58\",\"score\":0.5}],\"foundParentsIds\":[\"24\",\"25\",\"28\"],\"displayName\":\"Class\",\"displayValue\":\"tabs-layout\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"58\",\"score\":0.5}],\"foundParentsIds\":[\"24\",\"25\",\"28\"],\"displayName\":\"ng-class\",\"displayValue\":\"{blur: tutorial.show}\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"58\",\"score\":0.1}],\"foundParentsIds\":[\"28\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":3,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":5,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"109\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"109\",\"score\":0.5}],\"foundParentsIds\":[\"24\",\"25\",\"28\",\"58\"],\"displayName\":\"Class\",\"displayValue\":\"layout-content-holder\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"109\",\"score\":0.1}],\"foundParentsIds\":[\"58\"],\"displayName\":\"Index\",\"displayValue\":\"3/3 from top\",\"chosenParent\":4,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":6,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"111\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"111\",\"score\":0.5}],\"foundParentsIds\":[\"24\",\"25\",\"28\",\"58\",\"109\"],\"displayName\":\"Class\",\"displayValue\":\"tab-sub-view\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"111\",\"score\":0.1}],\"foundParentsIds\":[\"109\"],\"displayName\":\"Index\",\"displayValue\":\"2/3 from top\",\"chosenParent\":5,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":7,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"116\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"116\",\"score\":0.9}],\"foundParentsIds\":[\"111\"],\"displayName\":\"Text\",\"displayValue\":\"Working Environments\",\"chosenParent\":6,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"116\",\"score\":0.3}],\"foundParentsIds\":[\"111\"],\"displayName\":\"Tag\",\"displayValue\":\"H1\",\"chosenParent\":6,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":8,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"112\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"112\",\"score\":0.1}],\"foundParentsIds\":[\"111\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":6,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"112\",\"score\":1}],\"foundParentsIds\":[\"116\"],\"displayName\":\"child\",\"displayValue\":\"Text=Working Environments\",\"chosenParent\":7,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":9,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"113\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"113\",\"score\":0.9}],\"foundParentsIds\":[\"24\",\"25\",\"28\",\"58\",\"109\",\"111\",\"112\"],\"displayName\":\"Id\",\"displayValue\":\"working-environmentsTab\",\"chosenParent\":0,\"time\":2},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"113\",\"score\":0.3}],\"foundParentsIds\":[\"112\"],\"displayName\":\"Tag\",\"displayValue\":\"UI-VIEW\",\"chosenParent\":8,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"113\",\"score\":0.1}],\"foundParentsIds\":[\"112\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":8,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":10,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"114\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"114\",\"score\":0.5}],\"foundParentsIds\":[\"24\",\"25\",\"28\",\"58\",\"109\",\"111\",\"112\",\"113\"],\"displayName\":\"ng-if\",\"displayValue\":\"workingEnvironments\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"114\",\"score\":0.5}],\"foundParentsIds\":[\"24\",\"25\",\"28\",\"58\",\"109\",\"111\",\"112\",\"113\"],\"displayName\":\"Class\",\"displayValue\":\"data-fabric\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"114\",\"score\":0.1}],\"foundParentsIds\":[\"113\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":9,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":11,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"123\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"123\",\"score\":0.15}],\"foundParentsIds\":[\"24\",\"25\",\"28\",\"58\",\"109\",\"111\",\"112\",\"113\",\"114\"],\"displayName\":\"ng-if\",\"displayValue\":\"workingEnvironments.length === 0\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"123\",\"score\":0.5}],\"foundParentsIds\":[\"24\",\"25\",\"28\",\"58\",\"109\",\"111\",\"112\",\"113\",\"114\"],\"displayName\":\"Class\",\"displayValue\":\"no-we\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"123\",\"score\":0.1}],\"foundParentsIds\":[\"114\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":10,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":12,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"130\",\"frameId\":null,\"isTargetElement\":true,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"130\",\"score\":0.5}],\"foundParentsIds\":[\"24\",\"25\",\"28\",\"58\",\"109\",\"111\",\"112\",\"113\",\"114\",\"123\"],\"displayName\":\"Class\",\"displayValue\":\"create\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"130\",\"score\":0.5}],\"foundParentsIds\":[\"24\",\"25\",\"28\",\"58\",\"109\",\"111\",\"112\",\"113\",\"114\",\"123\"],\"displayName\":\"Class\",\"displayValue\":\"save\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"130\",\"score\":0.5}],\"foundParentsIds\":[\"24\",\"25\",\"28\",\"58\",\"109\",\"111\",\"112\",\"113\",\"114\",\"123\"],\"displayName\":\"ng-click\",\"displayValue\":\"gotoCreateWE()\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"130\",\"score\":0.9}],\"foundParentsIds\":[\"24\",\"25\",\"28\",\"58\",\"109\",\"111\",\"112\",\"113\",\"114\",\"123\"],\"displayName\":\"Text\",\"displayValue\":\"Create\",\"chosenParent\":0,\"time\":9},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"130\",\"score\":0.3}],\"foundParentsIds\":[\"109\",\"111\",\"112\",\"113\",\"114\",\"123\"],\"displayName\":\"Tag\",\"displayValue\":\"BUTTON\",\"chosenParent\":5,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"130\",\"score\":0.1}],\"foundParentsIds\":[\"123\"],\"displayName\":\"Index\",\"displayValue\":\"3/3 from top\",\"chosenParent\":11,\"time\":0}]}],\"href\":\"chrome-extension://pebeiooilphfmbohdbhbomomkkoghoia/_generated_background_page.html\",\"totalRuntime\":21,\"frameId\":null,\"dynamicParentData\":null}},\"metricValue\":9479}"
],
[
"<22 seconds ago> ",
"2018-11-14T11:22:20.302Z 8caced8c-e7ff-11e8-8588-b54b8357aec3 Attempting to write 9479 into slot 4."
],
[
"<22 seconds ago> ",
"2018-11-14T11:22:20.495Z 8d0d8487-e7ff-11e8-b19f-899ad29f22ba event={\"labels\":[{\"name\":\"projectId\",\"value\":\"NetApp_16f9014d-a368-a70b-f5ae-52b81ea7ec84\"},{\"name\":\"name\",\"value\":\"ssLJEZm0tc.json\"}],\"metricName\":\"uploader_object\",\"blob\":{\"AsFoHi1wly\":{\"elementLocatorResults\":[{\"className\":\"ElementLocatorResult\",\"locatorIndex\":0,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"100\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"100\",\"score\":1}],\"foundParentsIds\":[],\"displayName\":\"Body\",\"displayValue\":\"true\",\"chosenParent\":\"\",\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":1,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"101\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"101\",\"score\":0.8}],\"foundParentsIds\":[\"100\"],\"displayName\":\"Id\",\"displayValue\":\"mainContainer\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"101\",\"score\":0.1}],\"foundParentsIds\":[\"100\"],\"displayName\":\"Index\",\"displayValue\":\"1/18 from top\",\"chosenParent\":0,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":2,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"109\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"109\",\"score\":0.9}],\"foundParentsIds\":[\"101\"],\"displayName\":\"Text\",\"displayValue\":\"Cloud Manager\",\"chosenParent\":1,\"time\":3}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":3,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"104\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"104\",\"score\":0.1}],\"foundParentsIds\":[\"101\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":1,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"104\",\"score\":1}],\"foundParentsIds\":[\"109\"],\"displayName\":\"child\",\"displayValue\":\"Text=Cloud Manager\",\"chosenParent\":2,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":4,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"134\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"134\",\"score\":0.5}],\"foundParentsIds\":[\"100\",\"101\",\"104\"],\"displayName\":\"Class\",\"displayValue\":\"layout\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"134\",\"score\":0.5}],\"foundParentsIds\":[\"100\",\"101\",\"104\"],\"displayName\":\"Class\",\"displayValue\":\"tabs-layout\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"134\",\"score\":0.5}],\"foundParentsIds\":[\"100\",\"101\",\"104\"],\"displayName\":\"ng-class\",\"displayValue\":\"{blur: tutorial.show}\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"134\",\"score\":0.1}],\"foundParentsIds\":[\"104\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":3,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":5,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"185\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"185\",\"score\":0.5}],\"foundParentsIds\":[\"100\",\"101\",\"104\",\"134\"],\"displayName\":\"Class\",\"displayValue\":\"layout-content-holder\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"185\",\"score\":0.1}],\"foundParentsIds\":[\"134\"],\"displayName\":\"Index\",\"displayValue\":\"3/3 from top\",\"chosenParent\":4,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":6,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"187\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"187\",\"score\":0.5}],\"foundParentsIds\":[\"100\",\"101\",\"104\",\"134\",\"185\"],\"displayName\":\"Class\",\"displayValue\":\"tab-sub-view\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"187\",\"score\":0.1}],\"foundParentsIds\":[\"185\"],\"displayName\":\"Index\",\"displayValue\":\"2/3 from top\",\"chosenParent\":5,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":7,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"199\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"199\",\"score\":0.9}],\"foundParentsIds\":[\"187\"],\"displayName\":\"Text\",\"displayValue\":\" Add Working Environment\",\"chosenParent\":6,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"199\",\"score\":0.5}],\"foundParentsIds\":[\"187\"],\"displayName\":\"ng-click\",\"displayValue\":\"gotoCreateWE()\",\"chosenParent\":6,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"199\",\"score\":0.5}],\"foundParentsIds\":[\"187\"],\"displayName\":\"Class\",\"displayValue\":\"add-environment\",\"chosenParent\":6,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"199\",\"score\":0.5}],\"foundParentsIds\":[\"187\"],\"displayName\":\"accesskey\",\"displayValue\":\"n\",\"chosenParent\":6,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"199\",\"score\":0.5}],\"foundParentsIds\":[\"187\"],\"displayName\":\"title\",\"displayValue\":\"Add Working Environment\",\"chosenParent\":6,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"199\",\"score\":0.15}],\"foundParentsIds\":[\"187\"],\"displayName\":\"tabindex\",\"displayValue\":\"0\",\"chosenParent\":6,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":8,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"188\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"188\",\"score\":0.1}],\"foundParentsIds\":[\"187\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":6,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"188\",\"score\":1}],\"foundParentsIds\":[\"199\"],\"displayName\":\"child\",\"displayValue\":\"Text= Add Working Environment\",\"chosenParent\":7,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":9,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"189\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"189\",\"score\":0.8}],\"foundParentsIds\":[\"100\",\"101\",\"104\",\"134\",\"185\",\"187\",\"188\"],\"displayName\":\"Id\",\"displayValue\":\"working-environmentsTab\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"189\",\"score\":0.3}],\"foundParentsIds\":[\"188\"],\"displayName\":\"Tag\",\"displayValue\":\"UI-VIEW\",\"chosenParent\":8,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"189\",\"score\":0.1}],\"foundParentsIds\":[\"188\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":8,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":10,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"190\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"190\",\"score\":0.5}],\"foundParentsIds\":[\"100\",\"101\",\"104\",\"134\",\"185\",\"187\",\"188\",\"189\"],\"displayName\":\"ng-if\",\"displayValue\":\"workingEnvironments\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"190\",\"score\":0.5}],\"foundParentsIds\":[\"100\",\"101\",\"104\",\"134\",\"185\",\"187\",\"188\",\"189\"],\"displayName\":\"Class\",\"displayValue\":\"data-fabric\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"190\",\"score\":0.1}],\"foundParentsIds\":[\"189\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":9,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":11,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"191\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"191\",\"score\":0.5}],\"foundParentsIds\":[\"100\",\"101\",\"104\",\"134\",\"185\",\"187\",\"188\",\"189\",\"190\"],\"displayName\":\"Class\",\"displayValue\":\"title-header-overlay\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"191\",\"score\":0.1}],\"foundParentsIds\":[\"190\"],\"displayName\":\"Index\",\"displayValue\":\"1/4 from top\",\"chosenParent\":10,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":12,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"192\",\"frameId\":null,\"isTargetElement\":true,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"192\",\"score\":0.9}],\"foundParentsIds\":[\"185\",\"187\",\"188\",\"189\",\"190\",\"191\"],\"displayName\":\"Text\",\"displayValue\":\"Working Environments\",\"chosenParent\":5,\"time\":49},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"192\",\"score\":0.3}],\"foundParentsIds\":[\"185\",\"187\",\"188\",\"189\",\"190\",\"191\"],\"displayName\":\"Tag\",\"displayValue\":\"H1\",\"chosenParent\":5,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"192\",\"score\":0.1}],\"foundParentsIds\":[\"191\"],\"displayName\":\"Index\",\"displayValue\":\"1/2 from top\",\"chosenParent\":11,\"time\":1}]}],\"href\":\"chrome-extension://pebeiooilphfmbohdbhbomomkkoghoia/_generated_background_page.html\",\"totalRuntime\":60,\"frameId\":null,\"dynamicParentData\":null}},\"metricValue\":9141}"
],
[
"<22 seconds ago> ",
"2018-11-14T11:22:20.495Z 8d0d8487-e7ff-11e8-b19f-899ad29f22ba Attempting to write 9141 into slot 4."
],
[
"<22 seconds ago> ",
"2018-11-14T11:22:20.787Z 8d418c09-e7ff-11e8-8a6a-7f6e9dc85f74 event={\"labels\":[{\"name\":\"projectId\",\"value\":\"WyRAcBgl\"},{\"name\":\"name\",\"value\":\"cxFmw8EfNi.json\"}],\"metricName\":\"uploader_object\",\"blob\":{\"lRuBwbG4rP\":{\"elementLocatorResults\":[{\"className\":\"ElementLocatorResult\",\"locatorIndex\":0,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"120\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"120\",\"score\":1}],\"foundParentsIds\":[],\"displayName\":\"Body\",\"displayValue\":\"true\",\"chosenParent\":\"\",\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":1,\"score\":\"0.07\",\"foundElementScore\":0.25,\"foundElementID\":\"935\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":-1,\"score\":0.3}],\"foundParentsIds\":[\"120\"],\"displayName\":\"Id\",\"displayValue\":\"ember711\",\"chosenParent\":\"\",\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"935\",\"score\":0.1}],\"foundParentsIds\":[\"120\"],\"displayName\":\"Index\",\"displayValue\":\"10/11 from top\",\"chosenParent\":0,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":2,\"score\":\"0.99\",\"foundElementScore\":0.9946442234123949,\"foundElementID\":\"129\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"129\",\"score\":0.8}],\"foundParentsIds\":[\"120\",\"935\"],\"displayName\":\"Id\",\"displayValue\":\"application\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"129\",\"score\":0.5}],\"foundParentsIds\":[\"120\",\"935\"],\"displayName\":\"lang\",\"displayValue\":\"en\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"936\",\"score\":0.007000000000000001}],\"foundParentsIds\":[\"935\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":1,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":3,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"130\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"130\",\"score\":0.5}],\"foundParentsIds\":[\"120\",\"935\",\"129\"],\"displayName\":\"Class\",\"displayValue\":\"rows\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"130\",\"score\":0.099}],\"foundParentsIds\":[\"129\"],\"displayName\":\"Index\",\"displayValue\":\"1/3 from top\",\"chosenParent\":2,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":4,\"score\":\"0.58\",\"foundElementScore\":0.5789473684210527,\"foundElementID\":\"139\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":-1,\"score\":0.8}],\"foundParentsIds\":[\"120\",\"935\",\"129\",\"130\"],\"displayName\":\"Id\",\"displayValue\":\"datasets\",\"chosenParent\":\"\",\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"139\",\"score\":0.5}],\"foundParentsIds\":[\"120\",\"935\",\"129\",\"130\"],\"displayName\":\"Class\",\"displayValue\":\"from-one\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"139\",\"score\":0.5}],\"foundParentsIds\":[\"120\",\"935\",\"129\",\"130\"],\"displayName\":\"Class\",\"displayValue\":\"main\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"139\",\"score\":0.1}],\"foundParentsIds\":[\"130\"],\"displayName\":\"Index\",\"displayValue\":\"2/3 from top\",\"chosenParent\":3,\"time\":1}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":5,\"score\":\"0.03\",\"foundElementScore\":0.06759906759906759,\"foundElementID\":\"140\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":-1,\"score\":0.8}],\"foundParentsIds\":[\"120\",\"935\",\"129\",\"130\",\"139\"],\"displayName\":\"Id\",\"displayValue\":\"datasets-main\",\"chosenParent\":\"\",\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"140\",\"score\":0.057999999999999996}],\"foundParentsIds\":[\"139\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":4,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":6,\"score\":\"0.99\",\"foundElementScore\":0.9940357852882704,\"foundElementID\":\"140\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"140\",\"score\":0.5}],\"foundParentsIds\":[\"120\",\"935\",\"129\",\"130\",\"139\",\"140\"],\"displayName\":\"Class\",\"displayValue\":\"container\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"141\",\"score\":0.003}],\"foundParentsIds\":[\"140\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":5,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":7,\"score\":\"0.83\",\"foundElementScore\":0.8347245409015025,\"foundElementID\":\"154\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"154\",\"score\":0.5}],\"foundParentsIds\":[\"120\",\"935\",\"129\",\"130\",\"139\",\"140\",\"140\"],\"displayName\":\"Class\",\"displayValue\":\"searchable-table-wrapper\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"141\",\"score\":0.099}],\"foundParentsIds\":[\"140\"],\"displayName\":\"Index\",\"displayValue\":\"3/3 from top\",\"chosenParent\":6,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":8,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"155\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"155\",\"score\":0.5}],\"foundParentsIds\":[\"120\",\"935\",\"129\",\"130\",\"139\",\"140\",\"140\",\"154\"],\"displayName\":\"Class\",\"displayValue\":\"searchable-table\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"155\",\"score\":0.083}],\"foundParentsIds\":[\"154\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":7,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":9,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"160\",\"frameId\":null,\"isTargetElement\":true,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"160\",\"score\":0.5}],\"foundParentsIds\":[\"120\",\"935\",\"129\",\"130\",\"139\",\"140\",\"140\",\"154\",\"155\"],\"displayName\":\"placeholder\",\"displayValue\":\"Enter some keywords\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"160\",\"score\":0.5}],\"foundParentsIds\":[\"120\",\"935\",\"129\",\"130\",\"139\",\"140\",\"140\",\"154\",\"155\"],\"displayName\":\"type\",\"displayValue\":\"text\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"160\",\"score\":0.5}],\"foundParentsIds\":[\"120\",\"935\",\"129\",\"130\",\"139\",\"140\",\"140\",\"154\",\"155\"],\"displayName\":\"Class\",\"displayValue\":\"search\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"160\",\"score\":0.5}],\"foundParentsIds\":[\"120\",\"935\",\"129\",\"130\",\"139\",\"140\",\"140\",\"154\",\"155\"],\"displayName\":\"Class\",\"displayValue\":\"ember-text-field\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"160\",\"score\":0.3}],\"foundParentsIds\":[\"154\",\"155\"],\"displayName\":\"Tag\",\"displayValue\":\"INPUT\",\"chosenParent\":8,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"160\",\"score\":0.1}],\"foundParentsIds\":[\"155\"],\"displayName\":\"Index\",\"displayValue\":\"2/3 from top\",\"chosenParent\":8,\"time\":0}]}],\"href\":\"chrome-extension://pebeiooilphfmbohdbhbomomkkoghoia/_generated_background_page.html\",\"totalRuntime\":4,\"frameId\":null,\"dynamicParentData\":null}},\"metricValue\":7406}"
],
[
"<22 seconds ago> ",
"2018-11-14T11:22:20.787Z 8d418c09-e7ff-11e8-8a6a-7f6e9dc85f74 Attempting to write 7406 into slot 3."
],
[
"<21 seconds ago> ",
"2018-11-14T11:22:20.893Z 8d4f964d-e7ff-11e8-8826-53e018d40372 event={\"labels\":[{\"name\":\"projectId\",\"value\":\"XWZa2vb5\"},{\"name\":\"name\",\"value\":\"PVOzRsWwYY.json\"}],\"metricName\":\"uploader_object\",\"blob\":{\"a2kpi8Qkzi\":{\"elementLocatorResults\":[{\"className\":\"ElementLocatorResult\",\"locatorIndex\":0,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"44\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"44\",\"score\":1}],\"foundParentsIds\":[],\"displayName\":\"Body\",\"displayValue\":\"true\",\"chosenParent\":\"\",\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":1,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"1863\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1863\",\"score\":0.8}],\"foundParentsIds\":[\"44\"],\"displayName\":\"Id\",\"displayValue\":\"content\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1863\",\"score\":0.1}],\"foundParentsIds\":[\"44\"],\"displayName\":\"Index\",\"displayValue\":\"2/15 from top\",\"chosenParent\":0,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":2,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"1864\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1864\",\"score\":0.5}],\"foundParentsIds\":[\"44\",\"1863\"],\"displayName\":\"Class\",\"displayValue\":\"main\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1864\",\"score\":0.1}],\"foundParentsIds\":[\"1863\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":1,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":3,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"1913\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1913\",\"score\":0.5}],\"foundParentsIds\":[\"44\",\"1863\",\"1864\"],\"displayName\":\"Class\",\"displayValue\":\"en-container\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1913\",\"score\":0.1}],\"foundParentsIds\":[\"1864\"],\"displayName\":\"Index\",\"displayValue\":\"6/6 from top\",\"chosenParent\":2,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":4,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"1914\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1914\",\"score\":0.5}],\"foundParentsIds\":[\"44\",\"1863\",\"1864\",\"1913\"],\"displayName\":\"Class\",\"displayValue\":\"en-main-content\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1914\",\"score\":0.1}],\"foundParentsIds\":[\"1913\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":3,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":5,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2085\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2085\",\"score\":0.5}],\"foundParentsIds\":[\"44\",\"1863\",\"1864\",\"1913\",\"1914\"],\"displayName\":\"Class\",\"displayValue\":\"en-content\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2085\",\"score\":0.1}],\"foundParentsIds\":[\"1914\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":4,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":6,\"score\":\"0.68\",\"foundElementScore\":0.6818181818181818,\"foundElementID\":\"2106\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2106\",\"score\":0.5}],\"foundParentsIds\":[\"44\",\"1863\",\"1864\",\"1913\",\"1914\",\"2085\"],\"displayName\":\"Class\",\"displayValue\":\"analytics-canvas\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2086\",\"score\":0.25},{\"id\":\"2106\",\"score\":0.25}],\"foundParentsIds\":[\"44\",\"1863\",\"1864\",\"1913\",\"1914\",\"2085\"],\"displayName\":\"Class\",\"displayValue\":\"en-canvas\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2086\",\"score\":0.1}],\"foundParentsIds\":[\"2085\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":5,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":7,\"score\":\"0.68\",\"foundElementScore\":1,\"foundElementID\":\"2309\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2309\",\"score\":0.34}],\"foundParentsIds\":[\"2106\"],\"displayName\":\"Class\",\"displayValue\":\"analytics-section__most-engaged\",\"chosenParent\":6,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":8,\"score\":\"0.68\",\"foundElementScore\":1,\"foundElementID\":\"2107\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2107\",\"score\":0.068}],\"foundParentsIds\":[\"2106\"],\"displayName\":\"Index\",\"displayValue\":\"3/5 from top\",\"chosenParent\":6,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2107\",\"score\":0.68}],\"foundParentsIds\":[\"2309\"],\"displayName\":\"child\",\"displayValue\":\"Class=analytics-section__most-engaged\",\"chosenParent\":7,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":9,\"score\":\"0.11\",\"foundElementScore\":0.16666666666666666,\"foundElementID\":\"2108\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2109\",\"score\":0.05666666666666667},{\"id\":\"2188\",\"score\":0.05666666666666667},{\"id\":\"2200\",\"score\":0.05666666666666667},{\"id\":\"2302\",\"score\":0.05666666666666667},{\"id\":\"2709\",\"score\":0.05666666666666667},{\"id\":\"2809\",\"score\":0.05666666666666667}],\"foundParentsIds\":[\"2107\"],\"displayName\":\"Class\",\"displayValue\":\"en-canvas-section-heading\",\"chosenParent\":8,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2108\",\"score\":0.068}],\"foundParentsIds\":[\"2107\"],\"displayName\":\"Index\",\"displayValue\":\"1/2 from top\",\"chosenParent\":8,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":10,\"score\":\"0.99\",\"foundElementScore\":0.9879253567508233,\"foundElementID\":\"2303\",\"frameId\":null,\"isTargetElement\":true,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2303\",\"score\":0.9}],\"foundParentsIds\":[\"44\",\"1863\",\"1864\",\"1913\",\"1914\",\"2085\",\"2106\",\"2107\",\"2108\"],\"displayName\":\"Text\",\"displayValue\":\"Most Engaged Accounts\",\"chosenParent\":0,\"time\":494},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2109\",\"score\":0.011000000000000001}],\"foundParentsIds\":[\"2108\"],\"displayName\":\"Index\",\"displayValue\":\"1/3 from top\",\"chosenParent\":9,\"time\":0}]}],\"href\":\"chrome-extension://pebeiooilphfmbohdbhbomomkkoghoia/_generated_background_page.html\",\"totalRuntime\":497,\"frameId\":null,\"dynamicParentData\":null}},\"metricValue\":6672}"
],
[
"<21 seconds ago> ",
"2018-11-14T11:22:20.893Z 8d4f964d-e7ff-11e8-8826-53e018d40372 Attempting to write 6672 into slot 3."
],
[
"<21 seconds ago> ",
"2018-11-14T11:22:20.946Z 8d58e4d1-e7ff-11e8-9706-43409810d311 event={\"labels\":[{\"name\":\"projectId\",\"value\":\"nxJ73JWP7Cj8WO34mOHe\"},{\"name\":\"name\",\"value\":\"fFTYvnmATH.json\"}],\"metricName\":\"uploader_object\",\"blob\":{\"qxWlQUkAIb\":{\"elementLocatorResults\":[{\"className\":\"ElementLocatorResult\",\"locatorIndex\":0,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"189\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"189\",\"score\":1}],\"foundParentsIds\":[],\"displayName\":\"Body\",\"displayValue\":\"true\",\"chosenParent\":\"\",\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":1,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"7750\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7750\",\"score\":0.5}],\"foundParentsIds\":[\"189\"],\"displayName\":\"Class\",\"displayValue\":\"_4nCZ\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7750\",\"score\":0.5}],\"foundParentsIds\":[\"189\"],\"displayName\":\"Class\",\"displayValue\":\"full-page-form__container\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7750\",\"score\":0.5}],\"foundParentsIds\":[\"189\"],\"displayName\":\"Class\",\"displayValue\":\"full-page-form-container\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7750\",\"score\":0.5}],\"foundParentsIds\":[\"189\"],\"displayName\":\"Class\",\"displayValue\":\"_2Vjj\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7750\",\"score\":0.5}],\"foundParentsIds\":[\"189\"],\"displayName\":\"Class\",\"displayValue\":\"_76AP\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7750\",\"score\":0.5}],\"foundParentsIds\":[\"189\"],\"displayName\":\"Class\",\"displayValue\":\"_3vdX\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7750\",\"score\":0.1}],\"foundParentsIds\":[\"189\"],\"displayName\":\"Index\",\"displayValue\":\"15/15 from top\",\"chosenParent\":0,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":2,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"7756\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7756\",\"score\":0.5}],\"foundParentsIds\":[\"189\",\"7750\"],\"displayName\":\"Class\",\"displayValue\":\"_2tD_\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7756\",\"score\":0.1}],\"foundParentsIds\":[\"7750\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":1,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":3,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"7757\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7757\",\"score\":0.5}],\"foundParentsIds\":[\"189\",\"7750\",\"7756\"],\"displayName\":\"Class\",\"displayValue\":\"new-target-builder-wrapper\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7757\",\"score\":0.5}],\"foundParentsIds\":[\"189\",\"7750\",\"7756\"],\"displayName\":\"Class\",\"displayValue\":\"sh-full\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7757\",\"score\":0.5}],\"foundParentsIds\":[\"189\",\"7750\",\"7756\"],\"displayName\":\"Class\",\"displayValue\":\"hideSummary\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7757\",\"score\":0.1}],\"foundParentsIds\":[\"7756\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":2,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":4,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"7758\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7758\",\"score\":0.5}],\"foundParentsIds\":[\"189\",\"7750\",\"7756\",\"7757\"],\"displayName\":\"Class\",\"displayValue\":\"new-tar-wrapper\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7758\",\"score\":0.5}],\"foundParentsIds\":[\"189\",\"7750\",\"7756\",\"7757\"],\"displayName\":\"Class\",\"displayValue\":\"new-tar-wrapper__withoutFooter\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7758\",\"score\":0.1}],\"foundParentsIds\":[\"7757\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":3,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":5,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"7759\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7759\",\"score\":0.5}],\"foundParentsIds\":[\"7750\",\"7756\",\"7757\",\"7758\"],\"displayName\":\"Class\",\"displayValue\":\"p-a-0\",\"chosenParent\":1,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7759\",\"score\":0.5}],\"foundParentsIds\":[\"189\",\"7750\",\"7756\",\"7757\",\"7758\"],\"displayName\":\"Class\",\"displayValue\":\"form-container\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7759\",\"score\":0.1}],\"foundParentsIds\":[\"7758\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":4,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":6,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"7760\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7760\",\"score\":0.5}],\"foundParentsIds\":[\"189\",\"7750\",\"7756\",\"7757\",\"7758\",\"7759\"],\"displayName\":\"Class\",\"displayValue\":\"bdr-r-chk\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7760\",\"score\":0.5}],\"foundParentsIds\":[\"189\",\"7750\",\"7756\",\"7757\",\"7758\",\"7759\"],\"displayName\":\"Class\",\"displayValue\":\"leftContainer\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7760\",\"score\":0.2}],\"foundParentsIds\":[\"7750\",\"7756\",\"7757\",\"7758\",\"7759\"],\"displayName\":\"Style\",\"displayValue\":\"position: relative\",\"chosenParent\":1,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7760\",\"score\":0.2}],\"foundParentsIds\":[\"189\",\"7750\",\"7756\",\"7757\",\"7758\",\"7759\"],\"displayName\":\"Style\",\"displayValue\":\" user-select: auto\",\"chosenParent\":0,\"time\":2},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7760\",\"score\":0.2}],\"foundParentsIds\":[\"189\",\"7750\",\"7756\",\"7757\",\"7758\",\"7759\"],\"displayName\":\"Style\",\"displayValue\":\" width: 50%\",\"chosenParent\":0,\"time\":3},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7760\",\"score\":0.2}],\"foundParentsIds\":[\"189\",\"7750\",\"7756\",\"7757\",\"7758\",\"7759\"],\"displayName\":\"Style\",\"displayValue\":\" height: auto\",\"chosenParent\":0,\"time\":3},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7760\",\"score\":0.2}],\"foundParentsIds\":[\"189\",\"7750\",\"7756\",\"7757\",\"7758\",\"7759\"],\"displayName\":\"Style\",\"displayValue\":\" box-sizing: border-box\",\"chosenParent\":0,\"time\":3},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7760\",\"score\":0.1}],\"foundParentsIds\":[\"7759\"],\"displayName\":\"Index\",\"displayValue\":\"1/3 from top\",\"chosenParent\":5,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":7,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"7761\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7761\",\"score\":0.5}],\"foundParentsIds\":[\"7760\"],\"displayName\":\"Class\",\"displayValue\":\"ovf-y-auto\",\"chosenParent\":6,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7761\",\"score\":0.5}],\"foundParentsIds\":[\"7760\"],\"displayName\":\"Class\",\"displayValue\":\"m-a-0\",\"chosenParent\":6,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7761\",\"score\":0.5}],\"foundParentsIds\":[\"189\",\"7750\",\"7756\",\"7757\",\"7758\",\"7759\",\"7760\"],\"displayName\":\"Class\",\"displayValue\":\"inline-targeting-wrapper\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7761\",\"score\":0.1}],\"foundParentsIds\":[\"7760\"],\"displayName\":\"Index\",\"displayValue\":\"1/2 from top\",\"chosenParent\":6,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":8,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"7762\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7762\",\"score\":0.5}],\"foundParentsIds\":[\"189\",\"7750\",\"7756\",\"7757\",\"7758\",\"7759\",\"7760\",\"7761\"],\"displayName\":\"Class\",\"displayValue\":\"tar-creator-wrapper\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7762\",\"score\":0.5}],\"foundParentsIds\":[\"7760\",\"7761\"],\"displayName\":\"Class\",\"displayValue\":\"ovf-y-hidden\",\"chosenParent\":6,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7762\",\"score\":0.1}],\"foundParentsIds\":[\"7761\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":7,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":9,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"7763\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7763\",\"score\":0.5}],\"foundParentsIds\":[\"189\",\"7750\",\"7756\",\"7757\",\"7758\",\"7759\",\"7760\",\"7761\",\"7762\"],\"displayName\":\"Class\",\"displayValue\":\"tar-creator\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7763\",\"score\":0.1}],\"foundParentsIds\":[\"7762\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":8,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":10,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"7801\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7801\",\"score\":0.5}],\"foundParentsIds\":[\"189\",\"7750\",\"7756\",\"7757\",\"7758\",\"7759\",\"7760\",\"7761\",\"7762\",\"7763\"],\"displayName\":\"Class\",\"displayValue\":\"baseTargetingWrapper\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7801\",\"score\":0.5}],\"foundParentsIds\":[\"189\",\"7750\",\"7756\",\"7757\",\"7758\",\"7759\",\"7760\",\"7761\",\"7762\",\"7763\"],\"displayName\":\"Class\",\"displayValue\":\"inline-base-targeting-wrapper\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7801\",\"score\":0.1}],\"foundParentsIds\":[\"7763\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":9,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":11,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"7802\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7802\",\"score\":0.5}],\"foundParentsIds\":[\"189\",\"7750\",\"7756\",\"7757\",\"7758\",\"7759\",\"7760\",\"7761\",\"7762\",\"7763\",\"7801\"],\"displayName\":\"Class\",\"displayValue\":\"baseTargetingWrapper__body\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7802\",\"score\":0.5}],\"foundParentsIds\":[\"189\",\"7750\",\"7756\",\"7757\",\"7758\",\"7759\",\"7760\",\"7761\",\"7762\",\"7763\",\"7801\"],\"displayName\":\"Class\",\"displayValue\":\"baseTargetingWrapper__withoutHeader\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7802\",\"score\":0.1}],\"foundParentsIds\":[\"7801\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":10,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":12,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"7803\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7803\",\"score\":0.5}],\"foundParentsIds\":[\"189\",\"7750\",\"7756\",\"7757\",\"7758\",\"7759\",\"7760\",\"7761\",\"7762\",\"7763\",\"7801\",\"7802\"],\"displayName\":\"Class\",\"displayValue\":\"targeting__ctn\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"7803\",\"score\":0.1}],\"foundParentsIds\":[\"7802\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":11,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":13,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"8904\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"8904\",\"score\":0.5}],\"foundParentsIds\":[\"189\",\"7750\",\"7756\",\"7757\",\"7758\",\"7759\",\"7760\",\"7761\",\"7762\",\"7763\",\"7801\",\"7802\",\"7803\"],\"displayName\":\"Class\",\"displayValue\":\"_1ih9\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"8904\",\"score\":0.5}],\"foundParentsIds\":[\"189\",\"7750\",\"7756\",\"7757\",\"7758\",\"7759\",\"7760\",\"7761\",\"7762\",\"7763\",\"7801\",\"7802\",\"7803\"],\"displayName\":\"Class\",\"displayValue\":\"targeting-footer\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"8904\",\"score\":0.5}],\"foundParentsIds\":[\"189\",\"7750\",\"7756\",\"7757\",\"7758\",\"7759\",\"7760\",\"7761\",\"7762\",\"7763\",\"7801\",\"7802\",\"7803\"],\"displayName\":\"data-entityid\",\"displayValue\":\"Form_Footer\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"8904\",\"score\":0.1}],\"foundParentsIds\":[\"7803\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":12,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":14,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"8905\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"8905\",\"score\":0.5}],\"foundParentsIds\":[\"8904\"],\"displayName\":\"Class\",\"displayValue\":\"full-height\",\"chosenParent\":13,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"8905\",\"score\":0.6}],\"foundParentsIds\":[\"8904\"],\"displayName\":\"Content\",\"displayValue\":\"CancelAdd Selected\",\"chosenParent\":13,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"8905\",\"score\":0.1}],\"foundParentsIds\":[\"8904\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":13,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":15,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"8907\",\"frameId\":null,\"isTargetElement\":true,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"8907\",\"score\":0.5}],\"foundParentsIds\":[\"7750\",\"7756\",\"7757\",\"7758\",\"7759\",\"7760\",\"7761\",\"7762\",\"7763\",\"7801\",\"7802\",\"7803\",\"8904\",\"8905\"],\"displayName\":\"Class\",\"displayValue\":\"btn-primary\",\"chosenParent\":1,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"8907\",\"score\":0.5}],\"foundParentsIds\":[\"189\",\"7750\",\"7756\",\"7757\",\"7758\",\"7759\",\"7760\",\"7761\",\"7762\",\"7763\",\"7801\",\"7802\",\"7803\",\"8904\",\"8905\"],\"displayName\":\"data-entity\",\"displayValue\":\"nac_save_new_targeting\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"8907\",\"score\":0.9}],\"foundParentsIds\":[\"189\",\"7750\",\"7756\",\"7757\",\"7758\",\"7759\",\"7760\",\"7761\",\"7762\",\"7763\",\"7801\",\"7802\",\"7803\",\"8904\",\"8905\"],\"displayName\":\"Text\",\"displayValue\":\"Add Selected\",\"chosenParent\":0,\"time\":56},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"8907\",\"score\":0.1}],\"foundParentsIds\":[\"8905\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":14,\"time\":0}]}],\"href\":\"chrome-extension://pebeiooilphfmbohdbhbomomkkoghoia/_generated_background_page.html\",\"totalRuntime\":78,\"frameId\":null,\"dynamicParentData\":null}},\"metricValue\":15496}"
],
[
"<21 seconds ago> ",
"2018-11-14T11:22:20.946Z 8d58e4d1-e7ff-11e8-9706-43409810d311 Attempting to write 15496 into slot 7."
],
[
"<21 seconds ago> ",
"2018-11-14T11:22:21.085Z 8d6a718a-e7ff-11e8-a544-9bcad5e81699 event={\"labels\":[{\"name\":\"projectId\",\"value\":\"XWZa2vb5\"},{\"name\":\"name\",\"value\":\"997LaQyvWQ.json\"}],\"metricName\":\"uploader_object\",\"blob\":{\"Yz5LKxsmqd\":{\"elementLocatorResults\":[{\"className\":\"ElementLocatorResult\",\"locatorIndex\":0,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"50\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"50\",\"score\":1}],\"foundParentsIds\":[],\"displayName\":\"Body\",\"displayValue\":\"true\",\"chosenParent\":\"\",\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":1,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"1869\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1869\",\"score\":0.9}],\"foundParentsIds\":[\"50\"],\"displayName\":\"Id\",\"displayValue\":\"content\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1869\",\"score\":0.1}],\"foundParentsIds\":[\"50\"],\"displayName\":\"Index\",\"displayValue\":\"2/10 from top\",\"chosenParent\":0,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":2,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"1870\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1870\",\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\"],\"displayName\":\"Class\",\"displayValue\":\"main\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1870\",\"score\":0.1}],\"foundParentsIds\":[\"1869\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":1,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":3,\"score\":\"0.91\",\"foundElementScore\":0.9090909090909091,\"foundElementID\":\"2093\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2093\",\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\"],\"displayName\":\"Class\",\"displayValue\":\"context-bar\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2093\",\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\"],\"displayName\":\"Class\",\"displayValue\":\"en-header\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1919\",\"score\":0.1}],\"foundParentsIds\":[\"1870\"],\"displayName\":\"Index\",\"displayValue\":\"5/6 from top\",\"chosenParent\":2,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":4,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2094\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2094\",\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"2093\"],\"displayName\":\"Class\",\"displayValue\":\"context-bar-content\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2094\",\"score\":0.09100000000000001}],\"foundParentsIds\":[\"2093\"],\"displayName\":\"Index\",\"displayValue\":\"2/3 from top\",\"chosenParent\":3,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":5,\"score\":\"0.83\",\"foundElementScore\":0.8333333333333334,\"foundElementID\":\"2095\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2095\",\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"2093\",\"2094\"],\"displayName\":\"Class\",\"displayValue\":\"en-nav-top\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2155\",\"score\":0.1}],\"foundParentsIds\":[\"2094\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":4,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":6,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2096\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2096\",\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"2093\",\"2094\",\"2095\"],\"displayName\":\"Class\",\"displayValue\":\"en-nav-top-view\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2096\",\"score\":0.083}],\"foundParentsIds\":[\"2095\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":5,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":7,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2097\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2097\",\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"2093\",\"2094\",\"2095\",\"2096\"],\"displayName\":\"Class\",\"displayValue\":\"context-bar-title-wrapper\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2097\",\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"2093\",\"2094\",\"2095\",\"2096\"],\"displayName\":\"Class\",\"displayValue\":\"analytics-context-bar-wrapper\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2097\",\"score\":0.9}],\"foundParentsIds\":[\"2095\",\"2096\"],\"displayName\":\"Text\",\"displayValue\":\"Accounts\",\"chosenParent\":6,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2097\",\"score\":0.1}],\"foundParentsIds\":[\"2096\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":6,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":8,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2098\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2098\",\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"2093\",\"2094\",\"2095\",\"2096\",\"2097\"],\"displayName\":\"Class\",\"displayValue\":\"analytics-context-bar-context\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2098\",\"score\":0.1}],\"foundParentsIds\":[\"2097\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":7,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":9,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2108\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2108\",\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\"],\"displayName\":\"Class\",\"displayValue\":\"filters-group\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2108\",\"score\":0.1}],\"foundParentsIds\":[\"2098\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":8,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":10,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2109\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2109\",\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\"],\"displayName\":\"Class\",\"displayValue\":\"filters-dropdown\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2109\",\"score\":0.1}],\"foundParentsIds\":[\"2108\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":9,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":11,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2110\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2110\",\"score\":0.5}],\"foundParentsIds\":[\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\"],\"displayName\":\"Class\",\"displayValue\":\"gio-combo-box\",\"chosenParent\":6,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2110\",\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\"],\"displayName\":\"Class\",\"displayValue\":\"gio-combo-box-sm\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2110\",\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\"],\"displayName\":\"Class\",\"displayValue\":\"gio-combo-box-toggle-left\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2110\",\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\"],\"displayName\":\"Class\",\"displayValue\":\"gio-combo-box--open-left\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2110\",\"score\":0.1}],\"foundParentsIds\":[\"2109\"],\"displayName\":\"Index\",\"displayValue\":\"1/2 from top\",\"chosenParent\":10,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":12,\"score\":\"0.84\",\"foundElementScore\":0.8387096774193549,\"foundElementID\":\"2111\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2111\",\"score\":0.5}],\"foundParentsIds\":[\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\"],\"displayName\":\"Class\",\"displayValue\":\"Select\",\"chosenParent\":6,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":-1,\"score\":0.5}],\"foundParentsIds\":[\"2110\"],\"displayName\":\"Class\",\"displayValue\":\"saved-filters-dropdown\",\"chosenParent\":\"\",\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2111\",\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\"],\"displayName\":\"Class\",\"displayValue\":\"is-focused\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2111\",\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\"],\"displayName\":\"Class\",\"displayValue\":\"is-open\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2111\",\"score\":0.5}],\"foundParentsIds\":[\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\"],\"displayName\":\"Class\",\"displayValue\":\"is-searchable\",\"chosenParent\":6,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2111\",\"score\":0.5}],\"foundParentsIds\":[\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\"],\"displayName\":\"Class\",\"displayValue\":\"Select--single\",\"chosenParent\":6,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2111\",\"score\":0.1}],\"foundParentsIds\":[\"2110\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":11,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":13,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2119\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2119\",\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\",\"2111\"],\"displayName\":\"Class\",\"displayValue\":\"Select-menu-outer\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2119\",\"score\":0.084}],\"foundParentsIds\":[\"2111\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":12,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":14,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2120\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2120\",\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\",\"2111\",\"2119\"],\"displayName\":\"Class\",\"displayValue\":\"Select-menu\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2120\",\"score\":0.3}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\",\"2111\",\"2119\"],\"displayName\":\"Id\",\"displayValue\":\"react-select-4--list\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2120\",\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\",\"2111\",\"2119\"],\"displayName\":\"role\",\"displayValue\":\"listbox\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2120\",\"score\":0.15}],\"foundParentsIds\":[\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\",\"2111\",\"2119\"],\"displayName\":\"tabindex\",\"displayValue\":\"-1\",\"chosenParent\":4,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2120\",\"score\":0.1}],\"foundParentsIds\":[\"2119\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":13,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":15,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2121\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2121\",\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\",\"2111\",\"2119\",\"2120\"],\"displayName\":\"Class\",\"displayValue\":\"gio-combo-box__menu_container\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2121\",\"score\":0.2}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\",\"2111\",\"2119\",\"2120\"],\"displayName\":\"Style\",\"displayValue\":\"min-width: 400px\",\"chosenParent\":0,\"time\":2},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2121\",\"score\":0.1}],\"foundParentsIds\":[\"2120\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":14,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":16,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2130\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2130\",\"score\":0.5}],\"foundParentsIds\":[\"2121\"],\"displayName\":\"Class\",\"displayValue\":\"resize-triggers\",\"chosenParent\":15,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":17,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2122\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2122\",\"score\":0.1}],\"foundParentsIds\":[\"2121\"],\"displayName\":\"Index\",\"displayValue\":\"1/2 from top\",\"chosenParent\":15,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2122\",\"score\":1}],\"foundParentsIds\":[\"2130\"],\"displayName\":\"child\",\"displayValue\":\"Class=resize-triggers\",\"chosenParent\":16,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":18,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2123\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2123\",\"score\":0.2}],\"foundParentsIds\":[\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\",\"2111\",\"2119\",\"2120\",\"2121\",\"2122\"],\"displayName\":\"Style\",\"displayValue\":\"overflow: visible\",\"chosenParent\":4,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2123\",\"score\":0.2}],\"foundParentsIds\":[\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\",\"2111\",\"2119\",\"2120\",\"2121\",\"2122\"],\"displayName\":\"Style\",\"displayValue\":\" height: 0px\",\"chosenParent\":4,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2123\",\"score\":0.2}],\"foundParentsIds\":[\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\",\"2111\",\"2119\",\"2120\",\"2121\",\"2122\"],\"displayName\":\"Style\",\"displayValue\":\" width: 0px\",\"chosenParent\":4,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2123\",\"score\":0.1}],\"foundParentsIds\":[\"2122\"],\"displayName\":\"Index\",\"displayValue\":\"1/2 from top\",\"chosenParent\":17,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":19,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2124\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2124\",\"score\":0.5}],\"foundParentsIds\":[\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\",\"2111\",\"2119\",\"2120\",\"2121\",\"2122\",\"2123\"],\"displayName\":\"aria-label\",\"displayValue\":\"grid\",\"chosenParent\":4,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2124\",\"score\":0.5}],\"foundParentsIds\":[\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\",\"2111\",\"2119\",\"2120\",\"2121\",\"2122\",\"2123\"],\"displayName\":\"aria-readonly\",\"displayValue\":\"true\",\"chosenParent\":4,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2124\",\"score\":0.5}],\"foundParentsIds\":[\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\",\"2111\",\"2119\",\"2120\",\"2121\",\"2122\",\"2123\"],\"displayName\":\"Class\",\"displayValue\":\"ReactVirtualized__Grid\",\"chosenParent\":4,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2124\",\"score\":0.5}],\"foundParentsIds\":[\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\",\"2111\",\"2119\",\"2120\",\"2121\",\"2122\",\"2123\"],\"displayName\":\"Class\",\"displayValue\":\"ReactVirtualized__List\",\"chosenParent\":4,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2124\",\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\",\"2111\",\"2119\",\"2120\",\"2121\",\"2122\",\"2123\"],\"displayName\":\"Class\",\"displayValue\":\"gio-entry-list\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2124\",\"score\":0.5}],\"foundParentsIds\":[\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\",\"2111\",\"2119\",\"2120\",\"2121\",\"2122\",\"2123\"],\"displayName\":\"role\",\"displayValue\":\"grid\",\"chosenParent\":4,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2124\",\"score\":0.15}],\"foundParentsIds\":[\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\",\"2111\",\"2119\",\"2120\",\"2121\",\"2122\",\"2123\"],\"displayName\":\"tabindex\",\"displayValue\":\"0\",\"chosenParent\":4,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2124\",\"score\":0.2}],\"foundParentsIds\":[\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\",\"2111\",\"2119\",\"2120\",\"2121\",\"2122\",\"2123\"],\"displayName\":\"Style\",\"displayValue\":\"box-sizing: border-box\",\"chosenParent\":4,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2124\",\"score\":0.2}],\"foundParentsIds\":[\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\",\"2111\",\"2119\",\"2120\",\"2121\",\"2122\",\"2123\"],\"displayName\":\"Style\",\"displayValue\":\" direction: ltr\",\"chosenParent\":4,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2124\",\"score\":0.2}],\"foundParentsIds\":[\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\",\"2111\",\"2119\",\"2120\",\"2121\",\"2122\",\"2123\"],\"displayName\":\"Style\",\"displayValue\":\" will-change: transform\",\"chosenParent\":4,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2124\",\"score\":0.1}],\"foundParentsIds\":[\"2123\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":18,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":20,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2125\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2125\",\"score\":0.5}],\"foundParentsIds\":[\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\",\"2111\",\"2119\",\"2120\",\"2121\",\"2122\",\"2123\",\"2124\"],\"displayName\":\"Class\",\"displayValue\":\"ReactVirtualized__Grid__innerScrollContainer\",\"chosenParent\":4,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2125\",\"score\":0.5}],\"foundParentsIds\":[\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\",\"2111\",\"2119\",\"2120\",\"2121\",\"2122\",\"2123\",\"2124\"],\"displayName\":\"role\",\"displayValue\":\"rowgroup\",\"chosenParent\":4,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2125\",\"score\":0.2}],\"foundParentsIds\":[\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\",\"2111\",\"2119\",\"2120\",\"2121\",\"2122\",\"2123\",\"2124\"],\"displayName\":\"Style\",\"displayValue\":\"width: auto\",\"chosenParent\":4,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2125\",\"score\":0.2}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\",\"2111\",\"2119\",\"2120\",\"2121\",\"2122\",\"2123\",\"2124\"],\"displayName\":\"Style\",\"displayValue\":\" max-width: 400px\",\"chosenParent\":0,\"time\":2},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2125\",\"score\":0.2}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\",\"2111\",\"2119\",\"2120\",\"2121\",\"2122\",\"2123\",\"2124\"],\"displayName\":\"Style\",\"displayValue\":\" max-height: 30px\",\"chosenParent\":0,\"time\":2},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2125\",\"score\":0.2}],\"foundParentsIds\":[\"2124\"],\"displayName\":\"Style\",\"displayValue\":\" overflow: hidden\",\"chosenParent\":19,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2125\",\"score\":0.2}],\"foundParentsIds\":[\"2124\"],\"displayName\":\"Style\",\"displayValue\":\" position: relative\",\"chosenParent\":19,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2125\",\"score\":0.1}],\"foundParentsIds\":[\"2124\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":19,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":21,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2126\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2126\",\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\",\"2111\",\"2119\",\"2120\",\"2121\",\"2122\",\"2123\",\"2124\",\"2125\"],\"displayName\":\"Class\",\"displayValue\":\"gio-entry-list__item-wrapper\",\"chosenParent\":0,\"time\":2},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2126\",\"score\":0.2}],\"foundParentsIds\":[\"2125\"],\"displayName\":\"Style\",\"displayValue\":\"height: 30px\",\"chosenParent\":20,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2126\",\"score\":0.2}],\"foundParentsIds\":[\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\",\"2111\",\"2119\",\"2120\",\"2121\",\"2122\",\"2123\",\"2124\",\"2125\"],\"displayName\":\"Style\",\"displayValue\":\" left: 0px\",\"chosenParent\":4,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2126\",\"score\":0.2}],\"foundParentsIds\":[\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\",\"2111\",\"2119\",\"2120\",\"2121\",\"2122\",\"2123\",\"2124\",\"2125\"],\"displayName\":\"Style\",\"displayValue\":\" position: absolute\",\"chosenParent\":4,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2126\",\"score\":0.2}],\"foundParentsIds\":[\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\",\"2111\",\"2119\",\"2120\",\"2121\",\"2122\",\"2123\",\"2124\",\"2125\"],\"displayName\":\"Style\",\"displayValue\":\" top: 0px\",\"chosenParent\":4,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2126\",\"score\":0.2}],\"foundParentsIds\":[\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\",\"2111\",\"2119\",\"2120\",\"2121\",\"2122\",\"2123\",\"2124\",\"2125\"],\"displayName\":\"Style\",\"displayValue\":\" width: 100%\",\"chosenParent\":6,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2126\",\"score\":0.1}],\"foundParentsIds\":[\"2125\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":20,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":22,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2127\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2127\",\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\",\"2111\",\"2119\",\"2120\",\"2121\",\"2122\",\"2123\",\"2124\",\"2125\",\"2126\"],\"displayName\":\"Class\",\"displayValue\":\"gio-combo-box-option\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2127\",\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\",\"2111\",\"2119\",\"2120\",\"2121\",\"2122\",\"2123\",\"2124\",\"2125\",\"2126\"],\"displayName\":\"Class\",\"displayValue\":\"gio-combo-box-option--focus\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2127\",\"score\":0.1}],\"foundParentsIds\":[\"2126\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":21,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":23,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2128\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2128\",\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\",\"2111\",\"2119\",\"2120\",\"2121\",\"2122\",\"2123\",\"2124\",\"2125\",\"2126\",\"2127\"],\"displayName\":\"Class\",\"displayValue\":\"gio-combo-box-entry\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2128\",\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\",\"2111\",\"2119\",\"2120\",\"2121\",\"2122\",\"2123\",\"2124\",\"2125\",\"2126\",\"2127\"],\"displayName\":\"title\",\"displayValue\":\"Accounts with No Engagement\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2128\",\"score\":0.1}],\"foundParentsIds\":[\"2127\"],\"displayName\":\"Tag\",\"displayValue\":\"DIV\",\"chosenParent\":22,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2128\",\"score\":0.1}],\"foundParentsIds\":[\"2127\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":22,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":24,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2129\",\"frameId\":null,\"isTargetElement\":true,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2129\",\"score\":0.9}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\",\"2111\",\"2119\",\"2120\",\"2121\",\"2122\",\"2123\",\"2124\",\"2125\",\"2126\",\"2127\",\"2128\"],\"displayName\":\"Text\",\"displayValue\":\"Accounts with No Engagement\",\"chosenParent\":0,\"time\":61},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2129\",\"score\":0.3}],\"foundParentsIds\":[\"2093\",\"2094\",\"2095\",\"2096\",\"2097\",\"2098\",\"2108\",\"2109\",\"2110\",\"2111\",\"2119\",\"2120\",\"2121\",\"2122\",\"2123\",\"2124\",\"2125\",\"2126\",\"2127\",\"2128\"],\"displayName\":\"Tag\",\"displayValue\":\"LABEL\",\"chosenParent\":4,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2129\",\"score\":0.1}],\"foundParentsIds\":[\"2128\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":23,\"time\":0}]}],\"href\":\"chrome-extension://pebeiooilphfmbohdbhbomomkkoghoia/_generated_background_page.html\",\"totalRuntime\":90,\"frameId\":null,\"dynamicParentData\":null}},\"metricValue\":27075}"
],
[
"<21 seconds ago> ",
"2018-11-14T11:22:21.085Z 8d6a718a-e7ff-11e8-a544-9bcad5e81699 Attempting to write 27075 into slot 13."
],
[
"<21 seconds ago> ",
"2018-11-14T11:22:21.233Z 8d83ecdf-e7ff-11e8-bef4-8fb8c0837f88 event={\"labels\":[{\"name\":\"projectId\",\"value\":\"XWZa2vb5\"},{\"name\":\"name\",\"value\":\"NzW8ubJ73R.json\"}],\"metricName\":\"uploader_object\",\"blob\":{\"fS7zu7Dod9\":{\"elementLocatorResults\":[{\"className\":\"ElementLocatorResult\",\"locatorIndex\":0,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"49\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"49\",\"score\":1}],\"foundParentsIds\":[],\"displayName\":\"Body\",\"displayValue\":\"true\",\"chosenParent\":\"\",\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":1,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"1868\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1868\",\"score\":0.8}],\"foundParentsIds\":[\"49\"],\"displayName\":\"Id\",\"displayValue\":\"content\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1868\",\"score\":0.1}],\"foundParentsIds\":[\"49\"],\"displayName\":\"Index\",\"displayValue\":\"2/15 from top\",\"chosenParent\":0,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":2,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"1869\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1869\",\"score\":0.5}],\"foundParentsIds\":[\"49\",\"1868\"],\"displayName\":\"Class\",\"displayValue\":\"main\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1869\",\"score\":0.1}],\"foundParentsIds\":[\"1868\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":1,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":3,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"1918\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1918\",\"score\":0.5}],\"foundParentsIds\":[\"49\",\"1868\",\"1869\"],\"displayName\":\"Class\",\"displayValue\":\"en-container\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1918\",\"score\":0.1}],\"foundParentsIds\":[\"1869\"],\"displayName\":\"Index\",\"displayValue\":\"6/6 from top\",\"chosenParent\":2,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":4,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"1919\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1919\",\"score\":0.5}],\"foundParentsIds\":[\"49\",\"1868\",\"1869\",\"1918\"],\"displayName\":\"Class\",\"displayValue\":\"en-main-content\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1919\",\"score\":0.1}],\"foundParentsIds\":[\"1918\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":3,\"time\":1}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":5,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2090\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2090\",\"score\":0.5}],\"foundParentsIds\":[\"49\",\"1868\",\"1869\",\"1918\",\"1919\"],\"displayName\":\"Class\",\"displayValue\":\"en-content\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2090\",\"score\":0.1}],\"foundParentsIds\":[\"1919\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":4,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":6,\"score\":\"0.68\",\"foundElementScore\":0.6818181818181818,\"foundElementID\":\"2139\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2139\",\"score\":0.5}],\"foundParentsIds\":[\"49\",\"1868\",\"1869\",\"1918\",\"1919\",\"2090\"],\"displayName\":\"Class\",\"displayValue\":\"analytics-canvas\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2091\",\"score\":0.25},{\"id\":\"2139\",\"score\":0.25}],\"foundParentsIds\":[\"49\",\"1868\",\"1869\",\"1918\",\"1919\",\"2090\"],\"displayName\":\"Class\",\"displayValue\":\"en-canvas\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2091\",\"score\":0.1}],\"foundParentsIds\":[\"2090\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":5,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":7,\"score\":\"0.68\",\"foundElementScore\":1,\"foundElementID\":\"2144\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2144\",\"score\":0.6120000000000001}],\"foundParentsIds\":[\"2139\"],\"displayName\":\"Text\",\"displayValue\":\"See how MQAs are defined >>\",\"chosenParent\":6,\"time\":3}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":8,\"score\":\"0.68\",\"foundElementScore\":1,\"foundElementID\":\"2140\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2140\",\"score\":0.068}],\"foundParentsIds\":[\"2139\"],\"displayName\":\"Index\",\"displayValue\":\"1/3 from top\",\"chosenParent\":6,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2140\",\"score\":0.68}],\"foundParentsIds\":[\"2144\"],\"displayName\":\"child\",\"displayValue\":\"Text=See how MQAs are defined >>\",\"chosenParent\":7,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":9,\"score\":\"0.19\",\"foundElementScore\":0.2777777777777778,\"foundElementID\":\"2148\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2148\",\"score\":0.11333333333333334},{\"id\":\"2837\",\"score\":0.11333333333333334},{\"id\":\"2859\",\"score\":0.11333333333333334}],\"foundParentsIds\":[\"2140\"],\"displayName\":\"Class\",\"displayValue\":\"en-canvas-section-content\",\"chosenParent\":8,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2831\",\"score\":0.068}],\"foundParentsIds\":[\"2140\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":8,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":10,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2149\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2149\",\"score\":0.5}],\"foundParentsIds\":[\"49\",\"1868\",\"1869\",\"1918\",\"1919\",\"2090\",\"2139\",\"2140\",\"2148\"],\"displayName\":\"Class\",\"displayValue\":\"analytics-section__mqa\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2149\",\"score\":0.019000000000000003}],\"foundParentsIds\":[\"2148\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":9,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":11,\"score\":\"0.90\",\"foundElementScore\":0.896551724137931,\"foundElementID\":\"2162\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2162\",\"score\":0.5}],\"foundParentsIds\":[\"49\",\"1868\",\"1869\",\"1918\",\"1919\",\"2090\",\"2139\",\"2140\",\"2148\",\"2149\"],\"displayName\":\"Class\",\"displayValue\":\"gio-vertical-bar-chart\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2162\",\"score\":0.5}],\"foundParentsIds\":[\"49\",\"1868\",\"1869\",\"1918\",\"1919\",\"2090\",\"2139\",\"2140\",\"2148\",\"2149\"],\"displayName\":\"Class\",\"displayValue\":\"gio-vertical-bar-chart--default\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":-1,\"score\":0.15}],\"foundParentsIds\":[\"49\",\"1868\",\"1869\",\"1918\",\"1919\",\"2090\",\"2139\",\"2140\",\"2148\",\"2149\"],\"displayName\":\"data-highcharts-chart\",\"displayValue\":\"2\",\"chosenParent\":\"\",\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2162\",\"score\":0.2}],\"foundParentsIds\":[\"2090\",\"2139\",\"2140\",\"2148\",\"2149\"],\"displayName\":\"Style\",\"displayValue\":\" width: 100%\",\"chosenParent\":5,\"time\":2},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2162\",\"score\":0.1}],\"foundParentsIds\":[\"2149\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":10,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":12,\"score\":\"0.79\",\"foundElementScore\":0.7881355932203389,\"foundElementID\":\"2163\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":-1,\"score\":0.3}],\"foundParentsIds\":[\"49\",\"1868\",\"1869\",\"1918\",\"1919\",\"2090\",\"2139\",\"2140\",\"2148\",\"2149\",\"2162\"],\"displayName\":\"Id\",\"displayValue\":\"highcharts-ocgxsl6-6\",\"chosenParent\":\"\",\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2163\",\"score\":0.5}],\"foundParentsIds\":[\"49\",\"1868\",\"1869\",\"1918\",\"1919\",\"2090\",\"2139\",\"2140\",\"2148\",\"2149\",\"2162\"],\"displayName\":\"Class\",\"displayValue\":\"highcharts-container\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2163\",\"score\":0.09000000000000001}],\"foundParentsIds\":[\"2162\"],\"displayName\":\"Tag\",\"displayValue\":\"DIV\",\"chosenParent\":11,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2163\",\"score\":0.2}],\"foundParentsIds\":[\"2090\",\"2139\",\"2140\",\"2148\",\"2149\",\"2162\"],\"displayName\":\"Style\",\"displayValue\":\"position: relative\",\"chosenParent\":5,\"time\":2},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":-1,\"score\":0.2}],\"foundParentsIds\":[\"2140\",\"2148\",\"2149\",\"2162\"],\"displayName\":\"Style\",\"displayValue\":\" width: 1026px\",\"chosenParent\":\"\",\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2163\",\"score\":0.18000000000000002}],\"foundParentsIds\":[\"2162\"],\"displayName\":\"Style\",\"displayValue\":\" height: 250px\",\"chosenParent\":11,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2163\",\"score\":0.2}],\"foundParentsIds\":[\"49\",\"1868\",\"1869\",\"1918\",\"1919\",\"2090\",\"2139\",\"2140\",\"2148\",\"2149\",\"2162\"],\"displayName\":\"Style\",\"displayValue\":\" text-align: left\",\"chosenParent\":0,\"time\":3},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2163\",\"score\":0.2}],\"foundParentsIds\":[\"49\",\"1868\",\"1869\",\"1918\",\"1919\",\"2090\",\"2139\",\"2140\",\"2148\",\"2149\",\"2162\"],\"displayName\":\"Style\",\"displayValue\":\" line-height: normal\",\"chosenParent\":0,\"time\":3},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2163\",\"score\":0.2}],\"foundParentsIds\":[\"49\",\"1868\",\"1869\",\"1918\",\"1919\",\"2090\",\"2139\",\"2140\",\"2148\",\"2149\",\"2162\"],\"displayName\":\"Style\",\"displayValue\":\" z-index: 0\",\"chosenParent\":0,\"time\":4},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2163\",\"score\":0.2}],\"foundParentsIds\":[\"49\",\"1868\",\"1869\",\"1918\",\"1919\",\"2090\",\"2139\",\"2140\",\"2148\",\"2149\",\"2162\"],\"displayName\":\"Style\",\"displayValue\":\" -webkit-tap-highlight-color: rgba(0, 0, 0, 0)\",\"chosenParent\":0,\"time\":2},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2163\",\"score\":0.09000000000000001}],\"foundParentsIds\":[\"2162\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":11,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":13,\"score\":\"0.79\",\"foundElementScore\":1,\"foundElementID\":\"2165\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2165\",\"score\":0.7110000000000001}],\"foundParentsIds\":[\"2163\"],\"displayName\":\"Text\",\"displayValue\":\"Created with Highcharts 5.0.14\",\"chosenParent\":12,\"time\":2},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2165\",\"score\":0.237}],\"foundParentsIds\":[\"2163\"],\"displayName\":\"Tag\",\"displayValue\":\"desc\",\"chosenParent\":12,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":14,\"score\":\"0.74\",\"foundElementScore\":0.7372298624754421,\"foundElementID\":\"2164\",\"frameId\":null,\"isTargetElement\":true,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2164\",\"score\":0.15},{\"id\":\"2856\",\"score\":0.075}],\"foundParentsIds\":[\"49\",\"1868\",\"1869\",\"1918\",\"1919\",\"2090\",\"2139\",\"2140\",\"2148\",\"2149\",\"2162\",\"2163\"],\"displayName\":\"version\",\"displayValue\":\"1.1\",\"chosenParent\":10,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2164\",\"score\":0.5}],\"foundParentsIds\":[\"49\",\"1868\",\"1869\",\"1918\",\"1919\",\"2090\",\"2139\",\"2140\",\"2148\",\"2149\",\"2162\",\"2163\"],\"displayName\":\"Class\",\"displayValue\":\"highcharts-root\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[\"2164\",\"2856\"],\"foundElements\":[{\"id\":-1,\"score\":0.5}],\"foundParentsIds\":[\"49\",\"1868\",\"1869\",\"1918\",\"1919\",\"2090\",\"2139\",\"2140\",\"2148\",\"2149\",\"2162\",\"2163\"],\"displayName\":\"xmlns\",\"displayValue\":\"http://www.w3.org/2000/svg\",\"chosenParent\":\"\",\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[\"2856\"],\"foundElements\":[{\"id\":\"2164\",\"score\":0.3}],\"foundParentsIds\":[\"2148\",\"2149\",\"2162\",\"2163\"],\"displayName\":\"Tag\",\"displayValue\":\"svg\",\"chosenParent\":10,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2164\",\"score\":0.15800000000000003}],\"foundParentsIds\":[\"2163\"],\"displayName\":\"Style\",\"displayValue\":\"font-family:unset\",\"chosenParent\":12,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2164\",\"score\":0.2}],\"foundParentsIds\":[\"49\",\"1868\",\"1869\",\"1918\",\"1919\",\"2090\",\"2139\",\"2140\",\"2148\",\"2149\",\"2162\",\"2163\"],\"displayName\":\"Style\",\"displayValue\":\"font-size:12px\",\"chosenParent\":0,\"time\":2},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2164\",\"score\":0.15800000000000003}],\"foundParentsIds\":[\"2163\"],\"displayName\":\"Style\",\"displayValue\":\"overflow:visible\",\"chosenParent\":12,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2164\",\"score\":0.07900000000000001}],\"foundParentsIds\":[\"2163\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":12,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2164\",\"score\":0.79}],\"foundParentsIds\":[\"2165\"],\"displayName\":\"child\",\"displayValue\":\"Text=Created with Highcharts 5.0.14\",\"chosenParent\":13,\"time\":0}]}],\"href\":\"chrome-extension://pebeiooilphfmbohdbhbomomkkoghoia/_generated_background_page.html\",\"totalRuntime\":31,\"frameId\":null,\"dynamicParentData\":null}},\"metricValue\":13957}"
],
[
"<21 seconds ago> ",
"2018-11-14T11:22:21.233Z 8d83ecdf-e7ff-11e8-bef4-8fb8c0837f88 Attempting to write 13957 into slot 6."
],
[
"<21 seconds ago> ",
"2018-11-14T11:22:21.351Z 8d8b8dd0-e7ff-11e8-ba57-d56028232d13 event={\"labels\":[{\"name\":\"projectId\",\"value\":\"XWZa2vb5\"},{\"name\":\"name\",\"value\":\"op2sxtvdNb.json\"}],\"metricName\":\"uploader_object\",\"blob\":{\"eRRMzro7zs\":{\"elementLocatorResults\":[{\"className\":\"ElementLocatorResult\",\"locatorIndex\":0,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"44\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"44\",\"score\":1}],\"foundParentsIds\":[],\"displayName\":\"Body\",\"displayValue\":\"true\",\"chosenParent\":\"\",\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":1,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"1863\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1863\",\"score\":0.9}],\"foundParentsIds\":[\"44\"],\"displayName\":\"Id\",\"displayValue\":\"content\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1863\",\"score\":0.1}],\"foundParentsIds\":[\"44\"],\"displayName\":\"Index\",\"displayValue\":\"2/10 from top\",\"chosenParent\":0,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":2,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"1864\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1864\",\"score\":0.5}],\"foundParentsIds\":[\"44\",\"1863\"],\"displayName\":\"Class\",\"displayValue\":\"main\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1864\",\"score\":0.1}],\"foundParentsIds\":[\"1863\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":1,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":3,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"1913\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1913\",\"score\":0.5}],\"foundParentsIds\":[\"44\",\"1863\",\"1864\"],\"displayName\":\"Class\",\"displayValue\":\"en-container\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1913\",\"score\":0.1}],\"foundParentsIds\":[\"1864\"],\"displayName\":\"Index\",\"displayValue\":\"6/6 from top\",\"chosenParent\":2,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":4,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"1914\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1914\",\"score\":0.5}],\"foundParentsIds\":[\"44\",\"1863\",\"1864\",\"1913\"],\"displayName\":\"Class\",\"displayValue\":\"en-main-content\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1914\",\"score\":0.1}],\"foundParentsIds\":[\"1913\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":3,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":5,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2085\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2085\",\"score\":0.5}],\"foundParentsIds\":[\"44\",\"1863\",\"1864\",\"1913\",\"1914\"],\"displayName\":\"Class\",\"displayValue\":\"en-content\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2085\",\"score\":0.1}],\"foundParentsIds\":[\"1914\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":4,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":6,\"score\":\"0.68\",\"foundElementScore\":0.6818181818181818,\"foundElementID\":\"2106\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2106\",\"score\":0.5}],\"foundParentsIds\":[\"44\",\"1863\",\"1864\",\"1913\",\"1914\",\"2085\"],\"displayName\":\"Class\",\"displayValue\":\"analytics-canvas\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2086\",\"score\":0.25},{\"id\":\"2106\",\"score\":0.25}],\"foundParentsIds\":[\"44\",\"1863\",\"1864\",\"1913\",\"1914\",\"2085\"],\"displayName\":\"Class\",\"displayValue\":\"en-canvas\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2086\",\"score\":0.1}],\"foundParentsIds\":[\"2085\"],\"displayName\":\"Index\",\"displayValue\":\"1/2 from top\",\"chosenParent\":5,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":7,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2107\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2107\",\"score\":0.5}],\"foundParentsIds\":[\"44\",\"1863\",\"1864\",\"1913\",\"1914\",\"2085\",\"2106\"],\"displayName\":\"Class\",\"displayValue\":\"analytics-canvas__content\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2107\",\"score\":0.068}],\"foundParentsIds\":[\"2106\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":6,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":8,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2303\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2303\",\"score\":0.9}],\"foundParentsIds\":[\"2107\"],\"displayName\":\"Text\",\"displayValue\":\"Most Engaged Accounts\",\"chosenParent\":7,\"time\":9}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":9,\"score\":\"0.91\",\"foundElementScore\":0.9090909090909091,\"foundElementID\":\"2301\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2199\",\"score\":0.1}],\"foundParentsIds\":[\"2107\"],\"displayName\":\"Index\",\"displayValue\":\"3/5 from top\",\"chosenParent\":7,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2301\",\"score\":1}],\"foundParentsIds\":[\"2303\"],\"displayName\":\"child\",\"displayValue\":\"Text=Most Engaged Accounts\",\"chosenParent\":8,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":10,\"score\":\"0.91\",\"foundElementScore\":1,\"foundElementID\":\"2308\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2308\",\"score\":0.455}],\"foundParentsIds\":[\"2301\"],\"displayName\":\"Class\",\"displayValue\":\"en-canvas-section-content\",\"chosenParent\":9,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2308\",\"score\":0.09100000000000001}],\"foundParentsIds\":[\"2301\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":9,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":11,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2309\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2309\",\"score\":0.5}],\"foundParentsIds\":[\"44\",\"1863\",\"1864\",\"1913\",\"1914\",\"2085\",\"2106\",\"2107\",\"2301\",\"2308\"],\"displayName\":\"Class\",\"displayValue\":\"analytics-section__most-engaged\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2309\",\"score\":0.09100000000000001}],\"foundParentsIds\":[\"2308\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":10,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":12,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2310\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2310\",\"score\":0.5}],\"foundParentsIds\":[\"44\",\"1863\",\"1864\",\"1913\",\"1914\",\"2085\",\"2106\",\"2107\",\"2301\",\"2308\",\"2309\"],\"displayName\":\"Class\",\"displayValue\":\"gio-most-engaged-accounts\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2310\",\"score\":0.5}],\"foundParentsIds\":[\"44\",\"1863\",\"1864\",\"1913\",\"1914\",\"2085\",\"2106\",\"2107\",\"2301\",\"2308\",\"2309\"],\"displayName\":\"Class\",\"displayValue\":\"gio-most-engaged-accounts--columns-3\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2310\",\"score\":0.1}],\"foundParentsIds\":[\"2309\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":11,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":13,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2317\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2317\",\"score\":0.5}],\"foundParentsIds\":[\"44\",\"1863\",\"1864\",\"1913\",\"1914\",\"2085\",\"2106\",\"2107\",\"2301\",\"2308\",\"2309\",\"2310\"],\"displayName\":\"Class\",\"displayValue\":\"gio-most-engaged-accounts__account-container\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2317\",\"score\":0.1}],\"foundParentsIds\":[\"2310\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":12,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":14,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2380\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2380\",\"score\":0.9}],\"foundParentsIds\":[\"2317\"],\"displayName\":\"Text\",\"displayValue\":\"Engagio\",\"chosenParent\":13,\"time\":1}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":15,\"score\":\"0.91\",\"foundElementScore\":0.9090909090909091,\"foundElementID\":\"2378\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2318\",\"score\":0.1}],\"foundParentsIds\":[\"2317\"],\"displayName\":\"Index\",\"displayValue\":\"1/15 from top\",\"chosenParent\":13,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2378\",\"score\":1}],\"foundParentsIds\":[\"2380\"],\"displayName\":\"child\",\"displayValue\":\"Text=Engagio\",\"chosenParent\":14,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":16,\"score\":\"0.67\",\"foundElementScore\":0.7368421052631579,\"foundElementID\":\"2383\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2383\",\"score\":0.455}],\"foundParentsIds\":[\"2378\"],\"displayName\":\"Class\",\"displayValue\":\"highcharts-root\",\"chosenParent\":15,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[\"2383\"],\"foundElements\":[{\"id\":-1,\"score\":0.455}],\"foundParentsIds\":[\"2378\"],\"displayName\":\"xmlns\",\"displayValue\":\"http://www.w3.org/2000/svg\",\"chosenParent\":\"\",\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2383\",\"score\":0.273}],\"foundParentsIds\":[\"2378\"],\"displayName\":\"Tag\",\"displayValue\":\"svg\",\"chosenParent\":15,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2383\",\"score\":0.18200000000000002}],\"foundParentsIds\":[\"2378\"],\"displayName\":\"Style\",\"displayValue\":\"font-size:12px\",\"chosenParent\":15,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2383\",\"score\":0.1365}],\"foundParentsIds\":[\"2378\"],\"displayName\":\"version\",\"displayValue\":\"1.1\",\"chosenParent\":15,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":17,\"score\":\"0.91\",\"foundElementScore\":1,\"foundElementID\":\"2379\",\"frameId\":null,\"isTargetElement\":true,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2379\",\"score\":0.09100000000000001}],\"foundParentsIds\":[\"2378\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":15,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2379\",\"score\":0.67}],\"foundParentsIds\":[\"2383\"],\"displayName\":\"child\",\"displayValue\":\"Class=highcharts-root\",\"chosenParent\":16,\"time\":0}]}],\"href\":\"chrome-extension://pebeiooilphfmbohdbhbomomkkoghoia/_generated_background_page.html\",\"totalRuntime\":17,\"frameId\":null,\"dynamicParentData\":null}},\"metricValue\":11367}"
],
[
"<21 seconds ago> ",
"2018-11-14T11:22:21.351Z 8d8b8dd0-e7ff-11e8-ba57-d56028232d13 Attempting to write 11367 into slot 5."
],
[
"<21 seconds ago> ",
"2018-11-14T11:22:21.540Z 8da61adc-e7ff-11e8-b80f-555206294198 event={\"labels\":[{\"name\":\"projectId\",\"value\":\"NyXN7ywxkHRUI7EiKyOM\"},{\"name\":\"name\",\"value\":\"k3gwEFTEhG.json\"}],\"metricName\":\"uploader_object\",\"blob\":{\"arf4Qmbe51\":{\"elementLocatorResults\":[{\"className\":\"ElementLocatorResult\",\"locatorIndex\":0,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"401\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"401\",\"score\":1}],\"foundParentsIds\":[],\"displayName\":\"Body\",\"displayValue\":\"true\",\"chosenParent\":\"\",\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":1,\"score\":null,\"foundElementScore\":null,\"foundElementID\":-1,\"frameId\":null,\"selectorResults\":[]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":2,\"score\":null,\"foundElementScore\":null,\"foundElementID\":-1,\"frameId\":null,\"selectorResults\":[]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":3,\"score\":null,\"foundElementScore\":null,\"foundElementID\":-1,\"frameId\":null,\"selectorResults\":[]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":4,\"score\":null,\"foundElementScore\":null,\"foundElementID\":-1,\"frameId\":null,\"selectorResults\":[]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":5,\"score\":null,\"foundElementScore\":null,\"foundElementID\":-1,\"frameId\":null,\"selectorResults\":[]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":6,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"444\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"444\",\"score\":0.5}],\"foundParentsIds\":[\"401\"],\"displayName\":\"Class\",\"displayValue\":\"social-process-button\",\"chosenParent\":0,\"time\":1}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":7,\"score\":null,\"foundElementScore\":null,\"foundElementID\":-1,\"frameId\":null,\"selectorResults\":[]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":8,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"446\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"446\",\"score\":0.5}],\"foundParentsIds\":[\"444\"],\"displayName\":\"Class\",\"displayValue\":\"x-btn-button\",\"chosenParent\":6,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":9,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"448\",\"frameId\":null,\"isTargetElement\":true,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"448\",\"score\":0.5}],\"foundParentsIds\":[\"444\",\"446\"],\"displayName\":\"Class\",\"displayValue\":\"x-btn-icon-el\",\"chosenParent\":6,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"448\",\"score\":0.1}],\"foundParentsIds\":[\"446\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":8,\"time\":0}]}],\"href\":\"chrome-extension://pebeiooilphfmbohdbhbomomkkoghoia/_generated_background_page.html\",\"totalRuntime\":1,\"frameId\":null,\"dynamicParentData\":null}},\"metricValue\":2705}"
],
[
"<21 seconds ago> ",
"2018-11-14T11:22:21.540Z 8da61adc-e7ff-11e8-b80f-555206294198 Attempting to write 2705 into slot 1."
],
[
"<21 seconds ago> ",
"2018-11-14T11:22:21.595Z 8dbcd6d3-e7ff-11e8-bcda-f9018a07757b event={\"labels\":[{\"name\":\"projectId\",\"value\":\"nxJ73JWP7Cj8WO34mOHe\"},{\"name\":\"name\",\"value\":\"hwXU16EkLt.json\"}],\"metricName\":\"uploader_object\",\"blob\":{\"EuIB91F9nj\":{\"elementLocatorResults\":[{\"className\":\"ElementLocatorResult\",\"locatorIndex\":0,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"164\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"164\",\"score\":1}],\"foundParentsIds\":[],\"displayName\":\"Body\",\"displayValue\":\"true\",\"chosenParent\":\"\",\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":1,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"6067\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6067\",\"score\":0.5}],\"foundParentsIds\":[\"164\"],\"displayName\":\"Class\",\"displayValue\":\"quickWindow\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6067\",\"score\":0.5}],\"foundParentsIds\":[\"164\"],\"displayName\":\"Class\",\"displayValue\":\"quickPublishWindow\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6067\",\"score\":0.1}],\"foundParentsIds\":[\"164\"],\"displayName\":\"Index\",\"displayValue\":\"14/14 from top\",\"chosenParent\":0,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":2,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"6075\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6075\",\"score\":0.5}],\"foundParentsIds\":[\"164\",\"6067\"],\"displayName\":\"Class\",\"displayValue\":\"quickWindow__window\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6075\",\"score\":0.5}],\"foundParentsIds\":[\"164\",\"6067\"],\"displayName\":\"Class\",\"displayValue\":\"quick-publisher__window\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6075\",\"score\":0.1}],\"foundParentsIds\":[\"6067\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":1,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":3,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"6076\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6076\",\"score\":0.5}],\"foundParentsIds\":[\"164\",\"6067\",\"6075\"],\"displayName\":\"Class\",\"displayValue\":\"quickWindow__body\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6076\",\"score\":0.1}],\"foundParentsIds\":[\"6075\"],\"displayName\":\"Index\",\"displayValue\":\"1/2 from top\",\"chosenParent\":2,\"time\":1}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":4,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"6077\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6077\",\"score\":0.5}],\"foundParentsIds\":[\"164\",\"6067\",\"6075\",\"6076\"],\"displayName\":\"Class\",\"displayValue\":\"ovf-y-hidden\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6077\",\"score\":0.5}],\"foundParentsIds\":[\"164\",\"6067\",\"6075\",\"6076\"],\"displayName\":\"Class\",\"displayValue\":\"flex-column-container\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6077\",\"score\":0.1}],\"foundParentsIds\":[\"6076\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":3,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":5,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"6078\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6078\",\"score\":0.9}],\"foundParentsIds\":[\"164\",\"6067\",\"6075\",\"6076\",\"6077\"],\"displayName\":\"Id\",\"displayValue\":\"sprBasePublisher_SCHEDULE\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6078\",\"score\":0.5}],\"foundParentsIds\":[\"164\",\"6067\",\"6075\",\"6076\",\"6077\"],\"displayName\":\"Class\",\"displayValue\":\"sprBasePublisher\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6078\",\"score\":0.5}],\"foundParentsIds\":[\"6067\",\"6075\",\"6076\",\"6077\"],\"displayName\":\"Class\",\"displayValue\":\"ovf-y-auto\",\"chosenParent\":1,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6078\",\"score\":0.1}],\"foundParentsIds\":[\"6077\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":4,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":6,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"6079\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6079\",\"score\":0.5}],\"foundParentsIds\":[\"164\",\"6067\",\"6075\",\"6076\",\"6077\",\"6078\"],\"displayName\":\"Class\",\"displayValue\":\"mode_schedule\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6079\",\"score\":0.1}],\"foundParentsIds\":[\"6078\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":5,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":7,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"6114\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6114\",\"score\":0.5}],\"foundParentsIds\":[\"164\",\"6067\",\"6075\",\"6076\",\"6077\",\"6078\",\"6079\"],\"displayName\":\"Class\",\"displayValue\":\"content-section\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6114\",\"score\":0.1}],\"foundParentsIds\":[\"6079\"],\"displayName\":\"Index\",\"displayValue\":\"3/5 from top\",\"chosenParent\":6,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":8,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"6118\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6118\",\"score\":0.9}],\"foundParentsIds\":[\"6114\"],\"displayName\":\"Text\",\"displayValue\":\"Content\",\"chosenParent\":7,\"time\":1}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":9,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"6115\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6115\",\"score\":0.1}],\"foundParentsIds\":[\"6114\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":7,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6115\",\"score\":1}],\"foundParentsIds\":[\"6118\"],\"displayName\":\"child\",\"displayValue\":\"Text=Content\",\"chosenParent\":8,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":10,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"6140\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6140\",\"score\":0.9}],\"foundParentsIds\":[\"6115\"],\"displayName\":\"Text\",\"displayValue\":\"Message\",\"chosenParent\":9,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6140\",\"score\":0.5}],\"foundParentsIds\":[\"6115\"],\"displayName\":\"Class\",\"displayValue\":\"sprFormFieldTitle\",\"chosenParent\":9,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6140\",\"score\":0.5}],\"foundParentsIds\":[\"6115\"],\"displayName\":\"Class\",\"displayValue\":\"control-label\",\"chosenParent\":9,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":11,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"6136\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6136\",\"score\":0.1}],\"foundParentsIds\":[\"6115\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":9,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6136\",\"score\":1}],\"foundParentsIds\":[\"6140\"],\"displayName\":\"child\",\"displayValue\":\"Text=Message\",\"chosenParent\":10,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":12,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"6219\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6219\",\"score\":0.5}],\"foundParentsIds\":[\"6114\",\"6115\",\"6136\"],\"displayName\":\"Class\",\"displayValue\":\"m-t-5\",\"chosenParent\":7,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6219\",\"score\":0.5}],\"foundParentsIds\":[\"164\",\"6067\",\"6075\",\"6076\",\"6077\",\"6078\",\"6079\",\"6114\",\"6115\",\"6136\"],\"displayName\":\"Class\",\"displayValue\":\"flex-align-items-start\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6219\",\"score\":0.1}],\"foundParentsIds\":[\"6136\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":11,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":13,\"score\":\"0.80\",\"foundElementScore\":1,\"foundElementID\":\"6234\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6234\",\"score\":0.1}],\"foundParentsIds\":[\"6219\"],\"displayName\":\"Index\",\"displayValue\":\"2/4 from top\",\"chosenParent\":12,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":14,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"6235\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6235\",\"score\":0.5}],\"foundParentsIds\":[\"164\",\"6067\",\"6075\",\"6076\",\"6077\",\"6078\",\"6079\",\"6114\",\"6115\",\"6136\",\"6219\",\"6234\"],\"displayName\":\"aria-label\",\"displayValue\":\"Add gating\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6235\",\"score\":0.4}],\"foundParentsIds\":[\"6234\"],\"displayName\":\"Class\",\"displayValue\":\"targetingSelectorCont\",\"chosenParent\":13,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6235\",\"score\":0.4}],\"foundParentsIds\":[\"6234\"],\"displayName\":\"Class\",\"displayValue\":\"btnAsDiv\",\"chosenParent\":13,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6235\",\"score\":0.4}],\"foundParentsIds\":[\"6234\"],\"displayName\":\"Class\",\"displayValue\":\"max-full-width\",\"chosenParent\":13,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6235\",\"score\":0.4}],\"foundParentsIds\":[\"6234\"],\"displayName\":\"Class\",\"displayValue\":\"m-t-2\",\"chosenParent\":13,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6235\",\"score\":0.4}],\"foundParentsIds\":[\"6234\"],\"displayName\":\"Class\",\"displayValue\":\"scp\",\"chosenParent\":13,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6235\",\"score\":0.4}],\"foundParentsIds\":[\"6234\"],\"displayName\":\"role\",\"displayValue\":\"button\",\"chosenParent\":13,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6235\",\"score\":0.12}],\"foundParentsIds\":[\"6234\"],\"displayName\":\"tabindex\",\"displayValue\":\"0\",\"chosenParent\":13,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6235\",\"score\":0.08000000000000002}],\"foundParentsIds\":[\"6234\"],\"displayName\":\"Tag\",\"displayValue\":\"DIV\",\"chosenParent\":13,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6235\",\"score\":0.08000000000000002}],\"foundParentsIds\":[\"6234\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":13,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":15,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"6238\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6238\",\"score\":0.5}],\"foundParentsIds\":[\"6234\",\"6235\"],\"displayName\":\"Class\",\"displayValue\":\"txt-bd3\",\"chosenParent\":14,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6238\",\"score\":0.5}],\"foundParentsIds\":[\"6234\",\"6235\"],\"displayName\":\"Class\",\"displayValue\":\"txt-charcoal\",\"chosenParent\":14,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6238\",\"score\":0.5}],\"foundParentsIds\":[\"6234\",\"6235\"],\"displayName\":\"Class\",\"displayValue\":\"audienceLabel\",\"chosenParent\":14,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6238\",\"score\":0.1}],\"foundParentsIds\":[\"6235\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":14,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":16,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"6239\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6239\",\"score\":0.9}],\"foundParentsIds\":[\"164\",\"6067\",\"6075\",\"6076\",\"6077\",\"6078\",\"6079\",\"6114\",\"6115\",\"6136\",\"6219\",\"6234\",\"6235\",\"6238\"],\"displayName\":\"Text\",\"displayValue\":\" to this post.\",\"chosenParent\":0,\"time\":65},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6239\",\"score\":0.1}],\"foundParentsIds\":[\"6238\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":15,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":17,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"6240\",\"frameId\":null,\"isTargetElement\":true,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6240\",\"score\":0.5}],\"foundParentsIds\":[\"6136\",\"6219\",\"6234\",\"6235\",\"6238\",\"6239\"],\"displayName\":\"Class\",\"displayValue\":\"txt-space\",\"chosenParent\":11,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6240\",\"score\":0.5}],\"foundParentsIds\":[\"6234\",\"6235\",\"6238\",\"6239\"],\"displayName\":\"Class\",\"displayValue\":\"txt-h4\",\"chosenParent\":14,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6240\",\"score\":0.9}],\"foundParentsIds\":[\"164\",\"6067\",\"6075\",\"6076\",\"6077\",\"6078\",\"6079\",\"6114\",\"6115\",\"6136\",\"6219\",\"6234\",\"6235\",\"6238\",\"6239\"],\"displayName\":\"Text\",\"displayValue\":\"Add Audience Restrictions\",\"chosenParent\":0,\"time\":84},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6240\",\"score\":0.1}],\"foundParentsIds\":[\"6239\"],\"displayName\":\"Tag\",\"displayValue\":\"SPAN\",\"chosenParent\":16,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"6240\",\"score\":0.1}],\"foundParentsIds\":[\"6239\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":16,\"time\":0}]}],\"href\":\"chrome-extension://pebeiooilphfmbohdbhbomomkkoghoia/_generated_background_page.html\",\"totalRuntime\":157,\"frameId\":null,\"dynamicParentData\":null}},\"metricValue\":14356}"
],
[
"<21 seconds ago> ",
"2018-11-14T11:22:21.596Z 8dbcd6d3-e7ff-11e8-bcda-f9018a07757b Attempting to write 14356 into slot 7."
],
[
"<21 seconds ago> ",
"2018-11-14T11:22:21.648Z 8dc5d7bf-e7ff-11e8-a40d-65445ef891f0 event={\"labels\":[{\"name\":\"projectId\",\"value\":\"XWZa2vb5\"},{\"name\":\"name\",\"value\":\"3Txo5XxnuH.json\"}],\"metricName\":\"uploader_object\",\"blob\":{\"K6TYv1H2YS\":{\"elementLocatorResults\":[{\"className\":\"ElementLocatorResult\",\"locatorIndex\":0,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"44\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"44\",\"score\":1}],\"foundParentsIds\":[],\"displayName\":\"Body\",\"displayValue\":\"true\",\"chosenParent\":\"\",\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":1,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"1863\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1863\",\"score\":0.8}],\"foundParentsIds\":[\"44\"],\"displayName\":\"Id\",\"displayValue\":\"content\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1863\",\"score\":0.1}],\"foundParentsIds\":[\"44\"],\"displayName\":\"Index\",\"displayValue\":\"2/10 from top\",\"chosenParent\":0,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":2,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"1864\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1864\",\"score\":0.5}],\"foundParentsIds\":[\"44\",\"1863\"],\"displayName\":\"Class\",\"displayValue\":\"main\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1864\",\"score\":0.1}],\"foundParentsIds\":[\"1863\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":1,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":3,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"1912\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1912\",\"score\":0.5}],\"foundParentsIds\":[\"44\",\"1863\",\"1864\"],\"displayName\":\"Class\",\"displayValue\":\"en-container\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1912\",\"score\":0.1}],\"foundParentsIds\":[\"1864\"],\"displayName\":\"Index\",\"displayValue\":\"6/6 from top\",\"chosenParent\":2,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":4,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"1913\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1913\",\"score\":0.5}],\"foundParentsIds\":[\"44\",\"1863\",\"1864\",\"1912\"],\"displayName\":\"Class\",\"displayValue\":\"en-main-content\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1913\",\"score\":0.1}],\"foundParentsIds\":[\"1912\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":3,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":5,\"score\":\"0.06\",\"foundElementScore\":0.07142857142857142,\"foundElementID\":\"3716\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":-1,\"score\":0.8}],\"foundParentsIds\":[\"44\",\"1863\",\"1864\",\"1912\",\"1913\"],\"displayName\":\"Id\",\"displayValue\":\"en-sidebar\",\"chosenParent\":\"\",\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":-1,\"score\":0.5}],\"foundParentsIds\":[\"44\",\"1863\",\"1864\",\"1912\",\"1913\"],\"displayName\":\"Class\",\"displayValue\":\"en-sidebar\",\"chosenParent\":\"\",\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"3716\",\"score\":0.1}],\"foundParentsIds\":[\"1913\"],\"displayName\":\"Index\",\"displayValue\":\"3/3 from top\",\"chosenParent\":4,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":6,\"score\":\"0.00\",\"foundElementScore\":0.011857707509881424,\"foundElementID\":\"3717\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":-1,\"score\":0.5}],\"foundParentsIds\":[\"44\",\"1863\",\"1864\",\"1912\",\"1913\",\"3716\"],\"displayName\":\"Class\",\"displayValue\":\"en-sidebar-content\",\"chosenParent\":\"\",\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"3717\",\"score\":0.006}],\"foundParentsIds\":[\"3716\"],\"displayName\":\"Index\",\"displayValue\":\"1/2 from top\",\"chosenParent\":5,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":7,\"score\":\"0.00\",\"foundElementScore\":0,\"foundElementID\":\"3718\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":-1,\"score\":0.5}],\"foundParentsIds\":[\"44\",\"1863\",\"1864\",\"1912\",\"1913\",\"3716\",\"3717\"],\"displayName\":\"Class\",\"displayValue\":\"en-sidebar-view\",\"chosenParent\":\"\",\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":-1,\"score\":0.5}],\"foundParentsIds\":[\"44\",\"1863\",\"1864\",\"1912\",\"1913\",\"3716\",\"3717\"],\"displayName\":\"Class\",\"displayValue\":\"with-strip\",\"chosenParent\":\"\",\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"3718\",\"score\":null}],\"foundParentsIds\":[\"3717\"],\"displayName\":\"Index\",\"displayValue\":\"1/2 from top\",\"chosenParent\":6,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":8,\"score\":\"0.00\",\"foundElementScore\":0,\"foundElementID\":\"3754\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":-1,\"score\":0.5}],\"foundParentsIds\":[\"44\",\"1863\",\"1864\",\"1912\",\"1913\",\"3716\",\"3717\",\"3718\"],\"displayName\":\"Class\",\"displayValue\":\"en-sidebar-view-content\",\"chosenParent\":\"\",\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":-1,\"score\":0.5}],\"foundParentsIds\":[\"44\",\"1863\",\"1864\",\"1912\",\"1913\",\"3716\",\"3717\",\"3718\"],\"displayName\":\"Class\",\"displayValue\":\"sidebar-people-container\",\"chosenParent\":\"\",\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":-1,\"score\":0.5}],\"foundParentsIds\":[\"44\",\"1863\",\"1864\",\"1912\",\"1913\",\"3716\",\"3717\",\"3718\"],\"displayName\":\"Class\",\"displayValue\":\"with-run-play\",\"chosenParent\":\"\",\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"3754\",\"score\":null}],\"foundParentsIds\":[\"3718\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":7,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":9,\"score\":\"0.00\",\"foundElementScore\":0,\"foundElementID\":\"3755\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":-1,\"score\":0.5}],\"foundParentsIds\":[\"44\",\"1863\",\"1864\",\"1912\",\"1913\",\"3716\",\"3717\",\"3718\",\"3754\"],\"displayName\":\"Class\",\"displayValue\":\"en-run-play-btn\",\"chosenParent\":\"\",\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"3755\",\"score\":null}],\"foundParentsIds\":[\"3754\"],\"displayName\":\"Index\",\"displayValue\":\"3/3 from top\",\"chosenParent\":8,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":10,\"score\":\"0.47\",\"foundElementScore\":0.4736842105263158,\"foundElementID\":\"3753\",\"frameId\":null,\"isTargetElement\":true,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":-1,\"score\":null}],\"foundParentsIds\":[\"3755\"],\"displayName\":\"Class\",\"displayValue\":\"en-btn\",\"chosenParent\":\"\",\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":-1,\"score\":0.5}],\"foundParentsIds\":[\"44\",\"1863\",\"1864\",\"1912\",\"1913\",\"3716\",\"3717\",\"3718\",\"3754\",\"3755\"],\"displayName\":\"Class\",\"displayValue\":\"en-btn-md\",\"chosenParent\":\"\",\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":-1,\"score\":0.5}],\"foundParentsIds\":[\"44\",\"1863\",\"1864\",\"1912\",\"1913\",\"3716\",\"3717\",\"3718\",\"3754\",\"3755\"],\"displayName\":\"Class\",\"displayValue\":\"en-btn-primary\",\"chosenParent\":\"\",\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"3753\",\"score\":0.9}],\"foundParentsIds\":[\"44\",\"1863\",\"1864\",\"1912\",\"1913\",\"3716\",\"3717\",\"3718\",\"3754\",\"3755\"],\"displayName\":\"Text\",\"displayValue\":\"Run Play\",\"chosenParent\":0,\"time\":129},{\"className\":\"SelectorResult\",\"validatedElements\":[\"3753\"],\"foundElements\":[{\"id\":\"3767\",\"score\":null}],\"foundParentsIds\":[\"3755\"],\"displayName\":\"Tag\",\"displayValue\":\"BUTTON\",\"chosenParent\":9,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"3756\",\"score\":null}],\"foundParentsIds\":[\"3755\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":9,\"time\":0}]}],\"href\":\"chrome-extension://pebeiooilphfmbohdbhbomomkkoghoia/_generated_background_page.html\",\"totalRuntime\":136,\"frameId\":null,\"dynamicParentData\":null}},\"metricValue\":8339}"
],
[
"<21 seconds ago> ",
"2018-11-14T11:22:21.648Z 8dc5d7bf-e7ff-11e8-a40d-65445ef891f0 Attempting to write 8339 into slot 4."
],
[
"<19 seconds ago> ",
"2018-11-14T11:22:22.868Z 8e7eeee2-e7ff-11e8-b24a-692267b9f5b9 event={\"labels\":[{\"name\":\"projectId\",\"value\":\"XWZa2vb5\"},{\"name\":\"name\",\"value\":\"X01FRImpiS.json\"}],\"metricName\":\"uploader_object\",\"blob\":{\"qHHPfPHMDj\":{\"elementLocatorResults\":[{\"className\":\"ElementLocatorResult\",\"locatorIndex\":0,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"52\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"52\",\"score\":1}],\"foundParentsIds\":[],\"displayName\":\"Body\",\"displayValue\":\"true\",\"chosenParent\":\"\",\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":1,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"1871\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1871\",\"score\":0.9}],\"foundParentsIds\":[\"52\"],\"displayName\":\"Id\",\"displayValue\":\"content\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1871\",\"score\":0.1}],\"foundParentsIds\":[\"52\"],\"displayName\":\"Index\",\"displayValue\":\"2/16 from top\",\"chosenParent\":0,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":2,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2542\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2542\",\"score\":0.9}],\"foundParentsIds\":[\"1871\"],\"displayName\":\"Text\",\"displayValue\":\"Save Filters\",\"chosenParent\":1,\"time\":4},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2542\",\"score\":0.5}],\"foundParentsIds\":[\"1871\"],\"displayName\":\"Class\",\"displayValue\":\"save-filter-menu__text\",\"chosenParent\":1,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":3,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2534\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2534\",\"score\":0.1}],\"foundParentsIds\":[\"1871\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":1,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2534\",\"score\":1}],\"foundParentsIds\":[\"2542\"],\"displayName\":\"child\",\"displayValue\":\"Text=Save Filters\",\"chosenParent\":2,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":4,\"score\":\"0.95\",\"foundElementScore\":0.9534883720930232,\"foundElementID\":\"2535\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2535\",\"score\":0.5}],\"foundParentsIds\":[\"52\",\"1871\",\"2534\"],\"displayName\":\"Class\",\"displayValue\":\"gio-context-menu__popup\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2535\",\"score\":0.5}],\"foundParentsIds\":[\"52\",\"1871\",\"2534\"],\"displayName\":\"Class\",\"displayValue\":\"higher\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2535\",\"score\":0.5}],\"foundParentsIds\":[\"52\",\"1871\",\"2534\"],\"displayName\":\"Class\",\"displayValue\":\"tether-element\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2535\",\"score\":0.5}],\"foundParentsIds\":[\"2534\"],\"displayName\":\"Class\",\"displayValue\":\"tether-enabled\",\"chosenParent\":3,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2535\",\"score\":0.5}],\"foundParentsIds\":[\"2534\"],\"displayName\":\"Class\",\"displayValue\":\"tether-element-attached-top\",\"chosenParent\":3,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2535\",\"score\":0.5}],\"foundParentsIds\":[\"2534\"],\"displayName\":\"Class\",\"displayValue\":\"tether-target-attached-bottom\",\"chosenParent\":3,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2535\",\"score\":0.5}],\"foundParentsIds\":[\"2534\"],\"displayName\":\"Class\",\"displayValue\":\"tether-element-attached-right\",\"chosenParent\":3,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2535\",\"score\":0.5}],\"foundParentsIds\":[\"2534\"],\"displayName\":\"Class\",\"displayValue\":\"tether-target-attached-right\",\"chosenParent\":3,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":-1,\"score\":0.2}],\"foundParentsIds\":[\"52\",\"1871\",\"2534\"],\"displayName\":\"Style\",\"displayValue\":\" transform: translateX(508px) translateY(42px) translateZ(0px)\",\"chosenParent\":\"\",\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2535\",\"score\":0.1}],\"foundParentsIds\":[\"2534\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":3,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":5,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2536\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2536\",\"score\":0.5}],\"foundParentsIds\":[\"52\",\"1871\",\"2534\",\"2535\"],\"displayName\":\"Class\",\"displayValue\":\"animation-wrapper\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2536\",\"score\":0.095}],\"foundParentsIds\":[\"2535\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":4,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":6,\"score\":\"0.76\",\"foundElementScore\":0.7619047619047619,\"foundElementID\":\"2537\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2537\",\"score\":0.5}],\"foundParentsIds\":[\"52\",\"1871\",\"2534\",\"2535\",\"2536\"],\"displayName\":\"Class\",\"displayValue\":\"gio-context-menu__content\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2537\",\"score\":0.5}],\"foundParentsIds\":[\"52\",\"1871\",\"2534\",\"2535\",\"2536\"],\"displayName\":\"Class\",\"displayValue\":\"bottom\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2537\",\"score\":0.5}],\"foundParentsIds\":[\"52\",\"1871\",\"2534\",\"2535\",\"2536\"],\"displayName\":\"Class\",\"displayValue\":\"right\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":-1,\"score\":0.5}],\"foundParentsIds\":[\"52\",\"1871\",\"2534\",\"2535\",\"2536\"],\"displayName\":\"Class\",\"displayValue\":\"action-menu\",\"chosenParent\":\"\",\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2537\",\"score\":0.1}],\"foundParentsIds\":[\"2536\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":5,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":7,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2538\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2538\",\"score\":0.5}],\"foundParentsIds\":[\"52\",\"1871\",\"2534\",\"2535\",\"2536\",\"2537\"],\"displayName\":\"Class\",\"displayValue\":\"filters-menu\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2538\",\"score\":0.07600000000000001}],\"foundParentsIds\":[\"2537\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":6,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":8,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2539\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2539\",\"score\":0.5}],\"foundParentsIds\":[\"52\",\"1871\",\"2534\",\"2535\",\"2536\",\"2537\",\"2538\"],\"displayName\":\"Class\",\"displayValue\":\"header-menu\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2539\",\"score\":0.1}],\"foundParentsIds\":[\"2538\"],\"displayName\":\"Index\",\"displayValue\":\"1/3 from top\",\"chosenParent\":7,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":9,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2540\",\"frameId\":null,\"isTargetElement\":true,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2540\",\"score\":0.9}],\"foundParentsIds\":[\"52\",\"1871\",\"2534\",\"2535\",\"2536\",\"2537\",\"2538\",\"2539\"],\"displayName\":\"Text\",\"displayValue\":\"Filter Set: Accounts with No Engagement\",\"chosenParent\":0,\"time\":128},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2540\",\"score\":0.3}],\"foundParentsIds\":[\"52\",\"1871\",\"2534\",\"2535\",\"2536\",\"2537\",\"2538\",\"2539\"],\"displayName\":\"Tag\",\"displayValue\":\"H3\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2540\",\"score\":0.1}],\"foundParentsIds\":[\"2539\"],\"displayName\":\"Index\",\"displayValue\":\"1/2 from top\",\"chosenParent\":8,\"time\":1}]}],\"href\":\"chrome-extension://pebeiooilphfmbohdbhbomomkkoghoia/_generated_background_page.html\",\"totalRuntime\":137,\"frameId\":null,\"dynamicParentData\":null}},\"metricValue\":8518}"
],
[
"<19 seconds ago> ",
"2018-11-14T11:22:22.868Z 8e7eeee2-e7ff-11e8-b24a-692267b9f5b9 Attempting to write 8518 into slot 4."
],
[
"<19 seconds ago> ",
"2018-11-14T11:22:22.942Z 8e8ad4e8-e7ff-11e8-8be2-9562181468be event={\"labels\":[{\"name\":\"projectId\",\"value\":\"NyXN7ywxkHRUI7EiKyOM\"},{\"name\":\"name\",\"value\":\"Fg4CRRMefg.json\"}],\"metricName\":\"uploader_object\",\"blob\":{\"SAumgqhkOM\":{\"elementLocatorResults\":[{\"className\":\"ElementLocatorResult\",\"locatorIndex\":0,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"499\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"499\",\"score\":1}],\"foundParentsIds\":[],\"displayName\":\"Body\",\"displayValue\":\"true\",\"chosenParent\":\"\",\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":1,\"score\":\"0.84\",\"foundElementScore\":0.8421052631578947,\"foundElementID\":\"2683\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2683\",\"score\":0.5}],\"foundParentsIds\":[\"499\"],\"displayName\":\"Class\",\"displayValue\":\"social-dont-show-popup\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2683\",\"score\":0.2}],\"foundParentsIds\":[\"499\"],\"displayName\":\"Style\",\"displayValue\":\" height: 200px\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":-1,\"score\":0.2}],\"foundParentsIds\":[\"499\"],\"displayName\":\"Style\",\"displayValue\":\" top: 383px\",\"chosenParent\":\"\",\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2683\",\"score\":0.9}],\"foundParentsIds\":[\"499\"],\"displayName\":\"Id\",\"displayValue\":\"onSyncPopUp\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2479\",\"score\":0.1}],\"foundParentsIds\":[\"499\"],\"displayName\":\"Index\",\"displayValue\":\"30/30 from top\",\"chosenParent\":0,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":2,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2713\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2713\",\"score\":0.42}],\"foundParentsIds\":[\"2683\"],\"displayName\":\"Class\",\"displayValue\":\"x-toolbar\",\"chosenParent\":1,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2713\",\"score\":0.42}],\"foundParentsIds\":[\"2683\"],\"displayName\":\"Class\",\"displayValue\":\"x-toolbar-footer\",\"chosenParent\":1,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2713\",\"score\":0.42}],\"foundParentsIds\":[\"2683\"],\"displayName\":\"Class\",\"displayValue\":\"x-docked-bottom\",\"chosenParent\":1,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2713\",\"score\":0.42}],\"foundParentsIds\":[\"2683\"],\"displayName\":\"Class\",\"displayValue\":\"x-toolbar-docked-bottom\",\"chosenParent\":1,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2713\",\"score\":0.42}],\"foundParentsIds\":[\"2683\"],\"displayName\":\"Class\",\"displayValue\":\"x-toolbar-footer-docked-bottom\",\"chosenParent\":1,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2713\",\"score\":0.2}],\"foundParentsIds\":[\"499\",\"2683\"],\"displayName\":\"Style\",\"displayValue\":\"padding: 10px 15px 10px 14px\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2713\",\"score\":0.2}],\"foundParentsIds\":[\"499\",\"2683\"],\"displayName\":\"Style\",\"displayValue\":\" top: 150px\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2713\",\"score\":0.084}],\"foundParentsIds\":[\"2683\"],\"displayName\":\"Index\",\"displayValue\":\"3/3 from top\",\"chosenParent\":1,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":3,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2714\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2714\",\"score\":0.5}],\"foundParentsIds\":[\"2713\"],\"displayName\":\"Class\",\"displayValue\":\"x-box-inner\",\"chosenParent\":2,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2714\",\"score\":0.2}],\"foundParentsIds\":[\"2683\",\"2713\"],\"displayName\":\"Style\",\"displayValue\":\" height: 30px\",\"chosenParent\":2,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2714\",\"score\":0.1}],\"foundParentsIds\":[\"2713\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":2,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":4,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2715\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2715\",\"score\":0.5}],\"foundParentsIds\":[\"2713\",\"2714\"],\"displayName\":\"Class\",\"displayValue\":\"x-box-target\",\"chosenParent\":2,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2715\",\"score\":0.2}],\"foundParentsIds\":[\"2714\"],\"displayName\":\"Style\",\"displayValue\":\"width: 521px\",\"chosenParent\":3,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2715\",\"score\":0.1}],\"foundParentsIds\":[\"2714\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":3,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":5,\"score\":\"0.17\",\"foundElementScore\":0.16666666666666669,\"foundElementID\":\"2727\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":-1,\"score\":0.5}],\"foundParentsIds\":[\"499\",\"2683\",\"2713\",\"2714\",\"2715\"],\"displayName\":\"Class\",\"displayValue\":\"x-over\",\"chosenParent\":\"\",\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":-1,\"score\":0.5}],\"foundParentsIds\":[\"499\",\"2683\",\"2713\",\"2714\",\"2715\"],\"displayName\":\"Class\",\"displayValue\":\"x-btn-over\",\"chosenParent\":\"\",\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":-1,\"score\":0.5}],\"foundParentsIds\":[\"499\",\"2683\",\"2713\",\"2714\",\"2715\"],\"displayName\":\"Class\",\"displayValue\":\"x-btn-default-small-over\",\"chosenParent\":\"\",\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2727\",\"score\":0.2}],\"foundParentsIds\":[\"499\",\"2683\",\"2713\",\"2714\",\"2715\"],\"displayName\":\"Style\",\"displayValue\":\" left: 361px\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2727\",\"score\":0.1}],\"foundParentsIds\":[\"2715\"],\"displayName\":\"Index\",\"displayValue\":\"3/4 from top\",\"chosenParent\":4,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":6,\"score\":\"0.17\",\"foundElementScore\":1,\"foundElementID\":\"2728\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2728\",\"score\":0.085}],\"foundParentsIds\":[\"2727\"],\"displayName\":\"Class\",\"displayValue\":\"x-btn-wrap\",\"chosenParent\":5,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2728\",\"score\":0.017}],\"foundParentsIds\":[\"2727\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":5,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":7,\"score\":\"0.17\",\"foundElementScore\":1,\"foundElementID\":\"2729\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2729\",\"score\":0.085}],\"foundParentsIds\":[\"2727\",\"2728\"],\"displayName\":\"Class\",\"displayValue\":\"x-btn-button\",\"chosenParent\":5,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2729\",\"score\":0.017}],\"foundParentsIds\":[\"2728\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":6,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":8,\"score\":\"0.17\",\"foundElementScore\":1,\"foundElementID\":\"2731\",\"frameId\":null,\"isTargetElement\":true,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2731\",\"score\":0.085}],\"foundParentsIds\":[\"2727\",\"2728\",\"2729\"],\"displayName\":\"role\",\"displayValue\":\"img\",\"chosenParent\":5,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2731\",\"score\":0.085}],\"foundParentsIds\":[\"2727\",\"2728\",\"2729\"],\"displayName\":\"Class\",\"displayValue\":\"x-btn-icon-el\",\"chosenParent\":5,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2731\",\"score\":0.017}],\"foundParentsIds\":[\"2729\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":7,\"time\":0}]}],\"href\":\"chrome-extension://pebeiooilphfmbohdbhbomomkkoghoia/_generated_background_page.html\",\"totalRuntime\":7,\"frameId\":null,\"dynamicParentData\":null}},\"metricValue\":8301}"
],
[
"<19 seconds ago> ",
"2018-11-14T11:22:22.942Z 8e8ad4e8-e7ff-11e8-8be2-9562181468be Attempting to write 8301 into slot 4."
],
[
"<19 seconds ago> ",
"2018-11-14T11:22:22.993Z 8e92ec04-e7ff-11e8-a222-f19f124c288d event={\"labels\":[{\"name\":\"projectId\",\"value\":\"NetApp_16f9014d-a368-a70b-f5ae-52b81ea7ec84\"},{\"name\":\"name\",\"value\":\"mejqaSiAgs.json\"}],\"metricName\":\"uploader_object\",\"blob\":{\"cu0mrgpAGA\":{\"elementLocatorResults\":[{\"className\":\"ElementLocatorResult\",\"locatorIndex\":0,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"103\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"103\",\"score\":1}],\"foundParentsIds\":[],\"displayName\":\"Body\",\"displayValue\":\"true\",\"chosenParent\":\"\",\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":1,\"score\":\"0.93\",\"foundElementScore\":0.9347826086956522,\"foundElementID\":\"307\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"307\",\"score\":0.5}],\"foundParentsIds\":[\"103\"],\"displayName\":\"role\",\"displayValue\":\"dialog\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"307\",\"score\":0.5}],\"foundParentsIds\":[\"103\"],\"displayName\":\"Class\",\"displayValue\":\"ui-dialog\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"307\",\"score\":0.5}],\"foundParentsIds\":[\"103\"],\"displayName\":\"Class\",\"displayValue\":\"no-close\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"307\",\"score\":0.5}],\"foundParentsIds\":[\"103\"],\"displayName\":\"Class\",\"displayValue\":\"confirm\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"307\",\"score\":0.5}],\"foundParentsIds\":[\"103\"],\"displayName\":\"Class\",\"displayValue\":\"no-title-dialog\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"307\",\"score\":0.5}],\"foundParentsIds\":[\"103\"],\"displayName\":\"Class\",\"displayValue\":\"ui-draggable\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"307\",\"score\":0.15}],\"foundParentsIds\":[\"103\"],\"displayName\":\"aria-describedby\",\"displayValue\":\"ui-id-15\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"307\",\"score\":0.15}],\"foundParentsIds\":[\"103\"],\"displayName\":\"aria-labelledby\",\"displayValue\":\"ui-id-16\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"307\",\"score\":0.2}],\"foundParentsIds\":[\"103\"],\"displayName\":\"Style\",\"displayValue\":\" width: 415px\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":-1,\"score\":0.2}],\"foundParentsIds\":[\"103\"],\"displayName\":\"Style\",\"displayValue\":\" top: 267.9px\",\"chosenParent\":\"\",\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"307\",\"score\":0.2}],\"foundParentsIds\":[\"103\"],\"displayName\":\"Style\",\"displayValue\":\" left: 752.5px\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"307\",\"score\":0.2}],\"foundParentsIds\":[\"103\"],\"displayName\":\"Style\",\"displayValue\":\" display: block\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"307\",\"score\":0.2}],\"foundParentsIds\":[\"103\"],\"displayName\":\"Style\",\"displayValue\":\" z-index: 2001\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"307\",\"score\":0.2}],\"foundParentsIds\":[\"103\"],\"displayName\":\"Style\",\"displayValue\":\" opacity: 1\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"323\",\"score\":0.1}],\"foundParentsIds\":[\"103\"],\"displayName\":\"Index\",\"displayValue\":\"13/14 from top\",\"chosenParent\":0,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":2,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"309\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"309\",\"score\":0.5}],\"foundParentsIds\":[\"103\",\"307\"],\"displayName\":\"Class\",\"displayValue\":\"dialog-container\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"309\",\"score\":0.09300000000000001}],\"foundParentsIds\":[\"307\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":1,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":3,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"315\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"315\",\"score\":0.5}],\"foundParentsIds\":[\"103\",\"307\",\"309\"],\"displayName\":\"Class\",\"displayValue\":\"ui-dialog-content\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"315\",\"score\":0.5}],\"foundParentsIds\":[\"307\",\"309\"],\"displayName\":\"Class\",\"displayValue\":\"ui-widget-content\",\"chosenParent\":2,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"315\",\"score\":0.3}],\"foundParentsIds\":[\"103\",\"307\",\"309\"],\"displayName\":\"Id\",\"displayValue\":\"ui-id-15\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"315\",\"score\":0.2}],\"foundParentsIds\":[\"103\",\"307\",\"309\"],\"displayName\":\"Style\",\"displayValue\":\"width: auto\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"315\",\"score\":0.2}],\"foundParentsIds\":[\"103\",\"307\",\"309\"],\"displayName\":\"Style\",\"displayValue\":\" min-height: 0px\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"315\",\"score\":0.2}],\"foundParentsIds\":[\"103\",\"307\",\"309\"],\"displayName\":\"Style\",\"displayValue\":\" max-height: none\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"315\",\"score\":0.2}],\"foundParentsIds\":[\"307\",\"309\"],\"displayName\":\"Style\",\"displayValue\":\" height: auto\",\"chosenParent\":2,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"315\",\"score\":0.1}],\"foundParentsIds\":[\"309\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":2,\"time\":1}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":4,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"316\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"316\",\"score\":0.5}],\"foundParentsIds\":[\"103\",\"307\",\"309\",\"315\"],\"displayName\":\"Class\",\"displayValue\":\"action-required-dialog\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"316\",\"score\":0.5}],\"foundParentsIds\":[\"103\",\"307\",\"309\",\"315\"],\"displayName\":\"Class\",\"displayValue\":\"approval-dialog-content\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"316\",\"score\":0.1}],\"foundParentsIds\":[\"315\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":3,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":5,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"318\",\"frameId\":null,\"isTargetElement\":true,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"318\",\"score\":0.5}],\"foundParentsIds\":[\"103\",\"307\",\"309\",\"315\",\"316\"],\"displayName\":\"ng-bind-html\",\"displayValue\":\"action | actionIntoWordsDetails : we\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"318\",\"score\":0.9}],\"foundParentsIds\":[\"103\",\"307\",\"309\",\"315\",\"316\"],\"displayName\":\"Text\",\"displayValue\":\"This system has 35 data disks. The maximum allowed is 35. If the data continues to grow, you might need to move some data to another Cloud Volumes ONTAP system to free space.\",\"chosenParent\":0,\"time\":12},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"318\",\"score\":0.1}],\"foundParentsIds\":[\"316\"],\"displayName\":\"Index\",\"displayValue\":\"2/5 from top\",\"chosenParent\":4,\"time\":0}]}],\"href\":\"chrome-extension://pebeiooilphfmbohdbhbomomkkoghoia/_generated_background_page.html\",\"totalRuntime\":16,\"frameId\":null,\"dynamicParentData\":null}},\"metricValue\":7959}"
],
[
"<19 seconds ago> ",
"2018-11-14T11:22:22.993Z 8e92ec04-e7ff-11e8-a222-f19f124c288d Attempting to write 7959 into slot 3."
],
[
"<19 seconds ago> ",
"2018-11-14T11:22:23.271Z 8ebc6d0b-e7ff-11e8-a420-63ea41b212d8 event={\"labels\":[{\"name\":\"projectId\",\"value\":\"XWZa2vb5\"},{\"name\":\"name\",\"value\":\"9o28WHmsRU.json\"}],\"metricName\":\"uploader_object\",\"blob\":{\"zA8Qm6h42n\":{\"elementLocatorResults\":[{\"className\":\"ElementLocatorResult\",\"locatorIndex\":0,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"50\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"50\",\"score\":1}],\"foundParentsIds\":[],\"displayName\":\"Body\",\"displayValue\":\"true\",\"chosenParent\":\"\",\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":1,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"1869\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1869\",\"score\":0.8}],\"foundParentsIds\":[\"50\"],\"displayName\":\"Id\",\"displayValue\":\"content\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1869\",\"score\":0.1}],\"foundParentsIds\":[\"50\"],\"displayName\":\"Index\",\"displayValue\":\"2/15 from top\",\"chosenParent\":0,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":2,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"1870\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1870\",\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\"],\"displayName\":\"Class\",\"displayValue\":\"main\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1870\",\"score\":0.1}],\"foundParentsIds\":[\"1869\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":1,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":3,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"1919\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1919\",\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\"],\"displayName\":\"Class\",\"displayValue\":\"en-container\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1919\",\"score\":0.1}],\"foundParentsIds\":[\"1870\"],\"displayName\":\"Index\",\"displayValue\":\"6/6 from top\",\"chosenParent\":2,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":4,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"1920\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1920\",\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"1919\"],\"displayName\":\"Class\",\"displayValue\":\"en-main-content\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1920\",\"score\":0.1}],\"foundParentsIds\":[\"1919\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":3,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":5,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2091\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2091\",\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"1919\",\"1920\"],\"displayName\":\"Class\",\"displayValue\":\"en-content\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2091\",\"score\":0.1}],\"foundParentsIds\":[\"1920\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":4,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":6,\"score\":\"0.68\",\"foundElementScore\":0.6818181818181818,\"foundElementID\":\"2140\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2140\",\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"1919\",\"1920\",\"2091\"],\"displayName\":\"Class\",\"displayValue\":\"analytics-canvas\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2092\",\"score\":0.25},{\"id\":\"2140\",\"score\":0.25}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"1919\",\"1920\",\"2091\"],\"displayName\":\"Class\",\"displayValue\":\"en-canvas\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2092\",\"score\":0.1}],\"foundParentsIds\":[\"2091\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":5,\"time\":1}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":7,\"score\":\"0.68\",\"foundElementScore\":1,\"foundElementID\":\"2145\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2145\",\"score\":0.6120000000000001}],\"foundParentsIds\":[\"2140\"],\"displayName\":\"Text\",\"displayValue\":\"See how MQAs are defined >>\",\"chosenParent\":6,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":8,\"score\":\"0.68\",\"foundElementScore\":1,\"foundElementID\":\"2141\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2141\",\"score\":0.068}],\"foundParentsIds\":[\"2140\"],\"displayName\":\"Index\",\"displayValue\":\"1/3 from top\",\"chosenParent\":6,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2141\",\"score\":0.68}],\"foundParentsIds\":[\"2145\"],\"displayName\":\"child\",\"displayValue\":\"Text=See how MQAs are defined >>\",\"chosenParent\":7,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":9,\"score\":\"0.19\",\"foundElementScore\":0.2777777777777778,\"foundElementID\":\"2149\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2149\",\"score\":0.11333333333333334},{\"id\":\"2322\",\"score\":0.11333333333333334},{\"id\":\"2344\",\"score\":0.11333333333333334}],\"foundParentsIds\":[\"2141\"],\"displayName\":\"Class\",\"displayValue\":\"en-canvas-section-content\",\"chosenParent\":8,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2316\",\"score\":0.068}],\"foundParentsIds\":[\"2141\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":8,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":10,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2150\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2150\",\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"1919\",\"1920\",\"2091\",\"2140\",\"2141\",\"2149\"],\"displayName\":\"Class\",\"displayValue\":\"analytics-section__mqa\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2150\",\"score\":0.019000000000000003}],\"foundParentsIds\":[\"2149\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":9,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":11,\"score\":\"0.90\",\"foundElementScore\":0.896551724137931,\"foundElementID\":\"2163\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2163\",\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"1919\",\"1920\",\"2091\",\"2140\",\"2141\",\"2149\",\"2150\"],\"displayName\":\"Class\",\"displayValue\":\"gio-vertical-bar-chart\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2163\",\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"1919\",\"1920\",\"2091\",\"2140\",\"2141\",\"2149\",\"2150\"],\"displayName\":\"Class\",\"displayValue\":\"gio-vertical-bar-chart--default\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":-1,\"score\":0.15}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"1919\",\"1920\",\"2091\",\"2140\",\"2141\",\"2149\",\"2150\"],\"displayName\":\"data-highcharts-chart\",\"displayValue\":\"4\",\"chosenParent\":\"\",\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2163\",\"score\":0.2}],\"foundParentsIds\":[\"2091\",\"2140\",\"2141\",\"2149\",\"2150\"],\"displayName\":\"Style\",\"displayValue\":\" width: 100%\",\"chosenParent\":5,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2163\",\"score\":0.1}],\"foundParentsIds\":[\"2150\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":10,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":12,\"score\":\"0.79\",\"foundElementScore\":0.7881355932203389,\"foundElementID\":\"2164\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":-1,\"score\":0.3}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"1919\",\"1920\",\"2091\",\"2140\",\"2141\",\"2149\",\"2150\",\"2163\"],\"displayName\":\"Id\",\"displayValue\":\"highcharts-ocgxsl6-12\",\"chosenParent\":\"\",\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2164\",\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"1919\",\"1920\",\"2091\",\"2140\",\"2141\",\"2149\",\"2150\",\"2163\"],\"displayName\":\"Class\",\"displayValue\":\"highcharts-container\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2164\",\"score\":0.09000000000000001}],\"foundParentsIds\":[\"2163\"],\"displayName\":\"Tag\",\"displayValue\":\"DIV\",\"chosenParent\":11,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2164\",\"score\":0.2}],\"foundParentsIds\":[\"2091\",\"2140\",\"2141\",\"2149\",\"2150\",\"2163\"],\"displayName\":\"Style\",\"displayValue\":\"position: relative\",\"chosenParent\":5,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":-1,\"score\":0.2}],\"foundParentsIds\":[\"2141\",\"2149\",\"2150\",\"2163\"],\"displayName\":\"Style\",\"displayValue\":\" width: 1026px\",\"chosenParent\":\"\",\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2164\",\"score\":0.18000000000000002}],\"foundParentsIds\":[\"2163\"],\"displayName\":\"Style\",\"displayValue\":\" height: 250px\",\"chosenParent\":11,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2164\",\"score\":0.2}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"1919\",\"1920\",\"2091\",\"2140\",\"2141\",\"2149\",\"2150\",\"2163\"],\"displayName\":\"Style\",\"displayValue\":\" text-align: left\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2164\",\"score\":0.2}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"1919\",\"1920\",\"2091\",\"2140\",\"2141\",\"2149\",\"2150\",\"2163\"],\"displayName\":\"Style\",\"displayValue\":\" line-height: normal\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2164\",\"score\":0.2}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"1919\",\"1920\",\"2091\",\"2140\",\"2141\",\"2149\",\"2150\",\"2163\"],\"displayName\":\"Style\",\"displayValue\":\" z-index: 0\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2164\",\"score\":0.2}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"1919\",\"1920\",\"2091\",\"2140\",\"2141\",\"2149\",\"2150\",\"2163\"],\"displayName\":\"Style\",\"displayValue\":\" -webkit-tap-highlight-color: rgba(0, 0, 0, 0)\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2164\",\"score\":0.09000000000000001}],\"foundParentsIds\":[\"2163\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":11,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":13,\"score\":\"0.79\",\"foundElementScore\":1,\"foundElementID\":\"2166\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2166\",\"score\":0.7110000000000001}],\"foundParentsIds\":[\"2164\"],\"displayName\":\"Text\",\"displayValue\":\"Created with Highcharts 5.0.14\",\"chosenParent\":12,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2166\",\"score\":0.237}],\"foundParentsIds\":[\"2164\"],\"displayName\":\"Tag\",\"displayValue\":\"desc\",\"chosenParent\":12,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":14,\"score\":\"0.74\",\"foundElementScore\":0.7372298624754421,\"foundElementID\":\"2165\",\"frameId\":null,\"isTargetElement\":true,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2165\",\"score\":0.15},{\"id\":\"2341\",\"score\":0.075}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"1919\",\"1920\",\"2091\",\"2140\",\"2141\",\"2149\",\"2150\",\"2163\",\"2164\"],\"displayName\":\"version\",\"displayValue\":\"1.1\",\"chosenParent\":10,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2165\",\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"1919\",\"1920\",\"2091\",\"2140\",\"2141\",\"2149\",\"2150\",\"2163\",\"2164\"],\"displayName\":\"Class\",\"displayValue\":\"highcharts-root\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[\"2165\",\"2341\"],\"foundElements\":[{\"id\":-1,\"score\":0.5}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"1919\",\"1920\",\"2091\",\"2140\",\"2141\",\"2149\",\"2150\",\"2163\",\"2164\"],\"displayName\":\"xmlns\",\"displayValue\":\"http://www.w3.org/2000/svg\",\"chosenParent\":\"\",\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[\"2341\"],\"foundElements\":[{\"id\":\"2165\",\"score\":0.3}],\"foundParentsIds\":[\"2149\",\"2150\",\"2163\",\"2164\"],\"displayName\":\"Tag\",\"displayValue\":\"svg\",\"chosenParent\":10,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2165\",\"score\":0.15800000000000003}],\"foundParentsIds\":[\"2164\"],\"displayName\":\"Style\",\"displayValue\":\"font-family:unset\",\"chosenParent\":12,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2165\",\"score\":0.2}],\"foundParentsIds\":[\"50\",\"1869\",\"1870\",\"1919\",\"1920\",\"2091\",\"2140\",\"2141\",\"2149\",\"2150\",\"2163\",\"2164\"],\"displayName\":\"Style\",\"displayValue\":\"font-size:12px\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2165\",\"score\":0.15800000000000003}],\"foundParentsIds\":[\"2164\"],\"displayName\":\"Style\",\"displayValue\":\"overflow:visible\",\"chosenParent\":12,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2165\",\"score\":0.07900000000000001}],\"foundParentsIds\":[\"2164\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":12,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2165\",\"score\":0.79}],\"foundParentsIds\":[\"2166\"],\"displayName\":\"child\",\"displayValue\":\"Text=Created with Highcharts 5.0.14\",\"chosenParent\":13,\"time\":0}]}],\"href\":\"chrome-extension://pebeiooilphfmbohdbhbomomkkoghoia/_generated_background_page.html\",\"totalRuntime\":10,\"frameId\":null,\"dynamicParentData\":null}},\"metricValue\":13958}"
],
[
"<19 seconds ago> ",
"2018-11-14T11:22:23.271Z 8ebc6d0b-e7ff-11e8-a420-63ea41b212d8 Attempting to write 13958 into slot 6."
],
[
"<19 seconds ago> ",
"2018-11-14T11:22:23.356Z 8eca0139-e7ff-11e8-a5b6-3398bdbd4786 event={\"labels\":[{\"name\":\"projectId\",\"value\":\"NetApp_16f9014d-a368-a70b-f5ae-52b81ea7ec84\"},{\"name\":\"name\",\"value\":\"ouBFhtLkIV.json\"}],\"metricName\":\"uploader_object\",\"blob\":{\"DVDvWv97ba\":{\"elementLocatorResults\":[{\"className\":\"ElementLocatorResult\",\"locatorIndex\":0,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"103\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"103\",\"score\":1}],\"foundParentsIds\":[],\"displayName\":\"Body\",\"displayValue\":\"true\",\"chosenParent\":\"\",\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":1,\"score\":\"0.87\",\"foundElementScore\":0.8736842105263158,\"foundElementID\":\"307\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"307\",\"score\":0.15}],\"foundParentsIds\":[\"103\"],\"displayName\":\"tabindex\",\"displayValue\":\"-1\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"307\",\"score\":0.5}],\"foundParentsIds\":[\"103\"],\"displayName\":\"role\",\"displayValue\":\"dialog\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"307\",\"score\":0.5}],\"foundParentsIds\":[\"103\"],\"displayName\":\"Class\",\"displayValue\":\"ui-dialog\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"307\",\"score\":0.5}],\"foundParentsIds\":[\"103\"],\"displayName\":\"Class\",\"displayValue\":\"no-close\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"307\",\"score\":0.5}],\"foundParentsIds\":[\"103\"],\"displayName\":\"Class\",\"displayValue\":\"confirm\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"307\",\"score\":0.5}],\"foundParentsIds\":[\"103\"],\"displayName\":\"Class\",\"displayValue\":\"no-title-dialog\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"307\",\"score\":0.5}],\"foundParentsIds\":[\"103\"],\"displayName\":\"Class\",\"displayValue\":\"ui-draggable\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":-1,\"score\":0.15}],\"foundParentsIds\":[\"103\"],\"displayName\":\"aria-describedby\",\"displayValue\":\"ui-id-25\",\"chosenParent\":\"\",\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":-1,\"score\":0.15}],\"foundParentsIds\":[\"103\"],\"displayName\":\"aria-labelledby\",\"displayValue\":\"ui-id-26\",\"chosenParent\":\"\",\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"307\",\"score\":0.2}],\"foundParentsIds\":[\"103\"],\"displayName\":\"Style\",\"displayValue\":\" width: 415px\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":-1,\"score\":0.2}],\"foundParentsIds\":[\"103\"],\"displayName\":\"Style\",\"displayValue\":\" top: 267.6px\",\"chosenParent\":\"\",\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"307\",\"score\":0.2}],\"foundParentsIds\":[\"103\"],\"displayName\":\"Style\",\"displayValue\":\" left: 752.5px\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"307\",\"score\":0.2}],\"foundParentsIds\":[\"103\"],\"displayName\":\"Style\",\"displayValue\":\" display: block\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"307\",\"score\":0.2}],\"foundParentsIds\":[\"103\"],\"displayName\":\"Style\",\"displayValue\":\" z-index: 2001\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"307\",\"score\":0.2}],\"foundParentsIds\":[\"103\"],\"displayName\":\"Style\",\"displayValue\":\" opacity: 1\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"323\",\"score\":0.1}],\"foundParentsIds\":[\"103\"],\"displayName\":\"Index\",\"displayValue\":\"14/15 from top\",\"chosenParent\":0,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":2,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"309\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"309\",\"score\":0.5}],\"foundParentsIds\":[\"103\",\"307\"],\"displayName\":\"Class\",\"displayValue\":\"dialog-container\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"309\",\"score\":0.08700000000000001}],\"foundParentsIds\":[\"307\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":1,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":3,\"score\":\"0.86\",\"foundElementScore\":0.8636363636363636,\"foundElementID\":\"315\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"315\",\"score\":0.5}],\"foundParentsIds\":[\"103\",\"307\",\"309\"],\"displayName\":\"Class\",\"displayValue\":\"ui-dialog-content\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"315\",\"score\":0.5}],\"foundParentsIds\":[\"307\",\"309\"],\"displayName\":\"Class\",\"displayValue\":\"ui-widget-content\",\"chosenParent\":2,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":-1,\"score\":0.3}],\"foundParentsIds\":[\"103\",\"307\",\"309\"],\"displayName\":\"Id\",\"displayValue\":\"ui-id-25\",\"chosenParent\":\"\",\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"315\",\"score\":0.2}],\"foundParentsIds\":[\"103\",\"307\",\"309\"],\"displayName\":\"Style\",\"displayValue\":\"width: auto\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"315\",\"score\":0.2}],\"foundParentsIds\":[\"103\",\"307\",\"309\"],\"displayName\":\"Style\",\"displayValue\":\" min-height: 0px\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"315\",\"score\":0.2}],\"foundParentsIds\":[\"103\",\"307\",\"309\"],\"displayName\":\"Style\",\"displayValue\":\" max-height: none\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"315\",\"score\":0.2}],\"foundParentsIds\":[\"307\",\"309\"],\"displayName\":\"Style\",\"displayValue\":\" height: auto\",\"chosenParent\":2,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"315\",\"score\":0.1}],\"foundParentsIds\":[\"309\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":2,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":4,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"316\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"316\",\"score\":0.5}],\"foundParentsIds\":[\"103\",\"307\",\"309\",\"315\"],\"displayName\":\"Class\",\"displayValue\":\"action-required-dialog\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"316\",\"score\":0.5}],\"foundParentsIds\":[\"103\",\"307\",\"309\",\"315\"],\"displayName\":\"Class\",\"displayValue\":\"approval-dialog-content\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"316\",\"score\":0.08600000000000001}],\"foundParentsIds\":[\"315\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":3,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":5,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"321\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"321\",\"score\":0.5}],\"foundParentsIds\":[\"103\",\"307\",\"309\",\"315\",\"316\"],\"displayName\":\"Class\",\"displayValue\":\"bottom-button-row\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"321\",\"score\":0.1}],\"foundParentsIds\":[\"316\"],\"displayName\":\"Index\",\"displayValue\":\"5/5 from top\",\"chosenParent\":4,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":6,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"322\",\"frameId\":null,\"isTargetElement\":true,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"322\",\"score\":0.5}],\"foundParentsIds\":[\"103\",\"307\",\"309\",\"315\",\"316\",\"321\"],\"displayName\":\"ng-if\",\"displayValue\":\"!isFixable(action)\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"322\",\"score\":0.5}],\"foundParentsIds\":[\"103\",\"307\",\"309\",\"315\",\"316\",\"321\"],\"displayName\":\"Class\",\"displayValue\":\"noc-close\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"322\",\"score\":0.5}],\"foundParentsIds\":[\"315\",\"316\",\"321\"],\"displayName\":\"Class\",\"displayValue\":\"ng-scope\",\"chosenParent\":4,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"322\",\"score\":0.5}],\"foundParentsIds\":[\"103\",\"307\",\"309\",\"315\",\"316\",\"321\"],\"displayName\":\"ng-click\",\"displayValue\":\"modalCancel()\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"322\",\"score\":0.9}],\"foundParentsIds\":[\"315\",\"316\",\"321\"],\"displayName\":\"Text\",\"displayValue\":\"Close\",\"chosenParent\":4,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"322\",\"score\":0.3}],\"foundParentsIds\":[\"315\",\"316\",\"321\"],\"displayName\":\"Tag\",\"displayValue\":\"BUTTON\",\"chosenParent\":4,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"322\",\"score\":0.1}],\"foundParentsIds\":[\"321\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":5,\"time\":0}]}],\"href\":\"chrome-extension://pebeiooilphfmbohdbhbomomkkoghoia/_generated_background_page.html\",\"totalRuntime\":15,\"frameId\":null,\"dynamicParentData\":null}},\"metricValue\":9437}"
],
[
"<19 seconds ago> ",
"2018-11-14T11:22:23.356Z 8eca0139-e7ff-11e8-a5b6-3398bdbd4786 Attempting to write 9437 into slot 4."
],
[
"<19 seconds ago> ",
"2018-11-14T11:22:23.677Z 8ef8b247-e7ff-11e8-b846-43b6120a6011 event={\"labels\":[{\"name\":\"projectId\",\"value\":\"NetApp_16f9014d-a368-a70b-f5ae-52b81ea7ec84\"},{\"name\":\"name\",\"value\":\"aaWaldfKfp.json\"}],\"metricName\":\"uploader_object\",\"blob\":{\"FLPSqgoDv7\":{\"elementLocatorResults\":[{\"className\":\"ElementLocatorResult\",\"locatorIndex\":0,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"25\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"25\",\"score\":1}],\"foundParentsIds\":[],\"displayName\":\"Body\",\"displayValue\":\"true\",\"chosenParent\":\"\",\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":1,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"26\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"26\",\"score\":0.9}],\"foundParentsIds\":[\"25\"],\"displayName\":\"Id\",\"displayValue\":\"mainContainer\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"26\",\"score\":0.1}],\"foundParentsIds\":[\"25\"],\"displayName\":\"Index\",\"displayValue\":\"1/13 from top\",\"chosenParent\":0,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":2,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"29\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"29\",\"score\":0.3}],\"foundParentsIds\":[\"25\",\"26\"],\"displayName\":\"Tag\",\"displayValue\":\"UI-VIEW\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"29\",\"score\":0.1}],\"foundParentsIds\":[\"26\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":1,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":3,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"59\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"59\",\"score\":0.5}],\"foundParentsIds\":[\"25\",\"26\",\"29\"],\"displayName\":\"Class\",\"displayValue\":\"layout\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"59\",\"score\":0.5}],\"foundParentsIds\":[\"25\",\"26\",\"29\"],\"displayName\":\"Class\",\"displayValue\":\"virgin-layout\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"59\",\"score\":0.1}],\"foundParentsIds\":[\"29\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":2,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":4,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"68\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"68\",\"score\":0.5}],\"foundParentsIds\":[\"25\",\"26\",\"29\",\"59\"],\"displayName\":\"name\",\"displayValue\":\"VirginWizardForm\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"68\",\"score\":0.3}],\"foundParentsIds\":[\"25\",\"26\",\"29\",\"59\"],\"displayName\":\"Tag\",\"displayValue\":\"NG-FORM\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"68\",\"score\":0.1}],\"foundParentsIds\":[\"59\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":3,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":5,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"69\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"69\",\"score\":0.5}],\"foundParentsIds\":[\"25\",\"26\",\"29\",\"59\",\"68\"],\"displayName\":\"Class\",\"displayValue\":\"layout-content-holder\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"69\",\"score\":0.1}],\"foundParentsIds\":[\"68\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":4,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":6,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"88\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"88\",\"score\":0.9}],\"foundParentsIds\":[\"69\"],\"displayName\":\"Text\",\"displayValue\":\"Create\",\"chosenParent\":5,\"time\":3},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"88\",\"score\":0.5}],\"foundParentsIds\":[\"69\"],\"displayName\":\"Class\",\"displayValue\":\"selected\",\"chosenParent\":5,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"88\",\"score\":0.5}],\"foundParentsIds\":[\"69\"],\"displayName\":\"ng-click\",\"displayValue\":\"setTab(\\\\'create\\\\');\",\"chosenParent\":5,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"88\",\"score\":0.5}],\"foundParentsIds\":[\"69\"],\"displayName\":\"ng-class\",\"displayValue\":\"{selected: tab === \\\\'create\\\\'}\",\"chosenParent\":5,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":7,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"71\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"71\",\"score\":0.1}],\"foundParentsIds\":[\"69\"],\"displayName\":\"Index\",\"displayValue\":\"2/3 from top\",\"chosenParent\":5,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"71\",\"score\":1}],\"foundParentsIds\":[\"88\"],\"displayName\":\"child\",\"displayValue\":\"Text=Create\",\"chosenParent\":6,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":8,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"78\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"78\",\"score\":0.1}],\"foundParentsIds\":[\"71\"],\"displayName\":\"Index\",\"displayValue\":\"3/3 from top\",\"chosenParent\":7,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"78\",\"score\":1}],\"foundParentsIds\":[\"88\"],\"displayName\":\"child\",\"displayValue\":\"Text=Create\",\"chosenParent\":6,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":9,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"79\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"79\",\"score\":0.1}],\"foundParentsIds\":[\"78\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":8,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"79\",\"score\":1}],\"foundParentsIds\":[\"88\"],\"displayName\":\"child\",\"displayValue\":\"Text=Create\",\"chosenParent\":6,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":10,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"82\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"82\",\"score\":0.5}],\"foundParentsIds\":[\"78\",\"79\"],\"displayName\":\"novalidate\",\"displayValue\":\"novalidate\",\"chosenParent\":8,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"82\",\"score\":0.5}],\"foundParentsIds\":[\"78\",\"79\"],\"displayName\":\"Class\",\"displayValue\":\"ng-pristine\",\"chosenParent\":8,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"82\",\"score\":0.5}],\"foundParentsIds\":[\"78\",\"79\"],\"displayName\":\"Class\",\"displayValue\":\"ng-valid\",\"chosenParent\":8,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"82\",\"score\":0.3}],\"foundParentsIds\":[\"78\",\"79\"],\"displayName\":\"Tag\",\"displayValue\":\"FORM\",\"chosenParent\":8,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"82\",\"score\":0.1}],\"foundParentsIds\":[\"79\"],\"displayName\":\"Index\",\"displayValue\":\"3/4 from top\",\"chosenParent\":9,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":11,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"85\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"85\",\"score\":0.3}],\"foundParentsIds\":[\"82\"],\"displayName\":\"Tag\",\"displayValue\":\"NG-INCLUDE\",\"chosenParent\":10,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"85\",\"score\":0.1}],\"foundParentsIds\":[\"82\"],\"displayName\":\"Index\",\"displayValue\":\"3/3 from top\",\"chosenParent\":10,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":12,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"86\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"86\",\"score\":0.5}],\"foundParentsIds\":[\"25\",\"26\",\"29\",\"59\",\"68\",\"69\",\"71\",\"78\",\"79\",\"82\",\"85\"],\"displayName\":\"Class\",\"displayValue\":\"stage\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"86\",\"score\":0.5}],\"foundParentsIds\":[\"25\",\"26\",\"29\",\"59\",\"68\",\"69\",\"71\",\"78\",\"79\",\"82\",\"85\"],\"displayName\":\"Class\",\"displayValue\":\"no-border\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"86\",\"score\":0.9}],\"foundParentsIds\":[\"25\",\"26\",\"29\",\"59\",\"68\",\"69\",\"71\",\"78\",\"79\",\"82\",\"85\"],\"displayName\":\"Id\",\"displayValue\":\"chooseStep\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"86\",\"score\":0.1}],\"foundParentsIds\":[\"85\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":11,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":13,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"91\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"91\",\"score\":0.5}],\"foundParentsIds\":[\"25\",\"26\",\"29\",\"59\",\"68\",\"69\",\"71\",\"78\",\"79\",\"82\",\"85\",\"86\"],\"displayName\":\"ng-if\",\"displayValue\":\"tab === \\\\'create\\\\'\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"91\",\"score\":0.1}],\"foundParentsIds\":[\"86\"],\"displayName\":\"Index\",\"displayValue\":\"3/3 from top\",\"chosenParent\":12,\"time\":1}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":14,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"105\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"105\",\"score\":0.5}],\"foundParentsIds\":[\"25\",\"26\",\"29\",\"59\",\"68\",\"69\",\"71\",\"78\",\"79\",\"82\",\"85\",\"86\",\"91\"],\"displayName\":\"ng-click\",\"displayValue\":\"startWizardWrapper(\\\\'HA\\\\')\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"105\",\"score\":0.5}],\"foundParentsIds\":[\"25\",\"26\",\"29\",\"59\",\"68\",\"69\",\"71\",\"78\",\"79\",\"82\",\"85\",\"86\",\"91\"],\"displayName\":\"ng-class\",\"displayValue\":\"{\\\\'selected\\\\':choice === \\\\'HA\\\\'}\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"105\",\"score\":0.1}],\"foundParentsIds\":[\"91\"],\"displayName\":\"Index\",\"displayValue\":\"2/4 from top\",\"chosenParent\":13,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":15,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"112\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"112\",\"score\":0.5}],\"foundParentsIds\":[\"105\"],\"displayName\":\"Class\",\"displayValue\":\"info\",\"chosenParent\":14,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"112\",\"score\":0.1}],\"foundParentsIds\":[\"105\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":14,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":16,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"113\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"113\",\"score\":0.5}],\"foundParentsIds\":[\"25\",\"26\",\"29\",\"59\",\"68\",\"69\",\"71\",\"78\",\"79\",\"82\",\"85\",\"86\",\"91\",\"105\",\"112\"],\"displayName\":\"simple-text\",\"displayValue\":\"A high-availability pair of nodes in AWS for workloads that require fault tolerance and nondisruptive operations for business continuity.\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"113\",\"score\":0.5}],\"foundParentsIds\":[\"105\",\"112\"],\"displayName\":\"direction\",\"displayValue\":\"bottom\",\"chosenParent\":14,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"113\",\"score\":0.5}],\"foundParentsIds\":[\"105\",\"112\"],\"displayName\":\"custom-style-classes\",\"displayValue\":\"no-i\",\"chosenParent\":14,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"113\",\"score\":0.5}],\"foundParentsIds\":[\"105\",\"112\"],\"displayName\":\"Class\",\"displayValue\":\"ng-isolate-scope\",\"chosenParent\":14,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"113\",\"score\":0.3}],\"foundParentsIds\":[\"105\",\"112\"],\"displayName\":\"Tag\",\"displayValue\":\"MORE-INFO-COMPONENT\",\"chosenParent\":14,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"113\",\"score\":0.1}],\"foundParentsIds\":[\"112\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":15,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":17,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"118\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"118\",\"score\":0.9}],\"foundParentsIds\":[\"113\"],\"displayName\":\"Text\",\"displayValue\":\"A high-availability pair of nodes in AWS for workloads that require fault tolerance and nondisruptive operations for business continuity.\",\"chosenParent\":16,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"118\",\"score\":0.5}],\"foundParentsIds\":[\"113\"],\"displayName\":\"ng-if\",\"displayValue\":\"ctrlMoreInfo.simpleText\",\"chosenParent\":16,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"118\",\"score\":0.5}],\"foundParentsIds\":[\"113\"],\"displayName\":\"ng-bind-html\",\"displayValue\":\"ctrlMoreInfo.simpleText\",\"chosenParent\":16,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"118\",\"score\":0.5}],\"foundParentsIds\":[\"113\"],\"displayName\":\"Class\",\"displayValue\":\"ng-binding\",\"chosenParent\":16,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"118\",\"score\":0.5}],\"foundParentsIds\":[\"113\"],\"displayName\":\"Class\",\"displayValue\":\"ng-scope\",\"chosenParent\":16,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"118\",\"score\":0.3}],\"foundParentsIds\":[\"113\"],\"displayName\":\"Tag\",\"displayValue\":\"P\",\"chosenParent\":16,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":18,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"114\",\"frameId\":null,\"isTargetElement\":true,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"114\",\"score\":0.5}],\"foundParentsIds\":[\"105\",\"112\",\"113\"],\"displayName\":\"Class\",\"displayValue\":\"storage-system-more-info-widget\",\"chosenParent\":14,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"114\",\"score\":0.5}],\"foundParentsIds\":[\"105\",\"112\",\"113\"],\"displayName\":\"Class\",\"displayValue\":\"popover-bottom\",\"chosenParent\":14,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"114\",\"score\":0.5}],\"foundParentsIds\":[\"105\",\"112\",\"113\"],\"displayName\":\"Class\",\"displayValue\":\"no-i\",\"chosenParent\":14,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"114\",\"score\":0.5}],\"foundParentsIds\":[\"105\",\"112\",\"113\"],\"displayName\":\"ng-class\",\"displayValue\":\"[\\\\'popover-\\\\' + ctrlMoreInfo.direction, ctrlMoreInfo.customStyleClasses]\",\"chosenParent\":14,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"114\",\"score\":0.1}],\"foundParentsIds\":[\"113\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":16,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"114\",\"score\":1}],\"foundParentsIds\":[\"118\"],\"displayName\":\"child\",\"displayValue\":\"Text=A high-availability pair of nodes in AWS for workloads that require fault tolerance and nondisruptive operations for business continuity.\",\"chosenParent\":17,\"time\":1}]}],\"href\":\"chrome-extension://pebeiooilphfmbohdbhbomomkkoghoia/_generated_background_page.html\",\"totalRuntime\":14,\"frameId\":null,\"dynamicParentData\":null}},\"metricValue\":15906}"
],
[
"<19 seconds ago> ",
"2018-11-14T11:22:23.678Z 8ef8b247-e7ff-11e8-b846-43b6120a6011 Attempting to write 15906 into slot 7."
],
[
"<19 seconds ago> ",
"2018-11-14T11:22:23.728Z 8eff424b-e7ff-11e8-9e2e-87a6f0930449 event={\"labels\":[{\"name\":\"projectId\",\"value\":\"XWZa2vb5\"},{\"name\":\"name\",\"value\":\"LmjjzEZS5H.json\"}],\"metricName\":\"uploader_object\",\"blob\":{\"AOouaB1hjQ\":{\"elementLocatorResults\":[{\"className\":\"ElementLocatorResult\",\"locatorIndex\":0,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"46\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"46\",\"score\":1}],\"foundParentsIds\":[],\"displayName\":\"Body\",\"displayValue\":\"true\",\"chosenParent\":\"\",\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":1,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"1865\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1865\",\"score\":0.8}],\"foundParentsIds\":[\"46\"],\"displayName\":\"Id\",\"displayValue\":\"content\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1865\",\"score\":0.1}],\"foundParentsIds\":[\"46\"],\"displayName\":\"Index\",\"displayValue\":\"2/15 from top\",\"chosenParent\":0,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":2,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"1866\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1866\",\"score\":0.5}],\"foundParentsIds\":[\"46\",\"1865\"],\"displayName\":\"Class\",\"displayValue\":\"main\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1866\",\"score\":0.1}],\"foundParentsIds\":[\"1865\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":1,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":3,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"1915\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1915\",\"score\":0.5}],\"foundParentsIds\":[\"46\",\"1865\",\"1866\"],\"displayName\":\"Class\",\"displayValue\":\"en-container\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1915\",\"score\":0.1}],\"foundParentsIds\":[\"1866\"],\"displayName\":\"Index\",\"displayValue\":\"6/6 from top\",\"chosenParent\":2,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":4,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"1916\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1916\",\"score\":0.5}],\"foundParentsIds\":[\"46\",\"1865\",\"1866\",\"1915\"],\"displayName\":\"Class\",\"displayValue\":\"en-main-content\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"1916\",\"score\":0.1}],\"foundParentsIds\":[\"1915\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":3,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":5,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"2087\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2087\",\"score\":0.5}],\"foundParentsIds\":[\"46\",\"1865\",\"1866\",\"1915\",\"1916\"],\"displayName\":\"Class\",\"displayValue\":\"en-content\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2087\",\"score\":0.1}],\"foundParentsIds\":[\"1916\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":4,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":6,\"score\":\"0.68\",\"foundElementScore\":0.6818181818181818,\"foundElementID\":\"2108\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2108\",\"score\":0.5}],\"foundParentsIds\":[\"46\",\"1865\",\"1866\",\"1915\",\"1916\",\"2087\"],\"displayName\":\"Class\",\"displayValue\":\"analytics-canvas\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2088\",\"score\":0.25},{\"id\":\"2108\",\"score\":0.25}],\"foundParentsIds\":[\"46\",\"1865\",\"1866\",\"1915\",\"1916\",\"2087\"],\"displayName\":\"Class\",\"displayValue\":\"en-canvas\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2088\",\"score\":0.1}],\"foundParentsIds\":[\"2087\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":5,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":7,\"score\":\"0.20\",\"foundElementScore\":1,\"foundElementID\":\"2109\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2109\",\"score\":0.068}],\"foundParentsIds\":[\"2108\"],\"displayName\":\"Index\",\"displayValue\":\"4/5 from top\",\"chosenParent\":6,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":8,\"score\":\"0.03\",\"foundElementScore\":0.1666666666666667,\"foundElementID\":\"2110\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2111\",\"score\":0.016666666666666666},{\"id\":\"2190\",\"score\":0.016666666666666666},{\"id\":\"2202\",\"score\":0.016666666666666666},{\"id\":\"2304\",\"score\":0.016666666666666666},{\"id\":\"2711\",\"score\":0.016666666666666666},{\"id\":\"2811\",\"score\":0.016666666666666666}],\"foundParentsIds\":[\"2109\"],\"displayName\":\"Class\",\"displayValue\":\"en-canvas-section-heading\",\"chosenParent\":7,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2110\",\"score\":0.020000000000000004}],\"foundParentsIds\":[\"2109\"],\"displayName\":\"Index\",\"displayValue\":\"1/2 from top\",\"chosenParent\":7,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":9,\"score\":\"1.00\",\"foundElementScore\":0.9966777408637874,\"foundElementID\":\"2712\",\"frameId\":null,\"isTargetElement\":true,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2712\",\"score\":0.9}],\"foundParentsIds\":[\"46\",\"1865\",\"1866\",\"1915\",\"1916\",\"2087\",\"2108\",\"2109\",\"2110\"],\"displayName\":\"Text\",\"displayValue\":\"Heatmap\",\"chosenParent\":0,\"time\":605},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"2111\",\"score\":0.003}],\"foundParentsIds\":[\"2110\"],\"displayName\":\"Index\",\"displayValue\":\"1/3 from top\",\"chosenParent\":8,\"time\":0}]}],\"href\":\"chrome-extension://pebeiooilphfmbohdbhbomomkkoghoia/_generated_background_page.html\",\"totalRuntime\":608,\"frameId\":null,\"dynamicParentData\":null}},\"metricValue\":6060}"
],
[
"<19 seconds ago> ",
"2018-11-14T11:22:23.728Z 8eff424b-e7ff-11e8-9e2e-87a6f0930449 Attempting to write 6060 into slot 3."
],
[
"<19 seconds ago> ",
"2018-11-14T11:22:23.782Z 8f055caf-e7ff-11e8-9d6a-f5e73d70722a event={\"labels\":[{\"name\":\"projectId\",\"value\":\"WyRAcBgl\"},{\"name\":\"name\",\"value\":\"fvRbdy3ONK.json\"}],\"metricName\":\"uploader_object\",\"blob\":{\"MDIb9fHa4d\":{\"elementLocatorResults\":[{\"className\":\"ElementLocatorResult\",\"locatorIndex\":0,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"43\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"43\",\"score\":1}],\"foundParentsIds\":[],\"displayName\":\"Body\",\"displayValue\":\"true\",\"chosenParent\":\"\",\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":1,\"score\":\"0.07\",\"foundElementScore\":0.25,\"foundElementID\":\"10495\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":-1,\"score\":0.3}],\"foundParentsIds\":[\"43\"],\"displayName\":\"Id\",\"displayValue\":\"ember742\",\"chosenParent\":\"\",\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"10495\",\"score\":0.1}],\"foundParentsIds\":[\"43\"],\"displayName\":\"Index\",\"displayValue\":\"9/11 from top\",\"chosenParent\":0,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":2,\"score\":\"0.99\",\"foundElementScore\":0.9946442234123949,\"foundElementID\":\"52\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"52\",\"score\":0.8}],\"foundParentsIds\":[\"43\",\"10495\"],\"displayName\":\"Id\",\"displayValue\":\"application\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"52\",\"score\":0.5}],\"foundParentsIds\":[\"43\",\"10495\"],\"displayName\":\"lang\",\"displayValue\":\"en\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"10496\",\"score\":0.007000000000000001}],\"foundParentsIds\":[\"10495\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":1,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":3,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"53\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"53\",\"score\":0.5}],\"foundParentsIds\":[\"43\",\"10495\",\"52\"],\"displayName\":\"Class\",\"displayValue\":\"rows\",\"chosenParent\":0,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"53\",\"score\":0.099}],\"foundParentsIds\":[\"52\"],\"displayName\":\"Index\",\"displayValue\":\"1/3 from top\",\"chosenParent\":2,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":4,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"232\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"232\",\"score\":0.8}],\"foundParentsIds\":[\"43\",\"10495\",\"52\",\"53\"],\"displayName\":\"Id\",\"displayValue\":\"gantts\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"232\",\"score\":0.5}],\"foundParentsIds\":[\"43\",\"10495\",\"52\",\"53\"],\"displayName\":\"Class\",\"displayValue\":\"from-four\",\"chosenParent\":0,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"232\",\"score\":0.1}],\"foundParentsIds\":[\"53\"],\"displayName\":\"Index\",\"displayValue\":\"3/5 from top\",\"chosenParent\":3,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":5,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"457\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"457\",\"score\":0.8}],\"foundParentsIds\":[\"43\",\"10495\",\"52\",\"53\",\"232\"],\"displayName\":\"Id\",\"displayValue\":\"main-gantt-section\",\"chosenParent\":0,\"time\":2},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"457\",\"score\":0.2}],\"foundParentsIds\":[\"43\",\"10495\",\"52\",\"53\",\"232\"],\"displayName\":\"Style\",\"displayValue\":\"top: 0px\",\"chosenParent\":0,\"time\":5},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"457\",\"score\":0.1}],\"foundParentsIds\":[\"232\"],\"displayName\":\"Index\",\"displayValue\":\"2/6 from top\",\"chosenParent\":4,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":6,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"493\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"493\",\"score\":0.8}],\"foundParentsIds\":[\"457\"],\"displayName\":\"Id\",\"displayValue\":\"linesHatch\",\"chosenParent\":5,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"493\",\"score\":0.15}],\"foundParentsIds\":[\"457\"],\"displayName\":\"width\",\"displayValue\":\"4\",\"chosenParent\":5,\"time\":1},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"493\",\"score\":0.15}],\"foundParentsIds\":[\"457\"],\"displayName\":\"height\",\"displayValue\":\"4\",\"chosenParent\":5,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":7,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"486\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"486\",\"score\":0.1}],\"foundParentsIds\":[\"457\"],\"displayName\":\"Index\",\"displayValue\":\"2/2 from top\",\"chosenParent\":5,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"486\",\"score\":1}],\"foundParentsIds\":[\"493\"],\"displayName\":\"child\",\"displayValue\":\"Id=linesHatch\",\"chosenParent\":6,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":8,\"score\":\"0.82\",\"foundElementScore\":0.8214285714285714,\"foundElementID\":\"487\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"487\",\"score\":0.8}],\"foundParentsIds\":[\"43\",\"10495\",\"52\",\"53\",\"232\",\"457\",\"486\"],\"displayName\":\"Id\",\"displayValue\":\"gantt-main\",\"chosenParent\":0,\"time\":4},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"487\",\"score\":0.25},{\"id\":\"9816\",\"score\":0.25}],\"foundParentsIds\":[\"486\"],\"displayName\":\"Class\",\"displayValue\":\"ember-view\",\"chosenParent\":7,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"487\",\"score\":0.1}],\"foundParentsIds\":[\"486\"],\"displayName\":\"Index\",\"displayValue\":\"1/1 from top\",\"chosenParent\":7,\"time\":0}]},{\"className\":\"ElementLocatorResult\",\"locatorIndex\":9,\"score\":\"1.00\",\"foundElementScore\":1,\"foundElementID\":\"488\",\"frameId\":null,\"selectorResults\":[{\"className\":\"SelectorResult\",\"validatedElements\":[],\"foundElements\":[{\"id\":\"488\",\"score\":0.5}],\"foundParentsIds\":[\"457\",\"486\",\"487\"],\"displayName\":\"Class\",\"displayValue\":\"gantt-sheet\",\"chosenParent\":5,\"time\":0},{\"className\":\"SelectorResult\",\"validatedElements\":[
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment