├── .jshintignore ├── OSSMETADATA ├── .babelrc ├── wct.conf.json ├── .jshintrc ├── .gitignore ├── .editorconfig ├── webpack.config.js ├── .eslintrc ├── test ├── index.html └── vizceral-component-test.html ├── bower.json ├── package.json ├── vizceral-component.html ├── index.html ├── README.md ├── ELEMENT.md ├── ELEMENT.json ├── src └── vizceral-component.js ├── LICENSE └── sample_data.json /.jshintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /OSSMETADATA: -------------------------------------------------------------------------------- 1 | osslifecycle=archived 2 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ "es2015" ] 3 | } 4 | -------------------------------------------------------------------------------- /wct.conf.json: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": { 3 | "local": { 4 | "browsers": ["chrome","firefox"] 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "node": true, 3 | 4 | "curly": true, 5 | "latedef": true, 6 | "quotmark": true, 7 | "undef": true, 8 | "unused": true, 9 | "trailing": true 10 | } 11 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Third Party Dependencies 2 | node_modules 3 | bower_components 4 | 5 | 6 | # Generated files 7 | npm-debug.log 8 | *.map 9 | *.worker.js 10 | 11 | 12 | # Internal release helpers 13 | /release 14 | 15 | 16 | # System files 17 | .DS_Store 18 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig is awesome: http://EditorConfig.org 2 | 3 | # top-most EditorConfig file 4 | root = true 5 | 6 | # Unix-style newlines with a newline ending every file 7 | [*] 8 | end_of_line = lf 9 | insert_final_newline = true 10 | indent_style = space 11 | indent_size = 2 12 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | entry: './src/vizceral-component.js', 3 | output: { 4 | filename: 'vizceral-component.js' 5 | }, 6 | module: { 7 | loaders: [ 8 | { 9 | test: /\.js$/, 10 | exclude: /(node_modules|bower_components)/, 11 | loader: 'babel' 12 | }, 13 | { test: /\.html$/, loader: 'html' } 14 | ] 15 | } 16 | }; 17 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "browser": true 4 | }, 5 | "extends": [ 6 | "airbnb-base" 7 | ], 8 | "rules": { 9 | "indent": [ 10 | 2, 11 | 2 12 | ], 13 | "new-cap": 0, 14 | "comma-dangle": 0, 15 | "func-names": 0, 16 | "no-var": 1, 17 | "object-shorthand": 0, 18 | "space-before-function-paren": [1, "always"], 19 | "no-param-reassign": 0, 20 | "max-len": 0, 21 | "import/no-unresolved": 0, 22 | "no-underscore-dangle": ["error", { "allowAfterThis": true }] 23 | }, 24 | "parser": "babel-eslint" 25 | } 26 | -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vizceral-component", 3 | "version": "2.0.0", 4 | "authors": [], 5 | "main": "vizceral-component.html", 6 | "keywords": [ 7 | "motion", 8 | "web-components", 9 | "traffic", 10 | "graph", 11 | "network", 12 | "particles" 13 | ], 14 | "license": "MIT", 15 | "ignore": [ 16 | "**/.*", 17 | "node_modules", 18 | "bower_components", 19 | "test", 20 | "tests" 21 | ], 22 | "dependencies": { 23 | "polymer": "Polymer/polymer#^1.2.0" 24 | }, 25 | "devDependencies": { 26 | "web-component-tester": "Polymer/web-component-tester#~3.3.30", 27 | "test-fixture": "polymerelements/test-fixture#^1.0.0" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /test/vizceral-component-test.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |

@@@name

20 |
21 | 22 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vizceral-component", 3 | "version": "2.0.0", 4 | "scripts": { 5 | "pretest": "hash wct 2>/dev/null || { echo >&2 \"There are no tests, maybe we should write some.\"; exit 1; }", 6 | "bower": "bower update && bower install", 7 | "dev": "npm run watch & polyserve -p 8084", 8 | "lint": "eslint src", 9 | "build": "npm run build:js", 10 | "build:js": "webpack --optimize-occurrence-order", 11 | "watch": "webpack --watch -d", 12 | "validate": "npm ls" 13 | }, 14 | "license": "Apache-2.0", 15 | "author": "Justin Reynolds ", 16 | "devDependencies": { 17 | "babel-core": "^6.10.4", 18 | "babel-eslint": "^6.1.2", 19 | "babel-loader": "^6.2.4", 20 | "babel-preset-es2015": "^6.9.0", 21 | "bower": "^1.7.9", 22 | "eslint": "^3.1.0", 23 | "eslint-config-airbnb-base": "^4.0.2", 24 | "eslint-plugin-import": "^1.10.3", 25 | "polyserve": "^0.12.0", 26 | "style-loader": "^0.13.1", 27 | "webpack": "^1.13.1" 28 | }, 29 | "dependencies": { 30 | "lodash": "^4.13.1", 31 | "vizceral": "^4.0.0" 32 | }, 33 | "repository": { 34 | "type": "git", 35 | "url": "git@github.com:Netflix/vizceral-component.git" 36 | }, 37 | "keywords": [ 38 | "traffic", 39 | "flow", 40 | "network", 41 | "graph", 42 | "particles", 43 | "webgl" 44 | ] 45 | } 46 | -------------------------------------------------------------------------------- /vizceral-component.html: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 18 | 19 | 20 | 70 | 71 | 72 | 73 | 74 | 75 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 37 | 38 | vizceral-component 39 | 40 | 41 | 42 | 43 | 44 | 45 |

vizceral-component

46 | 47 |

(docs)
48 |

Double click on a node to zoom into the node, hit ESC to zoom back out

49 | 50 | 51 | 52 | 81 | 82 | 83 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![](https://raw.githubusercontent.com/Netflix/vizceral/master/logo.png) 2 | 3 | # vizceral-component 4 | 5 | vizceral-component is a web component that wraps [vizceral](https://github.com/Netflix/vizceral) for displaying traffic data on a webgl canvas. If a graph of nodes and edges with data about traffic volume is provided, it will render a traffic graph animating the connection volume between nodes. 6 | 7 | This component can take multiple traffic graphs and will generate a 'global' graph showing all incoming traffic into each of the 'regions', with support for cross-region traffic. 8 | 9 | ## Using 10 | 1. Add vizceral-component to bower.json (and [webcomponentsjs](https://github.com/webcomponents/webcomponentsjs)) 11 | 12 | ```js 13 | "dependencies": { 14 | "vizceral-component": "git+ssh://git@github.com:Netflix/vizceral-component.git#master", 15 | "webcomponentsjs": "^0.7.21" 16 | } 17 | ``` 18 | 19 | * Install bower dependencies 20 | 21 | ``` 22 | $ bower install 23 | ``` 24 | 25 | * Make sure webcomponentsjs and vizceral-component get copied to the public folder for your project 26 | * Add the appropriate import statements 27 | 28 | ```html 29 | 30 | 31 | ``` 32 | 33 | * Now you can add the vizceral-component component anywhere in your page structure 34 | 35 | ```html 36 | 37 | ``` 38 | 39 | The component will not show anything unless you call `updateData` on the component with relevant traffic data. 40 | 41 | ### Styling 42 | The component uses CSS variables to set all the styles. For example, if you apply the class `vizceral-component` to the component: 43 | 44 | ```css 45 | .vizceral-component { 46 | --colorText: rgb(214, 214, 214); 47 | --colorTextDisabled: rgb(129, 129, 129); 48 | --colorNormal: rgb(186, 213, 237); 49 | --colorWarning: rgb(268, 185, 73); 50 | --colorDanger: rgb(184, 36, 36); 51 | --colorNormalDimmed: rgb(101, 117, 128); 52 | --colorBackgroundDark: rgb(35, 35, 35); 53 | --colorNormalDonut: rgb(91, 91, 91); 54 | --colorLabelBorder: rgb(16, 17, 18); 55 | --colorLabelText: rgb(0, 0, 0); 56 | --colorDonutInternalColor: rgb(35, 35, 35); 57 | --colorDonutInternalColorHighlighted: rgb(255, 255, 255); 58 | --colorConnectionLine: rgb(91, 91, 91); 59 | --colorPageBackground: rgb(45, 45, 45); 60 | --colorPageBackgroundTransparent: rgba(45, 45, 45, 0); 61 | --colorBorderLines: rgb(137, 137, 137); 62 | } 63 | ``` 64 | 65 | Since the main underlying rendering is done via three.js, the component needed an easy way to use the same values for CSS and JS variables. CSS variables are easily parsed in JS, so it provided a good way to declare all the styles in one place via CSS. 66 | 67 | ### Events 68 | See [ELEMENT.md](ELEMENT.md#events) 69 | 70 | ## Developing Locally 71 | To see your changes to `vizceral-component` locally, you'll need to link the package with bower: 72 | 73 | ``` 74 | $ git clone ssh://git@stash.corp.netflix.com:7999/traffic/vizceral-component.git 75 | $ cd vizceral-component 76 | $ bower link 77 | $ cd /path/to/project-using-vizceral-component 78 | $ bower link vizceral-component 79 | ``` 80 | 81 | ## Contributing 82 | 1. Clone this repo 83 | 2. Create a branch: `git checkout -b your-feature` 84 | 3. Make some changes 85 | 4. Test your changes by [running your local version](#developing-locally) 86 | 5. Push your branch and open a Pull Request 87 | 88 | ## License 89 | 90 | Code released under [the Apache 2.0 license](./LICENSE). 91 | 92 | ## Data Structures 93 | Example data in the format expected by the component 94 | -------------------------------------------------------------------------------- /ELEMENT.md: -------------------------------------------------------------------------------- 1 | # vizceral-component # 2 | 3 | 4 | 5 | es6 class name: *VizceralComponent* 6 | 7 | 8 | 9 | ### Properties ### 10 | 11 | | property | | description | 12 | | ------------- | ------------- | ------------- | 13 | | [showLabels](src/vizceral-component.js#80) | type: Boolean
value: true
observer: _showLabelsChanged | `show-labels` Whether to show node labels or not | 14 | | [view](src/vizceral-component.js#93) | type: Array
value: undefined
reflectToAttribute: true
observer: _viewChanged | `view` Selected view
Examples:
[] - global view
['us-west-2'] - node view for us-west-2
['us-west-2', 'api-prod'] - node view for api-prod in us-west-2 | 15 | | [customTrafficColorClasses](src/vizceral-component.js#105) | type: Array
value: undefined | `customTrafficColorClasses` Any custom traffic color classes that are going to be used for coloring
Unfortunately, this is needed because of the need to know which css variables exist to access them in javascript
Changes to this property after initial load are not watched; only the initial value is used. | 16 | 17 | 18 | 19 | ### Events ### 20 | 21 | | event | fired on | description | 22 | | ------------- | ------------- | ------------- | 23 | | vizceral-node-highlighted | fired on: [174](src/vizceral-component.js#174) | The `vizceral-node-highlighted` event is fired whenever a node is highlighted.

@event vizceral-node-highlighted
@property {object} node - The node object that has been highlighted/selected. | 24 | | vizceral-view-updated | fired on: [178](src/vizceral-component.js#178) | The `vizceral-view-updated` event is fired whenever the current displayed graph's view updates.

@event vizceral-view-updated | 25 | | vizceral-view-changed | fired on: [170](src/vizceral-component.js#170) | The `vizceral-view-changed` event is fired whenever the view changes

@event vizceral-view-changed
@property {array} view - The currently selected view (e.g. [] for top level graph, ['us-east-1'] for second level graph, ['us-east-1', 'api'] for node level) | 26 | | nodeFocused | | The `nodeFocused` event is fired whenever a node gains focus or the currently focused node is updated

@event nodeFocused
@property {object} node - The node object that has been focused, or the focused node that has been updated. | 27 | | vizceral-node-context-size-changed | fired on: [186](src/vizceral-component.js#186) | The `vizceral-node-context-size-changed` event is fired whenever the size of a node context panel is changed

@event vizceral-node-context-size-changed
@property {object} dimensions - The dimensions of the node context panel in which to inject context | 28 | | vizceral-matches-found | | The `vizceral-matches-found` event is fired whenever a searchString is provided

@event vizceral-matches-found
@property {object} match counts - { total: number, visible: number} | 29 | | attached | fired on: [194](src/vizceral-component.js#194) | The `attached` event is fired when the element is attached to the DOM.

@event attached | 30 | | vizceral-node-focused | fired on: [182](src/vizceral-component.js#182) | | 31 | 32 | 33 | 34 | ### Methods ### 35 | 36 | | method | params | | 37 | | ------------- | ------------- | ------------- | 38 | | [ready](src/vizceral-component.js#117) | | `ready` is called after all elements have been configured, but
propagates bottom-up. This element's children are ready, but parents
are not.

This is the point where you should make modifications to the DOM (when
necessary), or kick off any processes the element wants to perform. | 39 | | [attached](src/vizceral-component.js#126) | | `attached` fires once the element and its parents have been inserted
into a document.

This is a good place to perform any work related to your element's
visual state or active behavior (measuring sizes, beginning animations,
loading resources, etc). | 40 | | [detached](src/vizceral-component.js#197) | | The analog to `attached`, `detached` fires when the element has been
removed from a document.

Use this to clean up anything you did in `attached`.
The analog to `attached`, `detached` fires when the element has been
removed from a document.

Use this to clean up anything you did in `attached`. | 41 | | [zoomOutViewLevel](src/vizceral-component.js#208) | | If zoomed into a node or a service, zoom out one level up.
If in the global view, this is a noop. | 42 | | [setView](src/vizceral-component.js#226) | viewArray, highlightedNode | Set the current view of the component to the passed in array. If the passed
in array does not match an existing node, the component will try
each level up the array until it finds a match, defaulting to the global
view.

Ex:
[] - show the base global view
['us-east-1'] - show the view for 'us-east-1' if it exists
['us-east-1', 'api'] - show the api node in the us-east-1 graph if it exists

@param {array} viewArray - the array containing the view to set.
@param {string} nodeToHighlight - a node to highlight in the passed in view. | 43 | | [clearHighlight](src/vizceral-component.js#241) | | Clears the highlighted node, if there is one. If a node is not highlighted,
this is a noop. | 44 | | [findNodes](src/vizceral-component.js#251) | searchString | Highlight nodes that match searchString. Searches the node name and the list
of clusters, if nodes have one.

@param {string} searchString - The string to match against the nodes. | 45 | | [updateData](src/vizceral-component.js#261) | data | Set the new set of traffic data to render. This is expected to be called
with the complete set of traffic data anytime there is an update.

@param {object} data - The traffic data that matches the format in DATAFORMATS.md | 46 | | [setFilters](src/vizceral-component.js#270) | filters | Set the set of filters to apply along with their current values.

@param {object} filters - The filters that match the format in DATAFORMATS.md | 47 | | [setDefinitions](src/vizceral-component.js#279) | definitions | Update the mode definitions. Refer to github.com/Netflix/vizceral/DATAFORMATS.md#definitions

@param {object} definitions - Object map of definitions | 48 | | [setModes](src/vizceral-component.js#288) | modes | Set the lost of modes to apply along with their current values.

@param {object} modes - Map of modes to mode type, e.g. { detailedNode: 'volume' } | 49 | | [getNode](src/vizceral-component.js#297) | nodeArray | Get a specific node object

@param {array} nodeArray - e.g. [ node, node ] | 50 | | [getCurrentGraph](src/vizceral-component.js#304) | | Get the currently selected graph object | 51 | | [getGraphs](src/vizceral-component.js#311) | | Get all the graphs | 52 | | [_viewChanged](src/vizceral-component.js#233) | | | 53 | | [_showLabelsChanged](src/vizceral-component.js#320) | showLabels | fires when @show-labels is changed | 54 | 55 | -------------------------------------------------------------------------------- /ELEMENT.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "src/vizceral-component.js", 4 | "is": "vizceral-component", 5 | "es6ClassName": "VizceralComponent", 6 | "behaviors": {}, 7 | "properties": { 8 | "showLabels": { 9 | "type": "Boolean", 10 | "value": true, 11 | "observer": "_showLabelsChanged", 12 | "loc": 80, 13 | "comments": "`show-labels` Whether to show node labels or not" 14 | }, 15 | "view": { 16 | "type": "Array", 17 | "observer": "_viewChanged", 18 | "reflectToAttribute": true, 19 | "loc": 93, 20 | "comments": "`view` Selected view\nExamples:\n[] - global view\n['us-west-2'] - node view for us-west-2\n['us-west-2', 'api-prod'] - node view for api-prod in us-west-2" 21 | }, 22 | "customTrafficColorClasses": { 23 | "type": "Array", 24 | "loc": 105, 25 | "comments": "`customTrafficColorClasses` Any custom traffic color classes that are going to be used for coloring\nUnfortunately, this is needed because of the need to know which css variables exist to access them in javascript\nChanges to this property after initial load are not watched; only the initial value is used." 26 | } 27 | }, 28 | "events": { 29 | "vizceral-node-highlighted": { 30 | "comments": "The `vizceral-node-highlighted` event is fired whenever a node is highlighted.\n\n@event vizceral-node-highlighted\n@property {object} node - The node object that has been highlighted/selected.", 31 | "firedLoc": [ 32 | 174 33 | ] 34 | }, 35 | "vizceral-view-updated": { 36 | "comments": "The `vizceral-view-updated` event is fired whenever the current displayed graph's view updates.\n\n@event vizceral-view-updated", 37 | "firedLoc": [ 38 | 178 39 | ] 40 | }, 41 | "vizceral-view-changed": { 42 | "comments": "The `vizceral-view-changed` event is fired whenever the view changes\n\n@event vizceral-view-changed\n@property {array} view - The currently selected view (e.g. [] for top level graph, ['us-east-1'] for second level graph, ['us-east-1', 'api'] for node level)", 43 | "firedLoc": [ 44 | 170 45 | ] 46 | }, 47 | "nodeFocused": { 48 | "comments": "The `nodeFocused` event is fired whenever a node gains focus or the currently focused node is updated\n\n@event nodeFocused\n@property {object} node - The node object that has been focused, or the focused node that has been updated." 49 | }, 50 | "vizceral-node-context-size-changed": { 51 | "comments": "The `vizceral-node-context-size-changed` event is fired whenever the size of a node context panel is changed\n\n@event vizceral-node-context-size-changed\n@property {object} dimensions - The dimensions of the node context panel in which to inject context", 52 | "firedLoc": [ 53 | 186 54 | ] 55 | }, 56 | "vizceral-matches-found": { 57 | "comments": "The `vizceral-matches-found` event is fired whenever a searchString is provided\n\n@event vizceral-matches-found\n@property {object} match counts - { total: number, visible: number}" 58 | }, 59 | "attached": { 60 | "comments": "The `attached` event is fired when the element is attached to the DOM.\n\n@event attached", 61 | "firedLoc": [ 62 | 194 63 | ] 64 | }, 65 | "vizceral-node-focused": { 66 | "firedLoc": [ 67 | 182 68 | ] 69 | } 70 | }, 71 | "methods": { 72 | "ready": { 73 | "name": "ready", 74 | "params": [], 75 | "comments": "`ready` is called after all elements have been configured, but\npropagates bottom-up. This element's children are ready, but parents\nare not.\n\nThis is the point where you should make modifications to the DOM (when\nnecessary), or kick off any processes the element wants to perform.", 76 | "loc": 117 77 | }, 78 | "attached": { 79 | "name": "attached", 80 | "params": [], 81 | "comments": "`attached` fires once the element and its parents have been inserted\ninto a document.\n\nThis is a good place to perform any work related to your element's\nvisual state or active behavior (measuring sizes, beginning animations,\nloading resources, etc).", 82 | "loc": 126 83 | }, 84 | "detached": { 85 | "name": "detached", 86 | "params": [], 87 | "comments": "The analog to `attached`, `detached` fires when the element has been\nremoved from a document.\n\nUse this to clean up anything you did in `attached`.\nThe analog to `attached`, `detached` fires when the element has been\nremoved from a document.\n\nUse this to clean up anything you did in `attached`.", 88 | "loc": 197 89 | }, 90 | "zoomOutViewLevel": { 91 | "name": "zoomOutViewLevel", 92 | "params": [], 93 | "comments": "If zoomed into a node or a service, zoom out one level up.\nIf in the global view, this is a noop.", 94 | "loc": 208 95 | }, 96 | "setView": { 97 | "name": "setView", 98 | "params": [ 99 | "viewArray", 100 | "highlightedNode" 101 | ], 102 | "comments": "Set the current view of the component to the passed in array. If the passed\nin array does not match an existing node, the component will try\neach level up the array until it finds a match, defaulting to the global\nview.\n\nEx:\n[] - show the base global view\n['us-east-1'] - show the view for 'us-east-1' if it exists\n['us-east-1', 'api'] - show the api node in the us-east-1 graph if it exists\n\n@param {array} viewArray - the array containing the view to set.\n@param {string} nodeToHighlight - a node to highlight in the passed in view.", 103 | "loc": 226 104 | }, 105 | "_viewChanged": { 106 | "name": "_viewChanged", 107 | "params": [], 108 | "comments": "", 109 | "loc": 233 110 | }, 111 | "clearHighlight": { 112 | "name": "clearHighlight", 113 | "params": [], 114 | "comments": "Clears the highlighted node, if there is one. If a node is not highlighted,\nthis is a noop.", 115 | "loc": 241 116 | }, 117 | "findNodes": { 118 | "name": "findNodes", 119 | "params": [ 120 | "searchString" 121 | ], 122 | "comments": "Highlight nodes that match searchString. Searches the node name and the list\nof clusters, if nodes have one.\n\n@param {string} searchString - The string to match against the nodes.", 123 | "loc": 251 124 | }, 125 | "updateData": { 126 | "name": "updateData", 127 | "params": [ 128 | "data" 129 | ], 130 | "comments": "Set the new set of traffic data to render. This is expected to be called\nwith the complete set of traffic data anytime there is an update.\n\n@param {object} data - The traffic data that matches the format in DATAFORMATS.md", 131 | "loc": 261 132 | }, 133 | "setFilters": { 134 | "name": "setFilters", 135 | "params": [ 136 | "filters" 137 | ], 138 | "comments": "Set the set of filters to apply along with their current values.\n\n@param {object} filters - The filters that match the format in DATAFORMATS.md", 139 | "loc": 270 140 | }, 141 | "setDefinitions": { 142 | "name": "setDefinitions", 143 | "params": [ 144 | "definitions" 145 | ], 146 | "comments": "Update the mode definitions. Refer to github.com/Netflix/vizceral/DATAFORMATS.md#definitions\n\n@param {object} definitions - Object map of definitions", 147 | "loc": 279 148 | }, 149 | "setModes": { 150 | "name": "setModes", 151 | "params": [ 152 | "modes" 153 | ], 154 | "comments": "Set the lost of modes to apply along with their current values.\n\n@param {object} modes - Map of modes to mode type, e.g. { detailedNode: 'volume' }", 155 | "loc": 288 156 | }, 157 | "getNode": { 158 | "name": "getNode", 159 | "params": [ 160 | "nodeArray" 161 | ], 162 | "comments": "Get a specific node object\n\n@param {array} nodeArray - e.g. [ node, node ]", 163 | "loc": 297 164 | }, 165 | "getCurrentGraph": { 166 | "name": "getCurrentGraph", 167 | "params": [], 168 | "comments": "Get the currently selected graph object", 169 | "loc": 304 170 | }, 171 | "getGraphs": { 172 | "name": "getGraphs", 173 | "params": [], 174 | "comments": "Get all the graphs", 175 | "loc": 311 176 | }, 177 | "_showLabelsChanged": { 178 | "name": "_showLabelsChanged", 179 | "params": [ 180 | "showLabels" 181 | ], 182 | "comments": "fires when @show-labels is changed", 183 | "loc": 320 184 | } 185 | } 186 | } 187 | ] -------------------------------------------------------------------------------- /src/vizceral-component.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 3 | * Copyright 2016 Netflix, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | */ 18 | /* global Polymer */ 19 | /* eslint-disable no-underscore-dangle */ 20 | import Vizceral from 'vizceral'; 21 | 22 | function cleanUpColorString (colorString) { 23 | // HACK Remove strange \3 and space from some hex codes 24 | if (colorString.match(/^#\\3\d /)) { 25 | colorString = colorString.replace(/(\\3| )/g, ''); 26 | } 27 | } 28 | 29 | class VizceralComponent { 30 | // Element Behavior 31 | /** 32 | * The `vizceral-node-highlighted` event is fired whenever a node is highlighted. 33 | * 34 | * @event vizceral-node-highlighted 35 | * @property {object} node - The node object that has been highlighted/selected. 36 | */ 37 | /** 38 | * The `vizceral-view-updated` event is fired whenever the current displayed graph's view updates. 39 | * 40 | * @event vizceral-view-updated 41 | */ 42 | /** 43 | * The `vizceral-view-changed` event is fired whenever the view changes 44 | * 45 | * @event vizceral-view-changed 46 | * @property {array} view - The currently selected view (e.g. [] for top level graph, ['us-east-1'] for second level graph, ['us-east-1', 'api'] for node level) 47 | */ 48 | /** 49 | * The `nodeFocused` event is fired whenever a node gains focus or the currently focused node is updated 50 | * 51 | * @event nodeFocused 52 | * @property {object} node - The node object that has been focused, or the focused node that has been updated. 53 | */ 54 | /** 55 | * The `vizceral-node-context-size-changed` event is fired whenever the size of a node context panel is changed 56 | * 57 | * @event vizceral-node-context-size-changed 58 | * @property {object} dimensions - The dimensions of the node context panel in which to inject context 59 | */ 60 | /** 61 | * The `vizceral-matches-found` event is fired whenever a searchString is provided 62 | * 63 | * @event vizceral-matches-found 64 | * @property {object} match counts - { total: number, visible: number} 65 | */ 66 | /** 67 | * The `attached` event is fired when the element is attached to the DOM. 68 | * 69 | * @event attached 70 | */ 71 | 72 | beforeRegister () { 73 | this.is = 'vizceral-component'; 74 | 75 | this.properties = { 76 | 77 | /** 78 | * `show-labels` Whether to show node labels or not 79 | */ 80 | showLabels: { 81 | type: Boolean, 82 | value: true, 83 | observer: '_showLabelsChanged' 84 | }, 85 | 86 | /** 87 | * `view` Selected view 88 | * Examples: 89 | * [] - global view 90 | * ['us-west-2'] - node view for us-west-2 91 | * ['us-west-2', 'api-prod'] - node view for api-prod in us-west-2 92 | */ 93 | view: { 94 | type: Array, 95 | value: [], 96 | observer: '_viewChanged', 97 | reflectToAttribute: true 98 | }, 99 | 100 | /** 101 | * `customTrafficColorClasses` Any custom traffic color classes that are going to be used for coloring 102 | * Unfortunately, this is needed because of the need to know which css variables exist to access them in javascript 103 | * Changes to this property after initial load are not watched; only the initial value is used. 104 | */ 105 | customTrafficColorClasses: { 106 | type: Array, 107 | value: [] 108 | } 109 | }; 110 | 111 | this.observers = [ 112 | '_viewChanged(view.*)' 113 | ]; 114 | } 115 | 116 | // Element Lifecycle 117 | ready () { 118 | // `ready` is called after all elements have been configured, but 119 | // propagates bottom-up. This element's children are ready, but parents 120 | // are not. 121 | // 122 | // This is the point where you should make modifications to the DOM (when 123 | // necessary), or kick off any processes the element wants to perform. 124 | } 125 | 126 | attached () { 127 | // `attached` fires once the element and its parents have been inserted 128 | // into a document. 129 | // 130 | // This is a good place to perform any work related to your element's 131 | // visual state or active behavior (measuring sizes, beginning animations, 132 | // loading resources, etc). 133 | 134 | // Create the vizceral view 135 | if (!this._vizceral) { 136 | this._vizceral = new Vizceral(); 137 | if (this.view) { this.setView(this.view); } 138 | 139 | 140 | // Update styles based on any passed in custom styles 141 | const styleNames = this._vizceral.getStyles(); 142 | 143 | const customStyles = styleNames.reduce((result, styleName) => { 144 | let passedInStyle = this.getComputedStyleValue(`--${styleName}`).trim(); 145 | if (passedInStyle) { 146 | passedInStyle = cleanUpColorString(passedInStyle); 147 | result[styleName] = passedInStyle; 148 | } 149 | return result; 150 | }, {}); 151 | 152 | // Use custom styles 153 | this.customTrafficColorClasses = this.customTrafficColorClasses || []; 154 | Array.prototype.push.apply(this.customTrafficColorClasses, ['normal', 'warning', 'danger']); 155 | if (this.customTrafficColorClasses) { 156 | this.customTrafficColorClasses.forEach(customClass => { 157 | let value = this.getComputedStyleValue(`--colorTraffic${customClass.charAt(0).toUpperCase() + customClass.slice(1)}`).trim(); 158 | if (value) { 159 | value = cleanUpColorString(value); 160 | customStyles.colorTraffic = customStyles.colorTraffic || {}; 161 | customStyles.colorTraffic[customClass] = value; 162 | } 163 | }); 164 | } 165 | 166 | this._vizceral.updateStyles(customStyles); 167 | 168 | // Add event handlers for vizceral Events 169 | this._vizceral.on('viewChanged', data => { 170 | this.fire('vizceral-view-changed', { view: data.view, graph: data.graph, redirectedFrom: data.redirectedFrom }); 171 | }); 172 | 173 | this._vizceral.on('nodeHighlighted', node => { 174 | this.fire('vizceral-node-highlighted', { node: node }); 175 | }); 176 | 177 | this._vizceral.on('viewUpdated', data => { 178 | this.fire('vizceral-view-updated', data); 179 | }); 180 | 181 | this._vizceral.on('nodeFocused', node => { 182 | this.fire('vizceral-node-focused', { node: node }); 183 | }); 184 | 185 | this._vizceral.on('nodeContextSizeChanged', dimensions => { 186 | this.fire('vizceral-node-context-size-changed', { dimensions: dimensions }); 187 | }); 188 | 189 | this._vizceral.animate(); // TODO: Should we cancel the animation on detached? 190 | } 191 | 192 | Polymer.dom(this.root).appendChild(this._vizceral.renderer.domElement); 193 | this._vizceral.updateBoundingRectCache(); 194 | this.fire('attached'); 195 | } 196 | 197 | detached () { 198 | // The analog to `attached`, `detached` fires when the element has been 199 | // removed from a document. 200 | // 201 | // Use this to clean up anything you did in `attached`. 202 | } 203 | 204 | /** 205 | * If zoomed into a node or a service, zoom out one level up. 206 | * If in the global view, this is a noop. 207 | */ 208 | zoomOutViewLevel () { 209 | this._vizceral.zoomOutViewLevel(); 210 | } 211 | 212 | /** 213 | * Set the current view of the component to the passed in array. If the passed 214 | * in array does not match an existing node, the component will try 215 | * each level up the array until it finds a match, defaulting to the global 216 | * view. 217 | * 218 | * Ex: 219 | * [] - show the base global view 220 | * ['us-east-1'] - show the view for 'us-east-1' if it exists 221 | * ['us-east-1', 'api'] - show the api node in the us-east-1 graph if it exists 222 | * 223 | * @param {array} viewArray - the array containing the view to set. 224 | * @param {string} nodeToHighlight - a node to highlight in the passed in view. 225 | */ 226 | setView (viewArray, highlightedNode) { 227 | this.view = viewArray; 228 | if (this._vizceral) { 229 | this._vizceral.setView(viewArray, highlightedNode); 230 | } 231 | } 232 | 233 | _viewChanged() { 234 | this.setView(this.view); 235 | } 236 | 237 | /** 238 | * Clears the highlighted node, if there is one. If a node is not highlighted, 239 | * this is a noop. 240 | */ 241 | clearHighlight () { 242 | this._vizceral.setHighlightedNode(undefined); 243 | } 244 | 245 | /** 246 | * Highlight nodes that match searchString. Searches the node name and the list 247 | * of clusters, if nodes have one. 248 | * 249 | * @param {string} searchString - The string to match against the nodes. 250 | */ 251 | findNodes (searchString) { 252 | return this._vizceral.findNodes(searchString); 253 | } 254 | 255 | /** 256 | * Set the new set of traffic data to render. This is expected to be called 257 | * with the complete set of traffic data anytime there is an update. 258 | * 259 | * @param {object} data - The traffic data that matches the format in DATAFORMATS.md 260 | */ 261 | updateData (data) { 262 | this._vizceral.updateData(data); 263 | } 264 | 265 | /** 266 | * Set the set of filters to apply along with their current values. 267 | * 268 | * @param {object} filters - The filters that match the format in DATAFORMATS.md 269 | */ 270 | setFilters (filters) { 271 | this._vizceral.setFilters(filters); 272 | } 273 | 274 | /** 275 | * Update the mode definitions. Refer to github.com/Netflix/vizceral/DATAFORMATS.md#definitions 276 | * 277 | * @param {object} definitions - Object map of definitions 278 | */ 279 | setDefinitions (definitions) { 280 | this._vizceral.updateDefinitions(definitions); 281 | } 282 | 283 | /** 284 | * Set the lost of modes to apply along with their current values. 285 | * 286 | * @param {object} modes - Map of modes to mode type, e.g. { detailedNode: 'volume' } 287 | */ 288 | setModes (modes) { 289 | this._vizceral.setModes(modes); 290 | } 291 | 292 | /** 293 | * Get a specific node object 294 | * 295 | * @param {array} nodeArray - e.g. [ node, node ] 296 | */ 297 | getNode (nodeArray) { 298 | return this._vizceral.getNode(nodeArray); 299 | } 300 | 301 | /** 302 | * Get the currently selected graph object 303 | */ 304 | getCurrentGraph () { 305 | return this._vizceral.currentGraph; 306 | } 307 | 308 | /** 309 | * Get all the graphs 310 | */ 311 | getGraphs () { 312 | return this._vizceral.graphs; 313 | } 314 | 315 | // Element Behavior 316 | 317 | /** 318 | * fires when @show-labels is changed 319 | */ 320 | _showLabelsChanged (showLabels) { 321 | if (this._vizceral) { 322 | this._vizceral.setOptions({ showLabels: showLabels }); 323 | } 324 | } 325 | } 326 | 327 | Polymer(VizceralComponent); 328 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | 2 | Apache License 3 | Version 2.0, January 2004 4 | http://www.apache.org/licenses/ 5 | 6 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 7 | 8 | 1. Definitions. 9 | 10 | "License" shall mean the terms and conditions for use, reproduction, 11 | and distribution as defined by Sections 1 through 9 of this document. 12 | 13 | "Licensor" shall mean the copyright owner or entity authorized by 14 | the copyright owner that is granting the License. 15 | 16 | "Legal Entity" shall mean the union of the acting entity and all 17 | other entities that control, are controlled by, or are under common 18 | control with that entity. For the purposes of this definition, 19 | "control" means (i) the power, direct or indirect, to cause the 20 | direction or management of such entity, whether by contract or 21 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 22 | outstanding shares, or (iii) beneficial ownership of such entity. 23 | 24 | "You" (or "Your") shall mean an individual or Legal Entity 25 | exercising permissions granted by this License. 26 | 27 | "Source" form shall mean the preferred form for making modifications, 28 | including but not limited to software source code, documentation 29 | source, and configuration files. 30 | 31 | "Object" form shall mean any form resulting from mechanical 32 | transformation or translation of a Source form, including but 33 | not limited to compiled object code, generated documentation, 34 | and conversions to other media types. 35 | 36 | "Work" shall mean the work of authorship, whether in Source or 37 | Object form, made available under the License, as indicated by a 38 | copyright notice that is included in or attached to the work 39 | (an example is provided in the Appendix below). 40 | 41 | "Derivative Works" shall mean any work, whether in Source or Object 42 | form, that is based on (or derived from) the Work and for which the 43 | editorial revisions, annotations, elaborations, or other modifications 44 | represent, as a whole, an original work of authorship. For the purposes 45 | of this License, Derivative Works shall not include works that remain 46 | separable from, or merely link (or bind by name) to the interfaces of, 47 | the Work and Derivative Works thereof. 48 | 49 | "Contribution" shall mean any work of authorship, including 50 | the original version of the Work and any modifications or additions 51 | to that Work or Derivative Works thereof, that is intentionally 52 | submitted to Licensor for inclusion in the Work by the copyright owner 53 | or by an individual or Legal Entity authorized to submit on behalf of 54 | the copyright owner. For the purposes of this definition, "submitted" 55 | means any form of electronic, verbal, or written communication sent 56 | to the Licensor or its representatives, including but not limited to 57 | communication on electronic mailing lists, source code control systems, 58 | and issue tracking systems that are managed by, or on behalf of, the 59 | Licensor for the purpose of discussing and improving the Work, but 60 | excluding communication that is conspicuously marked or otherwise 61 | designated in writing by the copyright owner as "Not a Contribution." 62 | 63 | "Contributor" shall mean Licensor and any individual or Legal Entity 64 | on behalf of whom a Contribution has been received by Licensor and 65 | subsequently incorporated within the Work. 66 | 67 | 2. Grant of Copyright License. Subject to the terms and conditions of 68 | this License, each Contributor hereby grants to You a perpetual, 69 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 70 | copyright license to reproduce, prepare Derivative Works of, 71 | publicly display, publicly perform, sublicense, and distribute the 72 | Work and such Derivative Works in Source or Object form. 73 | 74 | 3. Grant of Patent License. Subject to the terms and conditions of 75 | this License, each Contributor hereby grants to You a perpetual, 76 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 77 | (except as stated in this section) patent license to make, have made, 78 | use, offer to sell, sell, import, and otherwise transfer the Work, 79 | where such license applies only to those patent claims licensable 80 | by such Contributor that are necessarily infringed by their 81 | Contribution(s) alone or by combination of their Contribution(s) 82 | with the Work to which such Contribution(s) was submitted. If You 83 | institute patent litigation against any entity (including a 84 | cross-claim or counterclaim in a lawsuit) alleging that the Work 85 | or a Contribution incorporated within the Work constitutes direct 86 | or contributory patent infringement, then any patent licenses 87 | granted to You under this License for that Work shall terminate 88 | as of the date such litigation is filed. 89 | 90 | 4. Redistribution. You may reproduce and distribute copies of the 91 | Work or Derivative Works thereof in any medium, with or without 92 | modifications, and in Source or Object form, provided that You 93 | meet the following conditions: 94 | 95 | (a) You must give any other recipients of the Work or 96 | Derivative Works a copy of this License; and 97 | 98 | (b) You must cause any modified files to carry prominent notices 99 | stating that You changed the files; and 100 | 101 | (c) You must retain, in the Source form of any Derivative Works 102 | that You distribute, all copyright, patent, trademark, and 103 | attribution notices from the Source form of the Work, 104 | excluding those notices that do not pertain to any part of 105 | the Derivative Works; and 106 | 107 | (d) If the Work includes a "NOTICE" text file as part of its 108 | distribution, then any Derivative Works that You distribute must 109 | include a readable copy of the attribution notices contained 110 | within such NOTICE file, excluding those notices that do not 111 | pertain to any part of the Derivative Works, in at least one 112 | of the following places: within a NOTICE text file distributed 113 | as part of the Derivative Works; within the Source form or 114 | documentation, if provided along with the Derivative Works; or, 115 | within a display generated by the Derivative Works, if and 116 | wherever such third-party notices normally appear. The contents 117 | of the NOTICE file are for informational purposes only and 118 | do not modify the License. You may add Your own attribution 119 | notices within Derivative Works that You distribute, alongside 120 | or as an addendum to the NOTICE text from the Work, provided 121 | that such additional attribution notices cannot be construed 122 | as modifying the License. 123 | 124 | You may add Your own copyright statement to Your modifications and 125 | may provide additional or different license terms and conditions 126 | for use, reproduction, or distribution of Your modifications, or 127 | for any such Derivative Works as a whole, provided Your use, 128 | reproduction, and distribution of the Work otherwise complies with 129 | the conditions stated in this License. 130 | 131 | 5. Submission of Contributions. Unless You explicitly state otherwise, 132 | any Contribution intentionally submitted for inclusion in the Work 133 | by You to the Licensor shall be under the terms and conditions of 134 | this License, without any additional terms or conditions. 135 | Notwithstanding the above, nothing herein shall supersede or modify 136 | the terms of any separate license agreement you may have executed 137 | with Licensor regarding such Contributions. 138 | 139 | 6. Trademarks. This License does not grant permission to use the trade 140 | names, trademarks, service marks, or product names of the Licensor, 141 | except as required for reasonable and customary use in describing the 142 | origin of the Work and reproducing the content of the NOTICE file. 143 | 144 | 7. Disclaimer of Warranty. Unless required by applicable law or 145 | agreed to in writing, Licensor provides the Work (and each 146 | Contributor provides its Contributions) on an "AS IS" BASIS, 147 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 148 | implied, including, without limitation, any warranties or conditions 149 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 150 | PARTICULAR PURPOSE. You are solely responsible for determining the 151 | appropriateness of using or redistributing the Work and assume any 152 | risks associated with Your exercise of permissions under this License. 153 | 154 | 8. Limitation of Liability. In no event and under no legal theory, 155 | whether in tort (including negligence), contract, or otherwise, 156 | unless required by applicable law (such as deliberate and grossly 157 | negligent acts) or agreed to in writing, shall any Contributor be 158 | liable to You for damages, including any direct, indirect, special, 159 | incidental, or consequential damages of any character arising as a 160 | result of this License or out of the use or inability to use the 161 | Work (including but not limited to damages for loss of goodwill, 162 | work stoppage, computer failure or malfunction, or any and all 163 | other commercial damages or losses), even if such Contributor 164 | has been advised of the possibility of such damages. 165 | 166 | 9. Accepting Warranty or Additional Liability. While redistributing 167 | the Work or Derivative Works thereof, You may choose to offer, 168 | and charge a fee for, acceptance of support, warranty, indemnity, 169 | or other liability obligations and/or rights consistent with this 170 | License. However, in accepting such obligations, You may act only 171 | on Your own behalf and on Your sole responsibility, not on behalf 172 | of any other Contributor, and only if You agree to indemnify, 173 | defend, and hold each Contributor harmless for any liability 174 | incurred by, or claims asserted against, such Contributor by reason 175 | of your accepting any such warranty or additional liability. 176 | 177 | END OF TERMS AND CONDITIONS 178 | 179 | APPENDIX: How to apply the Apache License to your work. 180 | 181 | To apply the Apache License to your work, attach the following 182 | boilerplate notice, with the fields enclosed by brackets "[]" 183 | replaced with your own identifying information. (Don't include 184 | the brackets!) The text should be enclosed in the appropriate 185 | comment syntax for the file format. We also recommend that a 186 | file or class name and description of purpose be included on the 187 | same "printed page" as the copyright notice for easier 188 | identification within third-party archives. 189 | 190 | Copyright 2016 Netflix, Inc. 191 | 192 | Licensed under the Apache License, Version 2.0 (the "License"); 193 | you may not use this file except in compliance with the License. 194 | You may obtain a copy of the License at 195 | 196 | http://www.apache.org/licenses/LICENSE-2.0 197 | 198 | Unless required by applicable law or agreed to in writing, software 199 | distributed under the License is distributed on an "AS IS" BASIS, 200 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 201 | See the License for the specific language governing permissions and 202 | limitations under the License. 203 | -------------------------------------------------------------------------------- /sample_data.json: -------------------------------------------------------------------------------- 1 | {"renderer":"global","name":"edge","nodes":[{"renderer":"region","name":"INTERNET","updated":1466838417510,"nodes":[],"class":"normal"},{"renderer":"region","name":"us-east-1","updated":1466838546805,"nodes":[{"name":"unsuits","metadata":{"streaming":1},"class":"normal"},{"name":"proxy-prod","metadata":{"streaming":1},"class":"normal"},{"name":"bigarreaus","metadata":{"streaming":1},"class":"normal"},{"name":"upswollen","metadata":{"streaming":1},"class":"normal"},{"name":"overmighty","metadata":{"streaming":1},"class":"normal"},{"name":"micronise","metadata":{"streaming":1},"class":"normal"},{"name":"proxy-log","metadata":{"streaming":1},"class":"normal"},{"name":"underwent","metadata":{"streaming":1},"class":"normal"},{"name":"yolkier","metadata":{"streaming":1},"class":"normal"},{"name":"tutworkmen","metadata":{"streaming":1},"class":"normal"},{"name":"larniest","metadata":{"streaming":1},"class":"normal"},{"name":"mullahs","metadata":{"streaming":1},"class":"normal"},{"name":"cobalamins","metadata":{"streaming":1},"class":"normal"},{"name":"urodynamics","metadata":{"streaming":1},"class":"normal"},{"name":"decivilises","metadata":{"streaming":1},"class":"normal"},{"name":"priory","metadata":{"streaming":1},"class":"normal"},{"name":"knit","metadata":{"streaming":1},"class":"normal"},{"name":"rhythmus","metadata":{"streaming":1},"class":"normal"},{"name":"belletrists","metadata":{"streaming":1},"class":"normal"},{"name":"lists","metadata":{"streaming":1},"class":"normal"},{"name":"arrear","metadata":{"streaming":1},"class":"normal"},{"name":"findram","metadata":{"streaming":1},"class":"normal"},{"name":"philosophizer","metadata":{"streaming":1},"class":"normal"},{"name":"feignedly","metadata":{"streaming":1},"class":"normal"},{"name":"diehard","metadata":{"streaming":1},"class":"normal"},{"name":"solarises","metadata":{"streaming":1},"class":"normal"},{"name":"megavertebrate","metadata":{"streaming":1},"class":"normal"},{"name":"ladyloves","metadata":{"streaming":1},"class":"normal"},{"name":"frailly","metadata":{"streaming":1},"class":"normal"},{"name":"necrotized","metadata":{"streaming":1},"class":"normal"},{"name":"quantitations","metadata":{"streaming":1},"class":"normal"},{"name":"slogging","metadata":{"streaming":1},"class":"normal"},{"name":"oestrus","metadata":{"streaming":1},"class":"normal"},{"name":"protectors","metadata":{"streaming":1},"class":"normal"},{"name":"basophil","metadata":{"streaming":1},"class":"normal"},{"name":"dhurrie","metadata":{"streaming":1},"class":"normal"},{"name":"micrometres","metadata":{"streaming":1},"class":"normal"},{"name":"traditioners","metadata":{"streaming":1},"class":"normal"},{"name":"tantalus","metadata":{"streaming":1},"class":"normal"},{"name":"diestock","metadata":{"streaming":1},"class":"normal"},{"name":"yeas","metadata":{"streaming":1},"class":"normal"},{"name":"chignons","metadata":{"streaming":1},"class":"normal"},{"name":"overteem","metadata":{"streaming":1},"class":"normal"},{"name":"gruntle","metadata":{"streaming":1},"class":"normal"},{"name":"torten","metadata":{"streaming":1},"class":"normal"},{"name":"addressers","metadata":{"streaming":1},"class":"normal"},{"name":"orcine","metadata":{"streaming":1},"class":"normal"},{"name":"finnesko","metadata":{"streaming":1},"class":"normal"},{"name":"immobile","metadata":{"streaming":1},"class":"normal"},{"name":"hoolachan","metadata":{"streaming":1},"class":"normal"},{"name":"subdevelopments","metadata":{"streaming":1},"class":"normal"},{"name":"capot","metadata":{"streaming":1},"class":"normal"},{"name":"predictor","metadata":{"streaming":1},"class":"normal"},{"name":"fancied","metadata":{"streaming":1},"class":"normal"},{"name":"undriven","metadata":{"streaming":1},"class":"normal"},{"name":"tilburies","metadata":{"streaming":1},"class":"normal"},{"name":"niellated","metadata":{"streaming":1},"class":"normal"},{"name":"punny","metadata":{"streaming":1},"class":"normal"},{"name":"redeposit","metadata":{"streaming":1},"class":"normal"},{"name":"prosaicness","metadata":{"streaming":1},"class":"normal"},{"name":"subdiaconates","metadata":{"streaming":1},"class":"normal"},{"name":"latests","metadata":{"streaming":1},"class":"normal"},{"name":"poloidal","metadata":{"streaming":1},"class":"normal"},{"name":"famished","metadata":{"streaming":1},"class":"normal"},{"name":"jiviest","metadata":{"streaming":1},"class":"danger"},{"name":"emicate","metadata":{"streaming":1},"class":"normal"},{"name":"flavescent","metadata":{"streaming":1},"class":"normal"},{"name":"permillages","metadata":{"streaming":1},"class":"normal"},{"name":"iridocyte","metadata":{"streaming":1},"class":"normal"},{"name":"homoscedasticity","metadata":{"streaming":1},"class":"normal"},{"name":"flickers","metadata":{"streaming":1},"class":"normal"},{"name":"exserted","metadata":{"streaming":1},"class":"normal"},{"name":"flossing","metadata":{"streaming":1},"class":"normal"},{"name":"veracious","metadata":{"streaming":1},"class":"normal"},{"name":"neurohypnology","metadata":{"streaming":1},"class":"normal"},{"name":"suasivenesses","metadata":{"streaming":1},"class":"normal"},{"name":"marbleise","metadata":{"streaming":1},"class":"normal"},{"name":"ethnobiologies","metadata":{"streaming":1},"class":"normal"},{"name":"uncurtained","metadata":{"streaming":1},"class":"normal"},{"name":"rattling","metadata":{"streaming":1},"class":"normal"},{"name":"corvinas","metadata":{"streaming":1},"class":"normal"},{"name":"sporangiole","metadata":{"streaming":1},"class":"normal"},{"metadata":{"streaming":1},"name":"INTERNET","class":"normal"}],"connections":[{"source":"INTERNET","metadata":{"streaming":true},"metrics":{"danger":0.646,"normal":31.119999999999997},"class":"normal"},{"source":"INTERNET","metadata":{"streaming":true},"metrics":{"danger":0.5820000000000001,"normal":218.97199999999998},"class":"normal"},{"source":"INTERNET","metadata":{"streaming":true},"metrics":{"normal":11.072},"class":"normal"},{"source":"INTERNET","target":"proxy-prod","metadata":{"streaming":true},"metrics":{"danger":116.524,"normal":15598.905999999999},"status":{"danger":281.33,"normal":65364.56},"class":"normal"},{"source":"INTERNET","target":"upswollen","metadata":{"streaming":true},"metrics":{"danger":9.882,"normal":6212.7519999999995},"status":{"danger":48.85,"normal":26800.02},"class":"normal"},{"source":"INTERNET","target":"proxy-log","metadata":{"streaming":true},"metrics":{"danger":0.61,"normal":3539.656},"status":{"danger":0.75,"normal":16311.73},"class":"normal"},{"source":"INTERNET","target":"overmighty","metadata":{"streaming":true},"metrics":{"danger":59.638,"normal":5021.056},"status":{"danger":124.45,"normal":20026.67},"class":"normal"},{"source":"INTERNET","target":"neurohypnology","metadata":{"streaming":true},"metrics":{"danger":0.014000000000000002,"normal":12.128},"status":{"normal":48.25},"class":"normal"},{"source":"INTERNET","target":"finnesko","metadata":{"streaming":true},"metrics":{"danger":0.08199999999999999,"normal":94.714},"status":{"danger":0.33,"normal":306.83},"class":"normal"},{"source":"marbleise","target":"exserted","metadata":{"streaming":1},"metrics":{"danger":0.08399999999999999,"normal":11.764},"class":"normal"},{"source":"immobile","target":"quantitations","metadata":{"streaming":1},"metrics":{"danger":0.194,"normal":92.988},"class":"normal"},{"source":"immobile","target":"tutworkmen","metadata":{"streaming":1},"metrics":{"normal":27.663999999999998},"class":"normal"},{"source":"immobile","target":"traditioners","metadata":{"streaming":1},"metrics":{"normal":88.22},"class":"normal"},{"source":"immobile","target":"decivilises","metadata":{"streaming":1},"metrics":{"danger":0.041999999999999996,"normal":35.932},"class":"normal"},{"source":"flickers","target":"uncurtained","metadata":{"streaming":1},"metrics":{"normal":6.954000000000001},"class":"normal"},{"source":"frailly","target":"flossing","metadata":{"streaming":1},"metrics":{"normal":13.363999999999999},"class":"normal"},{"source":"micronise","target":"dhurrie","metadata":{"streaming":1},"metrics":{"normal":18.902},"class":"normal"},{"source":"micronise","target":"hoolachan","metadata":{"streaming":1},"metrics":{"normal":10.176},"class":"normal"},{"source":"micronise","target":"bigarreaus","metadata":{"streaming":1},"metrics":{"danger":17.224,"normal":3744.5980000000004},"class":"normal"},{"source":"micronise","target":"underwent","metadata":{"streaming":1},"metrics":{"danger":5.104,"normal":931.338},"class":"normal"},{"source":"redeposit","target":"unsuits","metadata":{"streaming":1},"metrics":{"danger":0.068,"normal":8.494},"status":{"danger":805.72,"normal":164008.62},"class":"normal"},{"source":"redeposit","target":"necrotized","metadata":{"streaming":1},"metrics":{"danger":0.004,"normal":16.088},"class":"normal"},{"source":"redeposit","target":"tutworkmen","metadata":{"streaming":1},"metrics":{"danger":0.002,"normal":7.918000000000001},"class":"normal"},{"source":"priory","target":"feignedly","metadata":{"streaming":1},"metrics":{"normal":99.95599999999999},"class":"normal"},{"source":"priory","target":"arrear","metadata":{"streaming":1},"metrics":{"danger":0.8779999999999999,"normal":578.8779999999999},"class":"normal"},{"source":"priory","target":"rhythmus","metadata":{"streaming":1},"metrics":{"danger":10.908,"normal":711.138},"class":"normal"},{"source":"knit","target":"larniest","metadata":{"streaming":1},"metrics":{"danger":0.08399999999999999,"normal":7.194},"class":"normal"},{"source":"knit","target":"basophil","metadata":{"streaming":1},"metrics":{"normal":45.178},"class":"normal"},{"source":"knit","target":"dhurrie","metadata":{"streaming":1},"metrics":{"danger":0.016,"normal":71.872},"class":"normal"},{"source":"knit","target":"feignedly","metadata":{"streaming":1},"metrics":{"normal":260.462},"class":"normal"},{"source":"knit","target":"necrotized","metadata":{"streaming":1},"metrics":{"danger":0.004,"normal":65.822},"class":"normal"},{"source":"knit","target":"permillages","metadata":{"streaming":1},"metrics":{"normal":12.686},"class":"normal"},{"source":"knit","target":"homoscedasticity","metadata":{"streaming":1},"metrics":{"normal":12.686},"class":"normal"},{"source":"knit","target":"iridocyte","metadata":{"streaming":1},"metrics":{"normal":12.686},"class":"normal"},{"source":"knit","target":"hoolachan","metadata":{"streaming":1},"metrics":{"danger":0.02,"normal":56.374},"class":"normal"},{"source":"knit","target":"orcine","metadata":{"streaming":1},"metrics":{"danger":0.032,"normal":7.256},"class":"normal"},{"source":"knit","target":"megavertebrate","metadata":{"streaming":1},"metrics":{"danger":0.004,"normal":375.344},"class":"normal"},{"source":"knit","target":"latests","metadata":{"streaming":1},"metrics":{"danger":1.15,"normal":37.056},"class":"normal"},{"source":"knit","target":"rhythmus","metadata":{"streaming":1},"metrics":{"danger":1.15,"normal":37.056},"class":"normal"},{"source":"knit","target":"bigarreaus","metadata":{"streaming":1},"metrics":{"danger":1.766,"normal":247.58},"class":"normal"},{"source":"flossing","target":"decivilises","metadata":{"streaming":1},"metrics":{"danger":0.034,"normal":11.788},"class":"normal"},{"source":"tantalus","target":"urodynamics","metadata":{"streaming":1},"metrics":{"danger":0.01,"normal":45.628},"class":"normal"},{"source":"torten","target":"predictor","metadata":{"streaming":1},"metrics":{"normal":14.794},"class":"normal"},{"source":"torten","target":"ladyloves","metadata":{"streaming":1},"metrics":{"normal":114.06800000000001},"class":"normal"},{"source":"torten","target":"diehard","metadata":{"streaming":1},"metrics":{"danger":0.022,"normal":113.862},"class":"normal"},{"source":"torten","target":"protectors","metadata":{"streaming":1},"metrics":{"danger":0.078,"normal":114.01400000000001},"class":"normal"},{"source":"emicate","target":"predictor","metadata":{"streaming":1},"metrics":{"normal":12.888},"class":"normal"},{"source":"emicate","target":"ladyloves","metadata":{"streaming":1},"metrics":{"normal":22.628},"class":"normal"},{"source":"emicate","target":"diehard","metadata":{"streaming":1},"metrics":{"normal":22.512,"danger":0.004},"class":"normal"},{"source":"emicate","target":"protectors","metadata":{"streaming":1},"metrics":{"danger":0.022,"normal":22.54},"class":"normal"},{"source":"gruntle","target":"larniest","metadata":{"streaming":1},"metrics":{"danger":0.882,"normal":98.71000000000001},"class":"normal"},{"source":"gruntle","target":"decivilises","metadata":{"streaming":1},"metrics":{"danger":0.041999999999999996,"normal":7.9319999999999995},"class":"normal"},{"source":"proxy-prod","target":"unsuits","metadata":{"streaming":1},"metrics":{"danger":104.57000000000001,"normal":12412.86},"status":{"danger":805.72,"normal":164008.62},"class":"normal"},{"source":"proxy-prod","target":"prosaicness","metadata":{"streaming":1},"metrics":{"danger":0.057999999999999996,"normal":38.568},"status":{"danger":0.09,"normal":382.85},"class":"normal"},{"source":"overmighty","target":"unsuits","metadata":{"streaming":1},"metrics":{"danger":29.316000000000003,"normal":3268.19},"status":{"danger":805.72,"normal":164008.62},"class":"normal"},{"source":"overmighty","target":"flavescent","metadata":{"streaming":1},"metrics":{"danger":0.006,"normal":9.894},"status":{"danger":0.02,"normal":49.25},"class":"normal"},{"source":"overmighty","target":"yolkier","metadata":{"streaming":1},"metrics":{"danger":0.032,"normal":475.08599999999996},"status":{"danger":0.93,"normal":11914.08},"class":"normal"},{"source":"overmighty","target":"micronise","metadata":{"streaming":1},"metrics":{"danger":0.572,"normal":85.596},"status":{"danger":52.47,"normal":23011.85},"class":"normal"},{"source":"overmighty","target":"knit","metadata":{"streaming":1},"metrics":{"danger":0.002,"normal":7.662000000000001},"status":{"danger":0.09,"normal":3843.87},"class":"normal"},{"source":"overmighty","target":"mullahs","metadata":{"streaming":1},"metrics":{"normal":71.792},"status":{"normal":7132.14},"class":"normal"},{"source":"overmighty","target":"punny","metadata":{"streaming":1},"metrics":{"danger":0.014000000000000002,"normal":41.96},"status":{"danger":0.02,"normal":209.71},"class":"normal"},{"source":"overmighty","target":"niellated","metadata":{"streaming":1},"metrics":{"danger":0.028000000000000004,"normal":44.454},"status":{"normal":221.74},"class":"normal"},{"source":"upswollen","target":"tilburies","metadata":{"streaming":1},"metrics":{"normal":44.956},"status":{"normal":212.97},"class":"normal"},{"source":"upswollen","target":"redeposit","metadata":{"streaming":1},"metrics":{"normal":41.462},"status":{"normal":204.93},"class":"normal"},{"source":"upswollen","target":"micronise","metadata":{"streaming":1},"metrics":{"danger":8.5,"normal":4600.308},"status":{"danger":52.47,"normal":23011.85},"class":"normal"},{"source":"upswollen","target":"knit","metadata":{"streaming":1},"metrics":{"danger":0.018,"normal":788.048},"status":{"danger":0.18,"normal":7687.74},"class":"normal"},{"source":"finnesko","target":"unsuits","metadata":{"streaming":1},"metrics":{"danger":0.526,"normal":61.114},"status":{"danger":402.86,"normal":82004.31},"class":"normal"},{"source":"proxy-log","target":"mullahs","metadata":{"streaming":1},"metrics":{"normal":1402.942},"status":{"normal":14264.28},"class":"normal"},{"source":"proxy-log","target":"yolkier","metadata":{"streaming":1},"metrics":{"danger":0.122,"normal":1981.4080000000001},"status":{"danger":0.93,"normal":11914.08},"class":"normal"},{"source":"neurohypnology","target":"ethnobiologies","metadata":{"streaming":1},"metrics":{"normal":9.693999999999999},"class":"normal"},{"source":"prosaicness","target":"unsuits","metadata":{"streaming":1},"metrics":{"danger":0.354,"normal":37.628},"status":{"danger":402.86,"normal":82004.31},"class":"normal"},{"source":"slogging","target":"tutworkmen","metadata":{"streaming":1},"metrics":{"normal":90.154},"class":"normal"},{"source":"slogging","target":"addressers","metadata":{"streaming":1},"metrics":{"normal":13.112},"class":"normal"},{"source":"slogging","target":"traditioners","metadata":{"streaming":1},"metrics":{"normal":103.388,"danger":0.016},"class":"normal"},{"source":"slogging","target":"protectors","metadata":{"streaming":1},"metrics":{"normal":16.968},"class":"normal"},{"source":"slogging","target":"decivilises","metadata":{"streaming":1},"metrics":{"danger":0.041999999999999996,"normal":10.122},"class":"normal"},{"source":"sporangiole","target":"traditioners","metadata":{"streaming":1},"metrics":{"normal":8.056000000000001},"class":"normal"},{"source":"latests","target":"larniest","metadata":{"streaming":1},"metrics":{"danger":0.8400000000000001,"normal":76.868},"class":"normal"},{"source":"flavescent","target":"famished","metadata":{"streaming":1},"metrics":{"danger":0.034,"normal":34.724000000000004},"class":"normal"},{"source":"flavescent","target":"marbleise","metadata":{"streaming":1},"metrics":{"danger":0.004,"normal":9.788},"class":"normal"},{"source":"flavescent","target":"gruntle","metadata":{"streaming":1},"metrics":{"normal":34.757999999999996},"class":"normal"},{"source":"lists","target":"larniest","metadata":{"streaming":1},"metrics":{"danger":0.558,"normal":43.428},"class":"normal"},{"source":"lists","target":"emicate","metadata":{"streaming":1},"metrics":{"normal":22.77},"class":"normal"},{"source":"lists","target":"torten","metadata":{"streaming":1},"metrics":{"danger":0.008,"normal":112.15799999999999},"class":"normal"},{"source":"lists","target":"predictor","metadata":{"streaming":1},"metrics":{"normal":23.426},"class":"normal"},{"source":"lists","target":"ladyloves","metadata":{"streaming":1},"metrics":{"danger":0.004,"normal":202.916},"class":"normal"},{"source":"lists","target":"tutworkmen","metadata":{"streaming":1},"metrics":{"normal":26.419999999999998},"class":"normal"},{"source":"lists","target":"addressers","metadata":{"streaming":1},"metrics":{"normal":69.58},"class":"normal"},{"source":"lists","target":"immobile","metadata":{"streaming":1},"metrics":{"danger":0.08,"normal":93.162},"class":"normal"},{"source":"lists","target":"diehard","metadata":{"streaming":1},"metrics":{"danger":0.05,"normal":395.276},"class":"normal"},{"source":"lists","target":"decivilises","metadata":{"streaming":1},"metrics":{"danger":0.21800000000000003,"normal":49.5},"class":"normal"},{"source":"exserted","target":"flickers","metadata":{"streaming":1},"metrics":{"danger":0.262,"normal":15.588},"class":"normal"},{"source":"findram","target":"urodynamics","metadata":{"streaming":1},"metrics":{"danger":0.02,"normal":54.117999999999995},"class":"normal"},{"source":"findram","target":"addressers","metadata":{"streaming":1},"metrics":{"danger":0.006,"normal":8.99},"class":"normal"},{"source":"tilburies","target":"unsuits","metadata":{"streaming":1},"metrics":{"danger":0.40599999999999997,"normal":44.818},"status":{"danger":402.86,"normal":82004.31},"class":"normal"},{"source":"tilburies","target":"necrotized","metadata":{"streaming":1},"metrics":{"danger":0.012,"normal":19.782},"class":"normal"},{"source":"tilburies","target":"hoolachan","metadata":{"streaming":1},"metrics":{"danger":0.006,"normal":13.831999999999999},"class":"normal"},{"source":"tilburies","target":"underwent","metadata":{"streaming":1},"metrics":{"danger":0.21400000000000002,"normal":44.81},"class":"normal"},{"source":"quantitations","target":"larniest","metadata":{"streaming":1},"metrics":{"normal":15.690000000000001,"danger":0.192},"class":"normal"},{"source":"belletrists","target":"cobalamins","metadata":{"streaming":1},"metrics":{"danger":1.8079999999999998,"normal":1168.484},"class":"normal"},{"source":"megavertebrate","target":"overteem","metadata":{"streaming":1},"metrics":{"danger":0.002,"normal":154.332},"class":"normal"},{"source":"megavertebrate","target":"decivilises","metadata":{"streaming":1},"metrics":{"danger":0.15,"normal":27.074},"class":"normal"},{"source":"niellated","target":"corvinas","metadata":{"streaming":1},"metrics":{"normal":6.356},"class":"normal"},{"source":"diestock","target":"feignedly","metadata":{"streaming":1},"metrics":{"danger":0.002,"normal":163.39000000000001},"class":"normal"},{"source":"diestock","target":"poloidal","metadata":{"streaming":1},"metrics":{"danger":0.156,"normal":34.558},"class":"normal"},{"source":"diehard","target":"larniest","metadata":{"streaming":1},"metrics":{"danger":5.88,"normal":532.1479999999999},"class":"normal"},{"source":"diehard","target":"urodynamics","metadata":{"streaming":1},"metrics":{"danger":0.06,"normal":212.696},"class":"normal"},{"source":"diehard","target":"chignons","metadata":{"streaming":1},"metrics":{"danger":0.054000000000000006,"normal":139.794},"class":"normal"},{"source":"diehard","target":"veracious","metadata":{"streaming":1},"metrics":{"danger":0.002,"normal":10.336},"class":"normal"},{"source":"traditioners","target":"larniest","metadata":{"streaming":1},"metrics":{"danger":2.318,"normal":195.416},"class":"normal"},{"source":"traditioners","target":"urodynamics","metadata":{"streaming":1},"metrics":{"danger":0.008,"normal":62.936},"class":"normal"},{"source":"traditioners","target":"quantitations","metadata":{"streaming":1},"metrics":{"danger":0.16,"normal":81.09400000000001},"class":"normal"},{"source":"traditioners","target":"chignons","metadata":{"streaming":1},"metrics":{"danger":0.074,"normal":9.706},"class":"normal"},{"source":"traditioners","target":"yeas","metadata":{"streaming":1},"metrics":{"danger":0.062,"normal":97.902},"class":"normal"},{"source":"traditioners","target":"protectors","metadata":{"streaming":1},"metrics":{"normal":81.116},"class":"normal"},{"source":"unsuits","target":"larniest","metadata":{"streaming":1},"metrics":{"danger":1.7100000000000002,"normal":171.986},"class":"normal"},{"source":"unsuits","target":"fancied","metadata":{"streaming":1},"metrics":{"normal":48.448},"class":"normal"},{"source":"unsuits","target":"basophil","metadata":{"streaming":1},"metrics":{"normal":169.892,"danger":0.002},"class":"normal"},{"source":"unsuits","target":"suasivenesses","metadata":{"streaming":1},"metrics":{"normal":11.234},"class":"normal"},{"source":"unsuits","target":"subdevelopments","metadata":{"streaming":1},"metrics":{"normal":84.774},"class":"normal"},{"source":"unsuits","target":"urodynamics","metadata":{"streaming":1},"metrics":{"danger":0.068,"normal":422.84799999999996},"class":"normal"},{"source":"unsuits","target":"micrometres","metadata":{"streaming":1},"metrics":{"danger":0.3,"normal":202.06},"class":"normal"},{"source":"unsuits","target":"feignedly","metadata":{"streaming":1},"metrics":{"danger":0.002,"normal":7.87},"class":"normal"},{"source":"unsuits","target":"necrotized","metadata":{"streaming":1},"metrics":{"normal":23.740000000000002},"class":"normal"},{"source":"unsuits","target":"gruntle","metadata":{"streaming":1},"metrics":{"normal":89.262},"class":"normal"},{"source":"unsuits","target":"quantitations","metadata":{"streaming":1},"metrics":{"danger":0.21800000000000003,"normal":23.134},"class":"normal"},{"source":"unsuits","target":"solarises","metadata":{"streaming":1},"metrics":{"normal":531.3399999999999},"class":"normal"},{"source":"unsuits","target":"lists","metadata":{"streaming":1},"metrics":{"danger":5.106,"normal":650.8199999999999},"class":"normal"},{"source":"unsuits","target":"slogging","metadata":{"streaming":1},"metrics":{"danger":0.006,"normal":285.562},"class":"normal"},{"source":"unsuits","target":"tantalus","metadata":{"streaming":1},"metrics":{"normal":199.548,"danger":0.004},"class":"normal"},{"source":"unsuits","target":"undriven","metadata":{"streaming":1},"metrics":{"danger":0.13799999999999998,"normal":45.784},"class":"normal"},{"source":"unsuits","target":"orcine","metadata":{"streaming":1},"metrics":{"danger":0.266,"normal":85.498},"class":"normal"},{"source":"unsuits","target":"tutworkmen","metadata":{"streaming":1},"metrics":{"danger":0.036,"normal":2190.834},"class":"normal"},{"source":"unsuits","target":"belletrists","metadata":{"streaming":1},"metrics":{"danger":0.97,"normal":719.238},"class":"normal"},{"source":"unsuits","target":"megavertebrate","metadata":{"streaming":1},"metrics":{"danger":0.048,"normal":31.631999999999998},"class":"normal"},{"source":"unsuits","target":"priory","metadata":{"streaming":1},"metrics":{"danger":7.104000000000001,"normal":800.522},"class":"normal"},{"source":"unsuits","target":"capot","metadata":{"streaming":1},"metrics":{"danger":0.014000000000000002,"normal":80.646},"class":"normal"},{"source":"unsuits","target":"rattling","metadata":{"streaming":1},"metrics":{"danger":0.024,"normal":6.840000000000001},"class":"normal"},{"source":"unsuits","target":"philosophizer","metadata":{"streaming":1},"metrics":{"danger":6.148,"normal":551.484},"class":"normal"},{"source":"unsuits","target":"findram","metadata":{"streaming":1},"metrics":{"danger":0.15,"normal":570.05},"class":"normal"},{"source":"unsuits","target":"bigarreaus","metadata":{"streaming":1},"metrics":{"danger":22.06,"normal":4467.552},"class":"normal"},{"source":"unsuits","target":"underwent","metadata":{"streaming":1},"metrics":{"danger":7.2780000000000005,"normal":1574.932},"class":"normal"},{"source":"unsuits","target":"oestrus","metadata":{"streaming":1},"metrics":{"danger":0.492,"normal":274.79200000000003},"class":"normal"},{"source":"unsuits","target":"diestock","metadata":{"streaming":1},"metrics":{"normal":193.58800000000002,"danger":0.462},"class":"normal"},{"source":"unsuits","target":"yeas","metadata":{"streaming":1},"metrics":{"danger":0.03,"normal":59.646},"class":"normal"},{"source":"unsuits","target":"frailly","metadata":{"streaming":1},"metrics":{"normal":314.938},"class":"normal"},{"source":"unsuits","target":"decivilises","metadata":{"streaming":1},"metrics":{"danger":2.252,"normal":714.152},"class":"normal"},{"source":"unsuits","target":"jiviest","metadata":{"streaming":1},"metrics":{"danger":23.496000000000002,"normal":0.6900000000000001},"status":{"danger":113.59,"normal":9.6},"class":"danger"},{"source":"philosophizer","target":"larniest","metadata":{"streaming":1},"metrics":{"danger":6.748,"normal":552.694},"class":"normal"},{"source":"punny","target":"unsuits","metadata":{"streaming":1},"metrics":{"danger":1.3880000000000001,"normal":111.896},"status":{"danger":402.86,"normal":82004.31},"class":"normal"},{"source":"permillages","target":"dhurrie","metadata":{"streaming":1},"metrics":{"danger":0.012,"normal":106.596},"class":"normal"},{"source":"basophil","target":"necrotized","metadata":{"streaming":1},"metrics":{"danger":0.16599999999999998,"normal":178.38},"class":"normal"},{"source":"basophil","target":"subdiaconates","metadata":{"streaming":1},"metrics":{"danger":0.032,"normal":24.863999999999997},"class":"normal"},{"source":"protectors","target":"urodynamics","metadata":{"streaming":1},"metrics":{"danger":0.008,"normal":28.433999999999997},"class":"normal"},{"source":"protectors","target":"quantitations","metadata":{"streaming":1},"metrics":{"danger":0.186,"normal":94.076},"class":"normal"}],"maxVolume":84337.736,"props":{"maxSemaphores":[{"targetRegion":"us-west-2","region":"eu-west-1","value":"20"},{"targetRegion":"us-west-2","region":"us-east-1","value":"200"},{"targetRegion":"us-east-1","region":"us-west-2","value":"160"},{"targetRegion":"us-east-1","region":"eu-west-1","value":"20"},{"targetRegion":"eu-west-1","region":"us-east-1","value":"20"}]},"class":"normal"},{"renderer":"region","name":"eu-west-1","updated":1466838550442,"nodes":[{"name":"unsuits","metadata":{"streaming":1},"class":"normal"},{"name":"proxy-prod","metadata":{"streaming":1},"class":"normal"},{"name":"urodynamics","metadata":{"streaming":1},"class":"normal"},{"name":"bigarreaus","metadata":{"streaming":1},"class":"normal"},{"name":"upswollen","metadata":{"streaming":1},"class":"normal"},{"name":"micronise","metadata":{"streaming":1},"class":"normal"},{"name":"overmighty","metadata":{"streaming":1},"class":"normal"},{"name":"proxy-log","metadata":{"streaming":1},"class":"normal"},{"name":"yolkier","metadata":{"streaming":1},"class":"normal"},{"name":"tutworkmen","metadata":{"streaming":1},"class":"normal"},{"name":"underwent","metadata":{"streaming":1},"class":"normal"},{"name":"larniest","metadata":{"streaming":1},"class":"normal"},{"name":"mullahs","metadata":{"streaming":1},"class":"normal"},{"name":"decivilises","metadata":{"streaming":1},"class":"normal"},{"name":"knit","metadata":{"streaming":1},"class":"normal"},{"name":"orcine","metadata":{"streaming":1},"class":"normal"},{"name":"cobalamins","metadata":{"streaming":1},"class":"normal"},{"name":"lists","metadata":{"streaming":1},"class":"normal"},{"name":"gruntle","metadata":{"streaming":1},"class":"normal"},{"name":"feignedly","metadata":{"streaming":1},"class":"normal"},{"name":"basophil","metadata":{"streaming":1},"class":"normal"},{"name":"megavertebrate","metadata":{"streaming":1},"class":"normal"},{"name":"belletrists","metadata":{"streaming":1},"class":"normal"},{"name":"latests","metadata":{"streaming":1},"class":"normal"},{"name":"ladyloves","metadata":{"streaming":1},"class":"normal"},{"name":"priory","metadata":{"streaming":1},"class":"normal"},{"name":"solarises","metadata":{"streaming":1},"class":"normal"},{"name":"diehard","metadata":{"streaming":1},"class":"normal"},{"name":"philosophizer","metadata":{"streaming":1},"class":"normal"},{"name":"frailly","metadata":{"streaming":1},"class":"normal"},{"name":"overteem","metadata":{"streaming":1},"class":"normal"},{"name":"necrotized","metadata":{"streaming":1},"class":"normal"},{"name":"dhurrie","metadata":{"streaming":1},"class":"normal"},{"name":"findram","metadata":{"streaming":1},"class":"normal"},{"name":"arrear","metadata":{"streaming":1},"class":"normal"},{"name":"tantalus","metadata":{"streaming":1},"class":"normal"},{"name":"slogging","metadata":{"streaming":1},"class":"normal"},{"name":"protectors","metadata":{"streaming":1},"class":"normal"},{"name":"micrometres","metadata":{"streaming":1},"class":"normal"},{"name":"quantitations","metadata":{"streaming":1},"class":"normal"},{"name":"chignons","metadata":{"streaming":1},"class":"normal"},{"name":"traditioners","metadata":{"streaming":1},"class":"normal"},{"name":"oestrus","metadata":{"streaming":1},"class":"normal"},{"name":"torten","metadata":{"streaming":1},"class":"normal"},{"name":"addressers","metadata":{"streaming":1},"class":"normal"},{"name":"subdiaconates","metadata":{"streaming":1},"class":"normal"},{"name":"diestock","metadata":{"streaming":1},"class":"normal"},{"name":"subdevelopments","metadata":{"streaming":1},"class":"normal"},{"name":"fancied","metadata":{"streaming":1},"class":"normal"},{"name":"punny","metadata":{"streaming":1},"class":"normal"},{"name":"famished","metadata":{"streaming":1},"class":"normal"},{"name":"immobile","metadata":{"streaming":1},"class":"normal"},{"name":"hoolachan","metadata":{"streaming":1},"class":"normal"},{"name":"flavescent","metadata":{"streaming":1},"class":"normal"},{"name":"yeas","metadata":{"streaming":1},"class":"normal"},{"name":"tilburies","metadata":{"streaming":1},"class":"normal"},{"name":"finnesko","metadata":{"streaming":1},"class":"normal"},{"name":"undriven","metadata":{"streaming":1},"class":"normal"},{"name":"permillages","metadata":{"streaming":1},"class":"normal"},{"name":"homoscedasticity","metadata":{"streaming":1},"class":"normal"},{"name":"atelectatic","metadata":{"streaming":1},"class":"normal"},{"name":"postpubescent","metadata":{"streaming":1},"class":"normal"},{"name":"flickers","metadata":{"streaming":1},"class":"normal"},{"name":"neurohypnology","metadata":{"streaming":1},"class":"normal"},{"name":"exserted","metadata":{"streaming":1},"class":"normal"},{"name":"flossing","metadata":{"streaming":1},"class":"normal"},{"name":"ethnobiologies","metadata":{"streaming":1},"class":"normal"},{"name":"poloidal","metadata":{"streaming":1},"class":"normal"},{"name":"marbleise","metadata":{"streaming":1},"class":"normal"},{"name":"introducible","metadata":{"streaming":1},"class":"normal"},{"metadata":{"streaming":1},"name":"INTERNET","class":"normal"},{"name":"meanderers","metadata":{"streaming":1},"class":"normal"}],"connections":[{"source":"INTERNET","metadata":{"streaming":true},"metrics":{"danger":0.062,"normal":10.17},"class":"normal"},{"source":"INTERNET","metadata":{"streaming":true},"metrics":{"normal":57.914},"class":"normal"},{"source":"INTERNET","target":"proxy-prod","metadata":{"streaming":true},"metrics":{"danger":25.444,"normal":4786.55},"status":{"danger":58.27,"normal":21562.09},"class":"normal"},{"source":"INTERNET","target":"upswollen","metadata":{"streaming":true},"metrics":{"danger":1.238,"normal":2303.95},"status":{"danger":1.2,"normal":11158.52},"class":"normal"},{"source":"INTERNET","target":"proxy-log","metadata":{"streaming":true},"metrics":{"danger":0.09,"normal":1460.912},"status":{"normal":7006.2,"danger":0.02},"class":"normal"},{"source":"INTERNET","target":"overmighty","metadata":{"streaming":true},"metrics":{"danger":22.184,"normal":1759.334},"status":{"danger":33.99,"normal":6198.82},"class":"normal"},{"source":"INTERNET","target":"neurohypnology","metadata":{"streaming":true},"metrics":{"normal":12.66},"status":{"normal":55.4},"class":"normal"},{"source":"INTERNET","target":"finnesko","metadata":{"streaming":true},"metrics":{"danger":0.01,"normal":25.084},"status":{"warning":0.02,"danger":0.08,"normal":80.8},"class":"normal"},{"source":"marbleise","target":"exserted","metadata":{"streaming":1},"metrics":{"danger":0.008,"normal":10.036},"class":"normal"},{"source":"immobile","target":"quantitations","metadata":{"streaming":1},"metrics":{"danger":0.032,"normal":46.802},"class":"normal"},{"source":"immobile","target":"tutworkmen","metadata":{"streaming":1},"metrics":{"normal":13.972},"class":"normal"},{"source":"immobile","target":"traditioners","metadata":{"streaming":1},"metrics":{"normal":44.38},"class":"normal"},{"source":"immobile","target":"decivilises","metadata":{"streaming":1},"metrics":{"normal":28.522000000000002},"class":"normal"},{"source":"frailly","target":"larniest","metadata":{"streaming":1},"metrics":{"danger":0.128,"normal":11.937999999999999},"class":"normal"},{"source":"frailly","target":"flossing","metadata":{"streaming":1},"metrics":{"normal":11.992},"class":"normal"},{"source":"micronise","target":"dhurrie","metadata":{"streaming":1},"metrics":{"normal":9.456},"class":"normal"},{"source":"micronise","target":"bigarreaus","metadata":{"streaming":1},"metrics":{"normal":1377.5620000000001},"class":"normal"},{"source":"micronise","target":"underwent","metadata":{"streaming":1},"metrics":{"danger":6.7540000000000004,"normal":395.464},"class":"normal"},{"source":"knit","target":"basophil","metadata":{"streaming":1},"metrics":{"normal":27.688},"class":"normal"},{"source":"knit","target":"dhurrie","metadata":{"streaming":1},"metrics":{"danger":0.006,"normal":37.814},"class":"normal"},{"source":"knit","target":"feignedly","metadata":{"streaming":1},"metrics":{"normal":146.526},"class":"normal"},{"source":"knit","target":"necrotized","metadata":{"streaming":1},"metrics":{"normal":51.006},"class":"normal"},{"source":"knit","target":"permillages","metadata":{"streaming":1},"metrics":{"normal":17.958000000000002},"class":"normal"},{"source":"knit","target":"homoscedasticity","metadata":{"streaming":1},"metrics":{"normal":17.958000000000002},"class":"normal"},{"source":"knit","target":"hoolachan","metadata":{"streaming":1},"metrics":{"danger":0.014000000000000002,"normal":22.966},"class":"normal"},{"source":"knit","target":"megavertebrate","metadata":{"streaming":1},"metrics":{"danger":0.006,"normal":203.97},"class":"normal"},{"source":"knit","target":"latests","metadata":{"streaming":1},"metrics":{"danger":0.616,"normal":34.013999999999996},"class":"normal"},{"source":"knit","target":"bigarreaus","metadata":{"streaming":1},"metrics":{"danger":0.002,"normal":136.07999999999998},"class":"normal"},{"source":"priory","target":"feignedly","metadata":{"streaming":1},"metrics":{"normal":30.927999999999997},"class":"normal"},{"source":"priory","target":"arrear","metadata":{"streaming":1},"metrics":{"danger":0.11200000000000002,"normal":122.05799999999999},"class":"normal"},{"source":"priory","target":"latests","metadata":{"streaming":1},"metrics":{"danger":0.9279999999999999,"normal":158.142},"class":"normal"},{"source":"diestock","target":"feignedly","metadata":{"streaming":1},"metrics":{"normal":54.513999999999996},"class":"normal"},{"source":"diestock","target":"poloidal","metadata":{"streaming":1},"metrics":{"normal":10.456},"class":"normal"},{"source":"flossing","target":"decivilises","metadata":{"streaming":1},"metrics":{"danger":0.004,"normal":12.258},"class":"normal"},{"source":"tantalus","target":"urodynamics","metadata":{"streaming":1},"metrics":{"danger":0.02,"normal":26.857999999999997},"class":"normal"},{"source":"meanderers","target":"atelectatic","metadata":{"streaming":1},"metrics":{"danger":0.004,"normal":18.73},"class":"normal"},{"source":"diehard","target":"larniest","metadata":{"streaming":1},"metrics":{"danger":0.43200000000000005,"normal":174.804},"class":"normal"},{"source":"diehard","target":"urodynamics","metadata":{"streaming":1},"metrics":{"danger":0.076,"normal":107.47200000000001},"class":"normal"},{"source":"diehard","target":"chignons","metadata":{"streaming":1},"metrics":{"normal":12.568000000000001},"class":"normal"},{"source":"traditioners","target":"larniest","metadata":{"streaming":1},"metrics":{"danger":0.3,"normal":81.34},"class":"normal"},{"source":"traditioners","target":"urodynamics","metadata":{"streaming":1},"metrics":{"danger":0.022,"normal":42.546},"class":"normal"},{"source":"traditioners","target":"quantitations","metadata":{"streaming":1},"metrics":{"danger":0.006,"normal":6},"class":"normal"},{"source":"traditioners","target":"protectors","metadata":{"streaming":1},"metrics":{"normal":6.014},"class":"normal"},{"source":"torten","target":"ladyloves","metadata":{"streaming":1},"metrics":{"danger":0.002,"normal":77.768},"class":"normal"},{"source":"torten","target":"diehard","metadata":{"streaming":1},"metrics":{"normal":77.696},"class":"normal"},{"source":"torten","target":"protectors","metadata":{"streaming":1},"metrics":{"danger":0.026000000000000002,"normal":77.674},"class":"normal"},{"source":"gruntle","target":"larniest","metadata":{"streaming":1},"metrics":{"danger":1.166,"normal":201.5},"class":"normal"},{"source":"gruntle","target":"postpubescent","metadata":{"streaming":1},"metrics":{"normal":10.968},"class":"normal"},{"source":"gruntle","target":"dhurrie","metadata":{"streaming":1},"metrics":{"danger":0.002,"normal":9.952},"class":"normal"},{"source":"gruntle","target":"flavescent","metadata":{"streaming":1},"metrics":{"normal":9.698},"status":{"danger":0.02,"normal":108.89},"class":"normal"},{"source":"proxy-prod","target":"unsuits","metadata":{"streaming":1},"metrics":{"danger":27.910000000000004,"normal":4289.5779999999995},"status":{"warning":0.04,"danger":185.26,"normal":52942.14},"class":"normal"},{"source":"overmighty","target":"unsuits","metadata":{"streaming":1},"metrics":{"danger":8.014,"normal":905.01},"status":{"warning":0.04,"danger":185.26,"normal":52942.14},"class":"normal"},{"source":"overmighty","target":"flavescent","metadata":{"streaming":1},"metrics":{"danger":0.008,"normal":21.828},"status":{"danger":0.04,"normal":217.78},"class":"normal"},{"source":"overmighty","target":"yolkier","metadata":{"streaming":1},"metrics":{"normal":190.818},"status":{"normal":5283.5},"class":"normal"},{"source":"overmighty","target":"micronise","metadata":{"streaming":1},"metrics":{"normal":30.15},"status":{"danger":1.18,"normal":8949.27},"class":"normal"},{"source":"overmighty","target":"mullahs","metadata":{"streaming":1},"metrics":{"normal":26.162},"status":{"danger":0.02,"normal":2820.24},"class":"normal"},{"source":"overmighty","target":"punny","metadata":{"streaming":1},"metrics":{"danger":0.02,"normal":52.5},"status":{"danger":0.06,"normal":264.41},"class":"normal"},{"source":"overmighty","target":"introducible","metadata":{"streaming":1},"metrics":{"danger":0.002,"normal":6.13},"status":{"normal":31.01},"class":"normal"},{"source":"finnesko","target":"unsuits","metadata":{"streaming":1},"metrics":{"danger":0.086,"normal":15.825999999999999},"status":{"warning":0.02,"danger":92.63,"normal":26471.07},"class":"normal"},{"source":"upswollen","target":"tilburies","metadata":{"streaming":1},"metrics":{"normal":30.333999999999996},"status":{"normal":149.9},"class":"normal"},{"source":"upswollen","target":"micronise","metadata":{"streaming":1},"metrics":{"danger":0.182,"normal":1756.0919999999999},"status":{"danger":1.18,"normal":8949.27},"class":"normal"},{"source":"upswollen","target":"knit","metadata":{"streaming":1},"metrics":{"danger":0.002,"normal":440.43999999999994},"status":{"danger":0.04,"normal":4456.64},"class":"normal"},{"source":"neurohypnology","target":"ethnobiologies","metadata":{"streaming":1},"metrics":{"normal":11.172},"class":"normal"},{"source":"proxy-log","target":"mullahs","metadata":{"streaming":1},"metrics":{"normal":535.448},"status":{"danger":0.04,"normal":5640.48},"class":"normal"},{"source":"proxy-log","target":"yolkier","metadata":{"streaming":1},"metrics":{"normal":864.4979999999999},"status":{"normal":5283.5},"class":"normal"},{"source":"slogging","target":"tutworkmen","metadata":{"streaming":1},"metrics":{"normal":34.034},"class":"normal"},{"source":"slogging","target":"traditioners","metadata":{"streaming":1},"metrics":{"danger":0.002,"normal":34.86},"class":"normal"},{"source":"slogging","target":"decivilises","metadata":{"streaming":1},"metrics":{"normal":7.5680000000000005},"class":"normal"},{"source":"unsuits","target":"larniest","metadata":{"streaming":1},"metrics":{"danger":1.166,"normal":121.96600000000001},"class":"normal"},{"source":"unsuits","target":"fancied","metadata":{"streaming":1},"metrics":{"normal":55.126},"class":"normal"},{"source":"unsuits","target":"basophil","metadata":{"streaming":1},"metrics":{"normal":199.66400000000002},"class":"normal"},{"source":"unsuits","target":"subdevelopments","metadata":{"streaming":1},"metrics":{"normal":57.339999999999996},"class":"normal"},{"source":"unsuits","target":"urodynamics","metadata":{"streaming":1},"metrics":{"danger":0.192,"normal":262.384},"class":"normal"},{"source":"unsuits","target":"micrometres","metadata":{"streaming":1},"metrics":{"danger":0.028000000000000004,"normal":88.324},"class":"normal"},{"source":"unsuits","target":"necrotized","metadata":{"streaming":1},"metrics":{"normal":18.318},"class":"normal"},{"source":"unsuits","target":"gruntle","metadata":{"streaming":1},"metrics":{"danger":0.004,"normal":191.744},"class":"normal"},{"source":"unsuits","target":"flavescent","metadata":{"streaming":1},"metrics":{"normal":9.652},"status":{"danger":0.02,"normal":108.89},"class":"normal"},{"source":"unsuits","target":"quantitations","metadata":{"streaming":1},"metrics":{"danger":0.05600000000000001,"normal":10.764},"class":"normal"},{"source":"unsuits","target":"solarises","metadata":{"streaming":1},"metrics":{"danger":0.002,"normal":185.278},"class":"normal"},{"source":"unsuits","target":"lists","metadata":{"streaming":1},"metrics":{"danger":4.848,"normal":248.724},"class":"normal"},{"source":"unsuits","target":"slogging","metadata":{"streaming":1},"metrics":{"normal":97.404},"class":"normal"},{"source":"unsuits","target":"tantalus","metadata":{"streaming":1},"metrics":{"danger":0.016,"normal":113.66600000000001},"class":"normal"},{"source":"unsuits","target":"undriven","metadata":{"streaming":1},"metrics":{"danger":0.008,"normal":21.06},"class":"normal"},{"source":"unsuits","target":"orcine","metadata":{"streaming":1},"metrics":{"danger":0.124,"normal":40.468},"class":"normal"},{"source":"unsuits","target":"tutworkmen","metadata":{"streaming":1},"metrics":{"normal":867.042},"class":"normal"},{"source":"unsuits","target":"belletrists","metadata":{"streaming":1},"metrics":{"normal":194.35999999999999},"class":"normal"},{"source":"unsuits","target":"megavertebrate","metadata":{"streaming":1},"metrics":{"danger":0.006,"normal":14.197999999999999},"class":"normal"},{"source":"unsuits","target":"priory","metadata":{"streaming":1},"metrics":{"danger":0.368,"normal":185.696},"class":"normal"},{"source":"unsuits","target":"addressers","metadata":{"streaming":1},"metrics":{"danger":0.008,"normal":29.218},"class":"normal"},{"source":"unsuits","target":"philosophizer","metadata":{"streaming":1},"metrics":{"danger":0.86,"normal":174.972},"class":"normal"},{"source":"unsuits","target":"findram","metadata":{"streaming":1},"metrics":{"danger":0.21000000000000002,"normal":142.99200000000002},"class":"normal"},{"source":"unsuits","target":"bigarreaus","metadata":{"streaming":1},"metrics":{"normal":1000.936},"class":"normal"},{"source":"unsuits","target":"underwent","metadata":{"streaming":1},"metrics":{"danger":7.706,"normal":446.48400000000004},"class":"normal"},{"source":"unsuits","target":"oestrus","metadata":{"streaming":1},"metrics":{"normal":81.42},"class":"normal"},{"source":"unsuits","target":"diestock","metadata":{"streaming":1},"metrics":{"danger":0.038,"normal":64.176},"class":"normal"},{"source":"unsuits","target":"yeas","metadata":{"streaming":1},"metrics":{"danger":0.004,"normal":30.258},"class":"normal"},{"source":"unsuits","target":"frailly","metadata":{"streaming":1},"metrics":{"danger":0.01,"normal":159.238},"class":"normal"},{"source":"unsuits","target":"decivilises","metadata":{"streaming":1},"metrics":{"danger":0.254,"normal":411.92600000000004},"class":"normal"},{"source":"latests","target":"larniest","metadata":{"streaming":1},"metrics":{"danger":0.378,"normal":33.912},"class":"normal"},{"source":"philosophizer","target":"larniest","metadata":{"streaming":1},"metrics":{"danger":0.8960000000000001,"normal":176.09},"class":"normal"},{"source":"flavescent","target":"famished","metadata":{"streaming":1},"metrics":{"danger":0.10400000000000001,"normal":51.977999999999994},"class":"normal"},{"source":"flavescent","target":"marbleise","metadata":{"streaming":1},"metrics":{"danger":0.002,"normal":8.296},"class":"normal"},{"source":"flavescent","target":"basophil","metadata":{"streaming":1},"metrics":{"danger":0.046,"normal":6},"class":"normal"},{"source":"flavescent","target":"gruntle","metadata":{"streaming":1},"metrics":{"normal":48.682},"class":"normal"},{"source":"lists","target":"larniest","metadata":{"streaming":1},"metrics":{"danger":0.096,"normal":10.642},"class":"normal"},{"source":"lists","target":"torten","metadata":{"streaming":1},"metrics":{"danger":0.006,"normal":77.97},"class":"normal"},{"source":"lists","target":"ladyloves","metadata":{"streaming":1},"metrics":{"danger":0.004,"normal":114.046},"class":"normal"},{"source":"lists","target":"tutworkmen","metadata":{"streaming":1},"metrics":{"normal":22.354},"class":"normal"},{"source":"lists","target":"addressers","metadata":{"streaming":1},"metrics":{"normal":36.434},"class":"normal"},{"source":"lists","target":"immobile","metadata":{"streaming":1},"metrics":{"danger":0.004,"normal":46.64},"class":"normal"},{"source":"lists","target":"diehard","metadata":{"streaming":1},"metrics":{"danger":0.006,"normal":97.164},"class":"normal"},{"source":"lists","target":"decivilises","metadata":{"streaming":1},"metrics":{"danger":0.012,"normal":51.720000000000006},"class":"normal"},{"source":"punny","target":"unsuits","metadata":{"streaming":1},"metrics":{"danger":1.058,"normal":114.924},"status":{"warning":0.02,"danger":92.63,"normal":26471.07},"class":"normal"},{"source":"exserted","target":"flickers","metadata":{"streaming":1},"metrics":{"danger":0.018,"normal":12.78},"class":"normal"},{"source":"findram","target":"urodynamics","metadata":{"streaming":1},"metrics":{"danger":0.014000000000000002,"normal":11.954},"class":"normal"},{"source":"tilburies","target":"unsuits","metadata":{"streaming":1},"metrics":{"danger":0.20800000000000002,"normal":29.936},"status":{"warning":0.02,"danger":92.63,"normal":26471.07},"class":"normal"},{"source":"tilburies","target":"necrotized","metadata":{"streaming":1},"metrics":{"normal":12.244},"class":"normal"},{"source":"tilburies","target":"hoolachan","metadata":{"streaming":1},"metrics":{"danger":0.004,"normal":9.004000000000001},"class":"normal"},{"source":"tilburies","target":"underwent","metadata":{"streaming":1},"metrics":{"danger":0.492,"normal":29.944},"class":"normal"},{"source":"quantitations","target":"larniest","metadata":{"streaming":1},"metrics":{"normal":8.336,"danger":0.098},"class":"normal"},{"source":"permillages","target":"dhurrie","metadata":{"streaming":1},"metrics":{"danger":0.01,"normal":84.502},"class":"normal"},{"source":"basophil","target":"necrotized","metadata":{"streaming":1},"metrics":{"danger":0.012,"normal":67.586},"class":"normal"},{"source":"basophil","target":"subdiaconates","metadata":{"streaming":1},"metrics":{"danger":0.008,"normal":57.166},"class":"normal"},{"source":"belletrists","target":"cobalamins","metadata":{"streaming":1},"metrics":{"danger":0.012,"normal":327.57},"class":"normal"},{"source":"megavertebrate","target":"overteem","metadata":{"streaming":1},"metrics":{"danger":0.286,"normal":153.014},"class":"normal"},{"source":"megavertebrate","target":"decivilises","metadata":{"streaming":1},"metrics":{"danger":0.018,"normal":14.378},"class":"normal"},{"source":"protectors","target":"urodynamics","metadata":{"streaming":1},"metrics":{"danger":0.014000000000000002,"normal":21.074},"class":"normal"},{"source":"protectors","target":"quantitations","metadata":{"streaming":1},"metrics":{"danger":0.018,"normal":27.106},"class":"normal"}],"maxVolume":50387.768,"props":{"maxSemaphores":[{"targetRegion":"us-east-1","region":"us-west-2","value":"160"},{"targetRegion":"us-east-1","region":"eu-west-1","value":"20"},{"targetRegion":"eu-west-1","region":"us-east-1","value":"20"},{"targetRegion":"us-west-2","region":"eu-west-1","value":"20"},{"targetRegion":"us-west-2","region":"us-east-1","value":"200"}]},"class":"normal"},{"renderer":"region","name":"us-west-2","updated":1466838546663,"nodes":[{"name":"unsuits","metadata":{"streaming":1},"class":"normal"},{"name":"proxy-prod","metadata":{"streaming":1},"class":"normal"},{"name":"bigarreaus","metadata":{"streaming":1},"class":"normal"},{"name":"upswollen","metadata":{"streaming":1},"class":"normal"},{"name":"overmighty","metadata":{"streaming":1},"class":"normal"},{"name":"micronise","metadata":{"streaming":1},"class":"normal"},{"name":"proxy-log","metadata":{"streaming":1},"class":"normal"},{"name":"tutworkmen","metadata":{"streaming":1},"class":"normal"},{"name":"yolkier","metadata":{"streaming":1},"class":"normal"},{"name":"underwent","metadata":{"streaming":1},"class":"normal"},{"name":"larniest","metadata":{"streaming":1},"class":"normal"},{"name":"mullahs","metadata":{"streaming":1},"class":"normal"},{"name":"cobalamins","metadata":{"streaming":1},"class":"normal"},{"name":"urodynamics","metadata":{"streaming":1},"class":"normal"},{"name":"decivilises","metadata":{"streaming":1},"class":"normal"},{"name":"priory","metadata":{"streaming":1},"class":"normal"},{"name":"latests","metadata":{"streaming":1},"class":"normal"},{"name":"belletrists","metadata":{"streaming":1},"class":"normal"},{"name":"knit","metadata":{"streaming":1},"class":"normal"},{"name":"arrear","metadata":{"streaming":1},"class":"normal"},{"name":"lists","metadata":{"streaming":1},"class":"normal","notices":[{"title":"Something bad is starting to happen","link":"http://link/to/relevant/thing"}]},{"name":"findram","metadata":{"streaming":1},"class":"normal"},{"name":"philosophizer","metadata":{"streaming":1},"class":"normal"},{"name":"feignedly","metadata":{"streaming":1},"class":"normal"},{"name":"diehard","metadata":{"streaming":1},"class":"normal"},{"name":"megavertebrate","metadata":{"streaming":1},"class":"normal"},{"name":"ladyloves","metadata":{"streaming":1},"class":"normal"},{"name":"frailly","metadata":{"streaming":1},"class":"normal"},{"name":"solarises","metadata":{"streaming":1},"class":"normal"},{"name":"slogging","metadata":{"streaming":1},"class":"normal"},{"name":"oestrus","metadata":{"streaming":1},"class":"normal"},{"name":"protectors","metadata":{"streaming":1},"class":"normal"},{"name":"quantitations","metadata":{"streaming":1},"class":"normal"},{"name":"basophil","metadata":{"streaming":1},"class":"normal"},{"name":"tantalus","metadata":{"streaming":1},"class":"normal"},{"name":"dhurrie","metadata":{"streaming":1},"class":"normal"},{"name":"traditioners","metadata":{"streaming":1},"class":"normal"},{"name":"diestock","metadata":{"streaming":1},"class":"normal"},{"name":"micrometres","metadata":{"streaming":1},"class":"normal"},{"name":"necrotized","metadata":{"streaming":1},"class":"normal"},{"name":"chignons","metadata":{"streaming":1},"class":"normal"},{"name":"gruntle","metadata":{"streaming":1},"class":"normal"},{"name":"torten","metadata":{"streaming":1},"class":"normal"},{"name":"addressers","metadata":{"streaming":1},"class":"normal"},{"name":"overteem","metadata":{"streaming":1},"class":"normal"},{"name":"finnesko","metadata":{"streaming":1},"class":"normal"},{"name":"immobile","metadata":{"streaming":1},"class":"normal"},{"name":"yeas","metadata":{"streaming":1},"class":"normal"},{"name":"hoolachan","metadata":{"streaming":1},"class":"normal"},{"name":"subdevelopments","metadata":{"streaming":1},"class":"normal"},{"name":"capot","metadata":{"streaming":1},"class":"normal"},{"name":"orcine","metadata":{"streaming":1},"class":"normal"},{"name":"fancied","metadata":{"streaming":1},"class":"normal"},{"name":"punny","metadata":{"streaming":1},"class":"normal"},{"name":"tilburies","metadata":{"streaming":1},"class":"normal"},{"name":"redeposit","metadata":{"streaming":1},"class":"normal"},{"name":"prosaicness","metadata":{"streaming":1},"class":"normal"},{"name":"famished","metadata":{"streaming":1},"class":"normal"},{"name":"undriven","metadata":{"streaming":1},"class":"normal"},{"name":"subdiaconates","metadata":{"streaming":1},"class":"normal"},{"name":"poloidal","metadata":{"streaming":1},"class":"normal"},{"name":"unburned","metadata":{"streaming":1},"class":"danger"},{"name":"permillages","metadata":{"streaming":1},"class":"normal"},{"name":"homoscedasticity","metadata":{"streaming":1},"class":"normal"},{"name":"outrooted","metadata":{"streaming":1},"class":"normal"},{"name":"flavescent","metadata":{"streaming":1},"class":"normal"},{"name":"marbleise","metadata":{"streaming":1},"class":"normal"},{"name":"flickers","metadata":{"streaming":1},"class":"normal"},{"name":"exserted","metadata":{"streaming":1},"class":"normal"},{"name":"postpubescent","metadata":{"streaming":1},"class":"normal"},{"name":"flossing","metadata":{"streaming":1},"class":"normal"},{"name":"veracious","metadata":{"streaming":1},"class":"normal"},{"name":"neurohypnology","metadata":{"streaming":1},"class":"normal"},{"name":"ethnobiologies","metadata":{"streaming":1},"class":"normal"},{"name":"uncurtained","metadata":{"streaming":1},"class":"normal"},{"name":"decolonising","metadata":{"streaming":1},"class":"normal"},{"name":"introducible","metadata":{"streaming":1},"class":"normal"},{"name":"corvinas","metadata":{"streaming":1},"class":"normal"},{"name":"rattling","metadata":{"streaming":1},"class":"normal"},{"name":"antimagnetic","metadata":{"streaming":1},"class":"normal"},{"name":"tankbusters","metadata":{"streaming":1},"class":"normal"},{"name":"longeval","metadata":{"streaming":1},"class":"normal"},{"name":"sporangiole","metadata":{"streaming":1},"class":"normal"},{"name":"ermines","metadata":{"streaming":1},"class":"normal"},{"metadata":{"streaming":1},"name":"INTERNET","class":"normal"}],"connections":[{"source":"INTERNET","metadata":{"streaming":true},"metrics":{"danger":0.10600000000000001,"normal":13.687999999999999},"class":"normal"},{"source":"INTERNET","metadata":{"streaming":true},"metrics":{"danger":0.08,"normal":85.962},"class":"normal"},{"source":"INTERNET","metadata":{"streaming":true},"metrics":{"danger":0.008,"normal":15.108},"class":"normal"},{"source":"INTERNET","target":"proxy-prod","metadata":{"streaming":true},"metrics":{"danger":9.64,"normal":23669.94},"status":{"warning":0.08,"danger":46.13,"normal":107153.32},"class":"normal","notices":[{"title":"CPU usage average at 80%","link":"http://link/to/relevant/thing","severity":1},{"title":"Reticulating splines"}]},{"source":"INTERNET","target":"upswollen","metadata":{"streaming":true},"metrics":{"danger":1.472,"normal":8436.922},"status":{"danger":0.98,"normal":37618.6},"class":"normal"},{"source":"INTERNET","target":"proxy-log","metadata":{"streaming":true},"metrics":{"danger":0.466,"normal":5397.9400000000005},"status":{"danger":1.95,"normal":26224.77},"class":"normal","notices":[{"title":"Bob Loblaws law blog logging log blobs","link":"http://link/to/relevant/thing"}]},{"source":"INTERNET","target":"overmighty","metadata":{"streaming":true},"metrics":{"danger":63.048,"normal":6835.762},"status":{"warning":0.03,"danger":75.07,"normal":28960.02},"class":"normal"},{"source":"INTERNET","target":"neurohypnology","metadata":{"streaming":true},"metrics":{"normal":18.27},"status":{"normal":83.58},"class":"normal"},{"source":"INTERNET","target":"finnesko","metadata":{"streaming":true},"metrics":{"danger":0.086,"normal":167.88},"status":{"danger":0.32,"normal":675.43},"class":"normal"},{"source":"marbleise","target":"famished","metadata":{"streaming":1},"metrics":{"normal":8.172,"danger":0.028000000000000004},"class":"normal"},{"source":"marbleise","target":"exserted","metadata":{"streaming":1},"metrics":{"danger":0.03,"normal":25.226},"class":"normal"},{"source":"marbleise","target":"subdiaconates","metadata":{"streaming":1},"metrics":{"normal":10.778},"class":"normal"},{"source":"immobile","target":"quantitations","metadata":{"streaming":1},"metrics":{"danger":0.08199999999999999,"normal":164.882},"class":"normal"},{"source":"immobile","target":"tutworkmen","metadata":{"streaming":1},"metrics":{"danger":0.004,"normal":49.626},"class":"normal"},{"source":"immobile","target":"traditioners","metadata":{"streaming":1},"metrics":{"normal":155.546},"class":"normal"},{"source":"immobile","target":"decivilises","metadata":{"streaming":1},"metrics":{"normal":62.854},"class":"normal"},{"source":"flickers","target":"uncurtained","metadata":{"streaming":1},"metrics":{"normal":15.396},"class":"normal"},{"source":"flickers","target":"decolonising","metadata":{"streaming":1},"metrics":{"normal":13.541999999999998},"class":"normal"},{"source":"frailly","target":"larniest","metadata":{"streaming":1},"metrics":{"danger":0.246,"normal":15.040000000000001},"class":"normal"},{"source":"frailly","target":"flossing","metadata":{"streaming":1},"metrics":{"normal":21.802},"class":"normal"},{"source":"micronise","target":"dhurrie","metadata":{"streaming":1},"metrics":{"danger":0.002,"normal":25.168},"class":"normal"},{"source":"micronise","target":"hoolachan","metadata":{"streaming":1},"metrics":{"danger":0.014000000000000002,"normal":17.532},"class":"normal"},{"source":"micronise","target":"bigarreaus","metadata":{"streaming":1},"metrics":{"danger":34.244,"normal":5117.134},"class":"normal"},{"source":"micronise","target":"underwent","metadata":{"streaming":1},"metrics":{"danger":9.696,"normal":1273.766},"class":"normal"},{"source":"knit","target":"larniest","metadata":{"streaming":1},"metrics":{"danger":0.126,"normal":8.292},"class":"normal"},{"source":"knit","target":"basophil","metadata":{"streaming":1},"metrics":{"normal":76.176,"danger":0.002},"class":"normal"},{"source":"knit","target":"dhurrie","metadata":{"streaming":1},"metrics":{"danger":0.01,"normal":97.22},"class":"normal"},{"source":"knit","target":"feignedly","metadata":{"streaming":1},"metrics":{"danger":0.002,"normal":377.03000000000003},"class":"normal"},{"source":"knit","target":"necrotized","metadata":{"streaming":1},"metrics":{"danger":0.154,"normal":95.892},"class":"normal"},{"source":"knit","target":"permillages","metadata":{"streaming":1},"metrics":{"danger":0.002,"normal":34.656},"class":"normal"},{"source":"knit","target":"homoscedasticity","metadata":{"streaming":1},"metrics":{"danger":0.002,"normal":34.656},"class":"normal"},{"source":"knit","target":"hoolachan","metadata":{"streaming":1},"metrics":{"danger":0.078,"normal":79.116},"class":"normal"},{"source":"knit","target":"megavertebrate","metadata":{"streaming":1},"metrics":{"normal":524.826},"class":"normal"},{"source":"knit","target":"latests","metadata":{"streaming":1},"metrics":{"danger":4.424,"normal":93.54400000000001},"class":"normal"},{"source":"knit","target":"bigarreaus","metadata":{"streaming":1},"metrics":{"danger":3.09,"normal":343.692},"class":"normal"},{"source":"redeposit","target":"unsuits","metadata":{"streaming":1},"metrics":{"danger":0.702,"normal":15.906},"status":{"warning":0.22,"danger":242.56,"normal":265024.18},"class":"normal"},{"source":"redeposit","target":"necrotized","metadata":{"streaming":1},"metrics":{"danger":0.04,"normal":18.586000000000002},"class":"normal"},{"source":"redeposit","target":"tutworkmen","metadata":{"streaming":1},"metrics":{"danger":0.008,"normal":24.392},"class":"normal"},{"source":"priory","target":"feignedly","metadata":{"streaming":1},"metrics":{"normal":170.874},"class":"normal"},{"source":"priory","target":"permillages","metadata":{"streaming":1},"metrics":{"danger":0.006,"normal":8.846},"class":"normal"},{"source":"priory","target":"homoscedasticity","metadata":{"streaming":1},"metrics":{"danger":0.006,"normal":8.846},"class":"normal"},{"source":"priory","target":"arrear","metadata":{"streaming":1},"metrics":{"danger":0.348,"normal":1001.802},"class":"normal"},{"source":"priory","target":"latests","metadata":{"streaming":1},"metrics":{"danger":33.884,"normal":1220.4},"class":"normal"},{"source":"diestock","target":"feignedly","metadata":{"streaming":1},"metrics":{"danger":0.038,"normal":282.24},"class":"normal"},{"source":"diestock","target":"poloidal","metadata":{"streaming":1},"metrics":{"danger":0.004,"normal":55.65},"class":"normal"},{"source":"flossing","target":"decivilises","metadata":{"streaming":1},"metrics":{"normal":18.56},"class":"normal"},{"source":"tantalus","target":"larniest","metadata":{"streaming":1},"metrics":{"danger":0.09,"normal":8.684000000000001},"class":"normal"},{"source":"tantalus","target":"urodynamics","metadata":{"streaming":1},"metrics":{"danger":0.028000000000000004,"normal":84.232},"class":"normal"},{"source":"tantalus","target":"diehard","metadata":{"streaming":1},"metrics":{"danger":0.066,"normal":6.94},"class":"normal"},{"source":"diehard","target":"larniest","metadata":{"streaming":1},"metrics":{"danger":7.25,"normal":793.876},"class":"normal"},{"source":"diehard","target":"urodynamics","metadata":{"streaming":1},"metrics":{"danger":0.076,"normal":321.182},"class":"normal"},{"source":"diehard","target":"chignons","metadata":{"streaming":1},"metrics":{"danger":0.01,"normal":235.86399999999998},"class":"normal"},{"source":"diehard","target":"veracious","metadata":{"streaming":1},"metrics":{"normal":14.706},"class":"normal"},{"source":"traditioners","target":"larniest","metadata":{"streaming":1},"metrics":{"danger":3.38,"normal":315.808},"class":"normal"},{"source":"traditioners","target":"urodynamics","metadata":{"streaming":1},"metrics":{"danger":0.024,"normal":100.514},"class":"normal"},{"source":"traditioners","target":"quantitations","metadata":{"streaming":1},"metrics":{"danger":0.026000000000000002,"normal":67.784},"class":"normal"},{"source":"traditioners","target":"chignons","metadata":{"streaming":1},"metrics":{"danger":0.11599999999999999,"normal":14.89},"class":"normal"},{"source":"traditioners","target":"yeas","metadata":{"streaming":1},"metrics":{"danger":0.068,"normal":44.872},"class":"normal"},{"source":"traditioners","target":"protectors","metadata":{"streaming":1},"metrics":{"danger":0.002,"normal":152.136},"class":"normal"},{"source":"torten","target":"ladyloves","metadata":{"streaming":1},"metrics":{"danger":0.02,"normal":206.17199999999997},"class":"normal"},{"source":"torten","target":"diehard","metadata":{"streaming":1},"metrics":{"danger":1.192,"normal":200.00799999999998},"class":"normal"},{"source":"torten","target":"protectors","metadata":{"streaming":1},"metrics":{"danger":0.03,"normal":205.862},"class":"normal"},{"source":"outrooted","target":"ladyloves","metadata":{"streaming":1},"metrics":{"danger":0.008,"normal":40.612},"class":"normal"},{"source":"outrooted","target":"diehard","metadata":{"streaming":1},"metrics":{"danger":0.174,"normal":39.678},"class":"normal"},{"source":"outrooted","target":"protectors","metadata":{"streaming":1},"metrics":{"normal":40.576,"danger":0.004},"class":"normal"},{"source":"gruntle","target":"larniest","metadata":{"streaming":1},"metrics":{"danger":1.7100000000000002,"normal":209.61399999999998},"class":"normal"},{"source":"gruntle","target":"postpubescent","metadata":{"streaming":1},"metrics":{"danger":0.002,"normal":14.126},"class":"normal"},{"source":"gruntle","target":"dhurrie","metadata":{"streaming":1},"metrics":{"danger":0.004,"normal":10.922},"class":"normal"},{"source":"gruntle","target":"flavescent","metadata":{"streaming":1},"metrics":{"normal":9.836},"status":{"normal":74.99},"class":"normal"},{"source":"gruntle","target":"tankbusters","metadata":{"streaming":1},"metrics":{"normal":8.09},"class":"normal"},{"source":"proxy-prod","target":"unsuits","metadata":{"streaming":1},"metrics":{"normal":21355.78,"danger":0.266},"status":{"warning":0.22,"danger":242.56,"normal":265024.18},"class":"normal"},{"source":"proxy-prod","target":"prosaicness","metadata":{"streaming":1},"metrics":{"normal":69.97},"status":{"danger":0.06,"normal":697.92},"class":"normal"},{"source":"upswollen","target":"tilburies","metadata":{"streaming":1},"metrics":{"normal":79.458},"status":{"normal":393.55},"class":"normal"},{"source":"upswollen","target":"micrometres","metadata":{"streaming":1},"metrics":{"danger":0.048,"normal":9.294},"class":"normal"},{"source":"upswollen","target":"redeposit","metadata":{"streaming":1},"metrics":{"danger":0.022,"normal":74.964},"status":{"danger":0.1,"normal":374.74},"class":"normal"},{"source":"upswollen","target":"micronise","metadata":{"streaming":1},"metrics":{"danger":0.036,"normal":6267.376},"status":{"danger":0.77,"normal":32223},"class":"normal"},{"source":"upswollen","target":"knit","metadata":{"streaming":1},"metrics":{"danger":0.004,"normal":1100.808},"status":{"danger":0.46,"normal":11183.7},"class":"normal"},{"source":"overmighty","target":"unsuits","metadata":{"streaming":1},"metrics":{"danger":15.752,"normal":4688.778},"status":{"warning":0.22,"danger":242.56,"normal":265024.18},"class":"normal"},{"source":"overmighty","target":"flavescent","metadata":{"streaming":1},"metrics":{"normal":15.252},"status":{"normal":74.99},"class":"normal"},{"source":"overmighty","target":"yolkier","metadata":{"streaming":1},"metrics":{"danger":0.08199999999999999,"normal":665.77},"status":{"danger":0.65,"normal":19516.89},"class":"normal"},{"source":"overmighty","target":"micronise","metadata":{"streaming":1},"metrics":{"danger":0.018,"normal":176.832},"status":{"danger":0.77,"normal":32223},"class":"normal"},{"source":"overmighty","target":"knit","metadata":{"streaming":1},"metrics":{"normal":15.916},"status":{"danger":0.23,"normal":5591.85},"class":"normal"},{"source":"overmighty","target":"mullahs","metadata":{"streaming":1},"metrics":{"danger":0.012,"normal":126.74000000000001},"status":{"danger":1.7,"normal":10682.48},"class":"normal"},{"source":"overmighty","target":"punny","metadata":{"streaming":1},"metrics":{"danger":0.136,"normal":82.978},"status":{"danger":0.21,"normal":415.19},"class":"normal"},{"source":"overmighty","target":"introducible","metadata":{"streaming":1},"metrics":{"normal":12.23},"status":{"normal":60.2},"class":"normal"},{"source":"proxy-log","target":"mullahs","metadata":{"streaming":1},"metrics":{"normal":2011.7240000000002},"status":{"danger":3.4,"normal":21364.96},"class":"normal"},{"source":"proxy-log","target":"yolkier","metadata":{"streaming":1},"metrics":{"normal":3238.2439999999997,"danger":0.048},"status":{"danger":0.65,"normal":19516.89},"class":"normal"},{"source":"prosaicness","target":"unsuits","metadata":{"streaming":1},"metrics":{"danger":0.194,"normal":69.30199999999999},"status":{"warning":0.11,"danger":121.28,"normal":132512.09},"class":"normal"},{"source":"finnesko","target":"unsuits","metadata":{"streaming":1},"metrics":{"danger":0.29,"normal":135.448},"status":{"warning":0.11,"danger":121.28,"normal":132512.09},"class":"normal"},{"source":"neurohypnology","target":"ethnobiologies","metadata":{"streaming":1},"metrics":{"normal":16.556},"class":"normal"},{"source":"slogging","target":"tutworkmen","metadata":{"streaming":1},"metrics":{"danger":0.018,"normal":148.05599999999998},"class":"normal"},{"source":"slogging","target":"addressers","metadata":{"streaming":1},"metrics":{"normal":18.808},"class":"normal"},{"source":"slogging","target":"traditioners","metadata":{"streaming":1},"metrics":{"danger":0.02,"normal":156.8},"class":"normal"},{"source":"slogging","target":"protectors","metadata":{"streaming":1},"metrics":{"normal":25.474},"class":"normal"},{"source":"slogging","target":"decivilises","metadata":{"streaming":1},"metrics":{"normal":14.972},"class":"normal"},{"source":"sporangiole","target":"traditioners","metadata":{"streaming":1},"metrics":{"normal":7.984},"class":"normal"},{"source":"unsuits","target":"larniest","metadata":{"streaming":1},"metrics":{"danger":3.146,"normal":263.698},"class":"normal"},{"source":"unsuits","target":"fancied","metadata":{"streaming":1},"metrics":{"normal":103.252},"class":"normal"},{"source":"unsuits","target":"basophil","metadata":{"streaming":1},"metrics":{"normal":313.994,"danger":0.006},"class":"normal"},{"source":"unsuits","target":"subdevelopments","metadata":{"streaming":1},"metrics":{"normal":122.46400000000001},"class":"normal"},{"source":"unsuits","target":"urodynamics","metadata":{"streaming":1},"metrics":{"danger":0.182,"normal":727.4399999999999},"class":"normal"},{"source":"unsuits","target":"micrometres","metadata":{"streaming":1},"metrics":{"danger":0.93,"normal":267.992},"class":"normal"},{"source":"unsuits","target":"feignedly","metadata":{"streaming":1},"metrics":{"danger":0.004,"normal":15.262},"class":"normal"},{"source":"unsuits","target":"necrotized","metadata":{"streaming":1},"metrics":{"normal":44.976,"danger":0.002},"class":"normal"},{"source":"unsuits","target":"gruntle","metadata":{"streaming":1},"metrics":{"normal":177.302},"class":"normal"},{"source":"unsuits","target":"flavescent","metadata":{"streaming":1},"metrics":{"normal":9.052},"status":{"normal":74.99},"class":"normal"},{"source":"unsuits","target":"quantitations","metadata":{"streaming":1},"metrics":{"danger":0.3,"normal":36.922000000000004},"class":"normal"},{"source":"unsuits","target":"hoolachan","metadata":{"streaming":1},"metrics":{"normal":7.758},"class":"normal"},{"source":"unsuits","target":"solarises","metadata":{"streaming":1},"metrics":{"normal":446.96000000000004},"class":"normal"},{"source":"unsuits","target":"lists","metadata":{"streaming":1},"metrics":{"danger":10.692,"normal":982.9280000000001},"class":"normal"},{"source":"unsuits","target":"slogging","metadata":{"streaming":1},"metrics":{"danger":0.044,"normal":450.242},"class":"normal"},{"source":"unsuits","target":"tantalus","metadata":{"streaming":1},"metrics":{"danger":0.002,"normal":365.73400000000004},"class":"normal"},{"source":"unsuits","target":"undriven","metadata":{"streaming":1},"metrics":{"danger":0.02,"normal":66.542},"class":"normal"},{"source":"unsuits","target":"orcine","metadata":{"streaming":1},"metrics":{"danger":0.10600000000000001,"normal":103.47999999999999},"class":"normal"},{"source":"unsuits","target":"tutworkmen","metadata":{"streaming":1},"metrics":{"danger":0.73,"normal":3687.1519999999996},"class":"normal"},{"source":"unsuits","target":"belletrists","metadata":{"streaming":1},"metrics":{"danger":0.008,"normal":1173.662},"class":"normal"},{"source":"unsuits","target":"megavertebrate","metadata":{"streaming":1},"metrics":{"danger":0.04,"normal":56.074},"class":"normal"},{"source":"unsuits","target":"priory","metadata":{"streaming":1},"metrics":{"danger":8.722,"normal":1386.1100000000001},"class":"normal"},{"source":"unsuits","target":"capot","metadata":{"streaming":1},"metrics":{"danger":0.274,"normal":120.144},"class":"normal"},{"source":"unsuits","target":"rattling","metadata":{"streaming":1},"metrics":{"normal":11.226},"class":"normal"},{"source":"unsuits","target":"philosophizer","metadata":{"streaming":1},"metrics":{"danger":6.093999999999999,"normal":908.292},"class":"normal"},{"source":"unsuits","target":"findram","metadata":{"streaming":1},"metrics":{"danger":0.022,"normal":948.542},"class":"normal"},{"source":"unsuits","target":"bigarreaus","metadata":{"streaming":1},"metrics":{"danger":51.142,"normal":6958.360000000001},"class":"normal"},{"source":"unsuits","target":"underwent","metadata":{"streaming":1},"metrics":{"danger":16.125999999999998,"normal":2436.19},"class":"normal"},{"source":"unsuits","target":"oestrus","metadata":{"streaming":1},"metrics":{"danger":0.8539999999999999,"normal":441.09399999999994},"class":"normal"},{"source":"unsuits","target":"diestock","metadata":{"streaming":1},"metrics":{"danger":1.098,"normal":308.434},"class":"normal"},{"source":"unsuits","target":"yeas","metadata":{"streaming":1},"metrics":{"danger":0.20600000000000002,"normal":98.22999999999999},"class":"normal"},{"source":"unsuits","target":"frailly","metadata":{"streaming":1},"metrics":{"danger":0.014000000000000002,"normal":459.716},"class":"normal"},{"source":"unsuits","target":"decivilises","metadata":{"streaming":1},"metrics":{"danger":0.47800000000000004,"normal":1200.6399999999999},"class":"normal"},{"source":"latests","target":"larniest","metadata":{"streaming":1},"metrics":{"danger":1.376,"normal":95.79400000000001},"class":"normal"},{"source":"philosophizer","target":"larniest","metadata":{"streaming":1},"metrics":{"danger":6.87,"normal":908.874},"class":"normal"},{"source":"flavescent","target":"famished","metadata":{"streaming":1},"metrics":{"danger":0.004,"normal":60.467999999999996},"class":"normal"},{"source":"flavescent","target":"marbleise","metadata":{"streaming":1},"metrics":{"danger":0.002,"normal":21.169999999999998},"class":"normal"},{"source":"flavescent","target":"postpubescent","metadata":{"streaming":1},"metrics":{"normal":8.086},"class":"normal"},{"source":"flavescent","target":"gruntle","metadata":{"streaming":1},"metrics":{"normal":51.977999999999994},"class":"normal"},{"source":"lists","target":"larniest","metadata":{"streaming":1},"metrics":{"danger":0.8779999999999999,"normal":60.001999999999995},"class":"normal"},{"source":"lists","target":"outrooted","metadata":{"streaming":1},"metrics":{"danger":0.006,"normal":40.67},"class":"normal"},{"source":"lists","target":"torten","metadata":{"streaming":1},"metrics":{"normal":205.73600000000002},"class":"normal"},{"source":"lists","target":"ladyloves","metadata":{"streaming":1},"metrics":{"danger":0.034,"normal":323.96},"class":"normal"},{"source":"lists","target":"tutworkmen","metadata":{"streaming":1},"metrics":{"danger":0.002,"normal":59.738},"class":"normal"},{"source":"lists","target":"addressers","metadata":{"streaming":1},"metrics":{"normal":121.27000000000001},"class":"normal"},{"source":"lists","target":"immobile","metadata":{"streaming":1},"metrics":{"danger":0.092,"normal":164.45},"class":"normal"},{"source":"lists","target":"antimagnetic","metadata":{"streaming":1},"metrics":{"normal":8.404},"class":"normal"},{"source":"lists","target":"diehard","metadata":{"streaming":1},"metrics":{"danger":2.134,"normal":561.3340000000001},"class":"normal"},{"source":"lists","target":"decivilises","metadata":{"streaming":1},"metrics":{"normal":82.572},"class":"normal"},{"source":"punny","target":"unsuits","metadata":{"streaming":1},"metrics":{"danger":1.5699999999999998,"normal":227.206},"status":{"warning":0.11,"danger":121.28,"normal":132512.09},"class":"normal"},{"source":"exserted","target":"flickers","metadata":{"streaming":1},"metrics":{"danger":0.036,"normal":31.880000000000003},"class":"normal"},{"source":"solarises","target":"urodynamics","metadata":{"streaming":1},"metrics":{"danger":0.004,"normal":14.12},"class":"normal"},{"source":"solarises","target":"addressers","metadata":{"streaming":1},"metrics":{"normal":23.003999999999998},"class":"normal"},{"source":"ermines","target":"solarises","metadata":{"streaming":1},"metrics":{"normal":7.6819999999999995},"class":"normal"},{"source":"ermines","target":"unburned","metadata":{"streaming":1},"metrics":{"danger":23.125999999999998,"normal":22.724},"class":"danger"},{"source":"findram","target":"urodynamics","metadata":{"streaming":1},"metrics":{"danger":0.096,"normal":275.356},"class":"normal"},{"source":"findram","target":"addressers","metadata":{"streaming":1},"metrics":{"normal":16.342},"class":"normal"},{"source":"tilburies","target":"unsuits","metadata":{"streaming":1},"metrics":{"danger":0.10200000000000001,"normal":78.41},"status":{"warning":0.11,"danger":121.28,"normal":132512.09},"class":"normal"},{"source":"tilburies","target":"necrotized","metadata":{"streaming":1},"metrics":{"danger":0.066,"normal":32.444},"class":"normal"},{"source":"tilburies","target":"hoolachan","metadata":{"streaming":1},"metrics":{"danger":0.034,"normal":24.637999999999998},"class":"normal"},{"source":"tilburies","target":"subdiaconates","metadata":{"streaming":1},"metrics":{"danger":0.004,"normal":8.245999999999999},"class":"normal"},{"source":"tilburies","target":"underwent","metadata":{"streaming":1},"metrics":{"danger":0.48600000000000004,"normal":78.41},"class":"normal"},{"source":"quantitations","target":"larniest","metadata":{"streaming":1},"metrics":{"danger":0.308,"normal":25.7},"class":"normal"},{"source":"permillages","target":"dhurrie","metadata":{"streaming":1},"metrics":{"danger":0.03,"normal":191.126},"class":"normal"},{"source":"basophil","target":"necrotized","metadata":{"streaming":1},"metrics":{"danger":0.068,"normal":82.112},"class":"normal"},{"source":"basophil","target":"subdiaconates","metadata":{"streaming":1},"metrics":{"normal":33.848},"class":"normal"},{"source":"basophil","target":"longeval","metadata":{"streaming":1},"metrics":{"danger":0.01,"normal":6.726000000000001},"class":"normal"},{"source":"belletrists","target":"cobalamins","metadata":{"streaming":1},"metrics":{"danger":4.529999999999999,"normal":1895.952},"class":"normal"},{"source":"belletrists","target":"decivilises","metadata":{"streaming":1},"metrics":{"danger":0.012,"normal":7.609999999999999},"class":"normal"},{"source":"megavertebrate","target":"overteem","metadata":{"streaming":1},"metrics":{"danger":0.038,"normal":171.342},"class":"normal"},{"source":"megavertebrate","target":"decivilises","metadata":{"streaming":1},"metrics":{"danger":0.024,"normal":37.742000000000004},"class":"normal"},{"source":"protectors","target":"urodynamics","metadata":{"streaming":1},"metrics":{"danger":0.012,"normal":51.58},"class":"normal"},{"source":"protectors","target":"quantitations","metadata":{"streaming":1},"metrics":{"danger":0.08399999999999999,"normal":149.35399999999998},"class":"normal"},{"source":"introducible","target":"corvinas","metadata":{"streaming":1},"metrics":{"normal":11.604000000000001},"class":"normal"}],"maxVolume":83559.458,"props":{"maxSemaphores":[{"targetRegion":"eu-west-1","region":"us-east-1","value":"20"},{"targetRegion":"us-west-2","region":"eu-west-1","value":"20"},{"targetRegion":"us-west-2","region":"us-east-1","value":"200"},{"targetRegion":"us-east-1","region":"us-west-2","value":"160"},{"targetRegion":"us-east-1","region":"eu-west-1","value":"20"}]},"class":"normal"}],"connections":[{"source":"INTERNET","target":"us-west-2","metrics":{"normal":40267.45599999999,"danger":25.083999999999996,"warning":0.022},"notices":[],"class":"normal"},{"source":"INTERNET","target":"us-east-1","metrics":{"normal":26037.626,"danger":92.36999999999999},"notices":[],"class":"normal"},{"source":"INTERNET","target":"eu-west-1","metrics":{"normal":9287.85,"danger":18.774000000000004,"warning":0.004},"notices":[],"class":"normal"},{"source":"us-west-2","target":"us-east-1","metrics":{"normal":0.05600000000000001}},{"source":"us-west-2","target":"eu-west-1","metrics":{"normal":1.2279999999999993,"danger":0.028000000000000004}},{"source":"us-east-1","target":"eu-west-1","metrics":{"normal":0.008}},{"source":"us-east-1","target":"us-west-2","metrics":{}},{"source":"eu-west-1","target":"us-east-1","metrics":{}},{"source":"eu-west-1","target":"us-west-2","metrics":{}}],"maxVolume":84337.736,"serverUpdateTime":1466839644424} --------------------------------------------------------------------------------