Repository: slanatech/dashblocks-template Branch: master Commit: 20ae3a908c56 Files: 85 Total size: 553.3 KB Directory structure: gitextract_2_g3etwt/ ├── .editorconfig ├── .eslintignore ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ └── main.yml ├── .gitignore ├── .prettierrc ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── babel.config.js ├── cypress.json ├── package.json ├── public/ │ ├── googleee01dc033d7bbca2.html │ └── index.html ├── scripts/ │ └── demodeploy.sh ├── src/ │ ├── App.vue │ ├── components/ │ │ ├── menu/ │ │ │ ├── menudrawer.vue │ │ │ ├── menulist.vue │ │ │ ├── menulistitem.vue │ │ │ └── menulistitemex.vue │ │ ├── settings/ │ │ │ ├── colorschemeselector.vue │ │ │ └── settings.vue │ │ ├── tables/ │ │ │ ├── htable.vue │ │ │ ├── itable.vue │ │ │ └── ptable.vue │ │ └── user/ │ │ ├── message.vue │ │ ├── messages.vue │ │ └── userinfo.vue │ ├── dashboards/ │ │ ├── ChartJsShowcase.json │ │ ├── dashfive.json │ │ ├── dashfour.json │ │ ├── dashsix.json │ │ └── dashthree.json │ ├── data/ │ │ ├── ChartJsShowcase.json │ │ ├── api.json │ │ ├── apioperation.json │ │ ├── errors.json │ │ ├── hitsdata.json │ │ ├── iconsmdiv5.json │ │ ├── itemstabledata.json │ │ ├── ptabledata.json │ │ ├── requests.json │ │ └── summary.json │ ├── layouts/ │ │ └── mainlayout.vue │ ├── main.js │ ├── mixins/ │ │ ├── demodashboard.js │ │ └── vgtmethods.js │ ├── pages/ │ │ └── login.vue │ ├── quasar.js │ ├── router.js │ ├── store/ │ │ ├── modules/ │ │ │ └── layout.js │ │ └── store.js │ ├── styles/ │ │ ├── quasar.scss │ │ ├── quasar.variables.scss │ │ ├── textbgcolors.scss │ │ ├── ubbox.scss │ │ ├── ubcode.scss │ │ └── vgt.scss │ ├── utils.js │ └── views/ │ ├── About.vue │ ├── ChartJsShowcase.vue │ ├── DashblocksShowcase.vue │ ├── Dygraphs.vue │ ├── Home.vue │ ├── SampleDashboard.vue │ ├── apiop.vue │ ├── errors.vue │ ├── forms.vue │ ├── materialicons.vue │ ├── mdi.vue │ ├── observability.vue │ ├── quasartable.vue │ ├── requests.vue │ ├── summary.vue │ ├── tables.vue │ ├── timeline.vue │ ├── typography.vue │ └── vuegoodtable.vue ├── tests/ │ ├── e2e/ │ │ ├── .eslintrc.js │ │ ├── plugins/ │ │ │ └── index.js │ │ ├── specs/ │ │ │ └── test.js │ │ └── support/ │ │ ├── commands.js │ │ └── index.js │ └── unit/ │ └── .eslintrc.js └── vue.config.js ================================================ FILE CONTENTS ================================================ ================================================ FILE: .editorconfig ================================================ # EditorConfig helps developers define and maintain consistent # coding styles between different editors and IDEs # editorconfig.org root = true [*] # Change these settings to your own preference indent_style = space indent_size = 2 # We recommend you to keep these unchanged end_of_line = lf charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true [*.md] trim_trailing_whitespace = false ================================================ FILE: .eslintignore ================================================ dist node_modules public tests ================================================ FILE: .github/FUNDING.yml ================================================ github: sv2 ================================================ FILE: .github/workflows/main.yml ================================================ name: CI # Controls when the action will run. Triggers the workflow on push or pull request # events but only for the master branch on: push: branches: [ master ] # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: build_and_publish: # The type of runner that the job will run on runs-on: ubuntu-latest # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v2 - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - uses: actions/cache@v1 id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} restore-keys: | ${{ runner.os }}-yarn- # Runs a set of commands using the runners shell - name: Install NPM packages run: yarn install - name: Build run: yarn run build - name: Deploy uses: JamesIves/github-pages-deploy-action@releases/v3 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} BRANCH: gh-pages FOLDER: dist ================================================ FILE: .gitignore ================================================ .DS_Store node_modules /dist /demo /tests/e2e/videos/ /tests/e2e/screenshots/ # local env files .env.local .env.*.local # Log files npm-debug.log* yarn-debug.log* yarn-error.log* # Editor directories and files .idea .vscode *.suo *.ntvs* *.njsproj *.sln *.sw? ================================================ FILE: .prettierrc ================================================ { "singleQuote": true, "printWidth": 160 } ================================================ FILE: CONTRIBUTING.md ================================================ # Contributing Want to contribute to **dashblocks-template**? Awesome! There are many ways you can contribute: * by reviewing * by reporting bugs * by suggesting improvements and new features * by writing or editing documentation * by writing code ( no patch is too small ) * by closing issues ## Proposing pull requests Pull requests are very welcome. Note that if you are going to propose drastic changes, be sure to open an issue for discussion first, to make sure that your PR will be accepted before you spend effort coding it. Inspired by https://github.com/middleman/middleman-heroku/blob/master/CONTRIBUTING.md ================================================ FILE: LICENSE ================================================ The MIT License (MIT) Copyright (c) 2019-present slana.tech Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: README.md ================================================

https://dashblocks.io

# Dashblocks Vue Material Admin Template | [DEMO](https://slanatech.github.io/dashblocks-template) ![](https://img.shields.io/badge/vue-2.x-brightgreen.svg) ![CI](https://github.com/slanatech/dashblocks-template/workflows/CI/badge.svg) ### Enable Analytics in your Vue App with [Dashblocks](https://github.com/slanatech/dashblocks) [Live Demo](https://slanatech.github.io/dashblocks-template) ![dashboard](screenshots/dashblocks.png?raw=true) Dashblocks Vue Material Admin Template is build based on [Quasar Framework](https://quasar.dev/), [Vuex](https://vuex.vuejs.org/installation.html), [Vuejs](https://vuejs.org/) and [Dashblocks](https://github.com/slanatech/dashblocks). We focus on providing beautiful interactive Dashboards out of the box, and helping to enable In-App Analytics in your Apps. [Dashblocks](https://github.com/slanatech/dashblocks) enables simple and streamlined way to quickly add awesome Dashboards in your app: * Use declarative approach to define a dashboard. The whole dashboard is just one JS object (or JSON) * Provide reasonable out of the box defaults for all chart types, such as colors * Support dark / light modes out of the box * Enable interactivity by providing event handling on dashboard level * Streamline dynamic updates of dashboard data, for example based on user interaction with dashboard * Even dynamically generate Dashboard itself based on the data - thanks to declarative approach ## Quick start Clone `dashblocks-template` repo: ```bash $ git clone https://github.com/slanatech/dashblocks-template.git ``` Install dependencies: ```bash $ cd dashblocks-template $ yarn install ``` Run `serve`: ```bash $ yarn run serve ``` `dashblocks-template` is set up using [vue-cli](https://github.com/vuejs/vue-cli), you will see standard `vue-cli` scripts in `package.json`: `serve`, `build` ... [Quasar Framework](https://quasar.dev/) is configured using Vue CLI Quasar Plugin. ## Enhancements and Bug Reports If you find a bug, or have an enhancement in mind please post [issues](https://github.com/slanatech/dashblocks-template/issues) test1 test2 test3 ## License [MIT](LICENSE) ================================================ FILE: babel.config.js ================================================ module.exports = { presets: ['@vue/cli-plugin-babel/preset'], plugins: [ [ 'transform-imports', { quasar: { transform: 'quasar/dist/babel-transforms/imports.js', preventFullImport: true } } ] ] }; ================================================ FILE: cypress.json ================================================ { "pluginsFile": "tests/e2e/plugins/index.js" } ================================================ FILE: package.json ================================================ { "name": "dashblocks-template", "version": "0.5.4", "private": true, "author": "https://github.com/sv2", "scripts": { "serve": "vue-cli-service serve", "build": "vue-cli-service build", "test:unit": "vue-cli-service test:unit", "test:e2e": "vue-cli-service test:e2e", "lint": "vue-cli-service lint", "release": "release-it", "release-ci": "release-it --ci" }, "dependencies": { "@quasar/extras": "^1.8.2", "core-js": "^3.6.5", "quasar": "^1.12.3", "vue": "^2.6.11", "vue-router": "^3.3.2", "vuex": "^3.4.0" }, "devDependencies": { "@vue/cli-plugin-babel": "^4.3.1", "@vue/cli-plugin-e2e-cypress": "^4.3.1", "@vue/cli-plugin-eslint": "^4.3.1", "@vue/cli-plugin-unit-jest": "^4.3.1", "@vue/cli-service": "^4.3.1", "@vue/eslint-config-prettier": "^6.0.0", "@vue/test-utils": "^1.0.0-beta.33", "babel-core": "7.0.0-bridge.0", "babel-eslint": "^10.1.0", "babel-jest": "^24.9.0", "babel-plugin-transform-imports": "1.5.0", "dashblocks": "^0.5.35", "eslint": "^6.8.0", "eslint-plugin-prettier": "^3.1.3", "eslint-plugin-vue": "^6.2.2", "lint-staged": "^8.1.5", "node-sass": "^4.13.1", "release-it": "^13.5.4", "sass-loader": "^8.0.2", "vue-cli-plugin-quasar": "^2.0.0", "vue-template-compiler": "^2.6.11", "webpack-bundle-analyzer": "^3.6.0", "ramda": "^0.27.0", "vue-good-table": "^2.18.0" }, "eslintConfig": { "root": true, "env": { "node": true }, "extends": [ "plugin:vue/essential", "@vue/prettier" ], "rules": {}, "parserOptions": { "parser": "babel-eslint" } }, "postcss": { "plugins": { "autoprefixer": {} } }, "browserslist": [ "> 1%", "last 2 versions" ], "jest": { "moduleFileExtensions": [ "js", "jsx", "json", "vue" ], "transform": { "^.+\\.vue$": "vue-jest", ".+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$": "jest-transform-stub", "^.+\\.jsx?$": "babel-jest" }, "transformIgnorePatterns": [ "/node_modules/" ], "moduleNameMapper": { "^@/(.*)$": "/src/$1" }, "snapshotSerializers": [ "jest-serializer-vue" ], "testMatch": [ "**/tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)" ], "testURL": "http://localhost/", "watchPlugins": [ "jest-watch-typeahead/filename", "jest-watch-typeahead/testname" ] }, "bugs": { "url": "https://github.com/slanatech/dashblocks-template/issues", "email": "sv2@slana.tech" }, "gitHooks": { "pre-commit": "lint-staged" }, "homepage": "https://github.com/slanatech/dashblocks-template", "license": "MIT", "lint-staged": { "*.{js,vue}": [ "vue-cli-service lint", "git add" ] }, "release-it": { "github": { "release": true }, "hooks": { "after:release": "echo Successfully released ${name} v${version} to ${repo.repository}." } }, "repository": { "type": "git", "url": "https://github.com/slanatech/dashblocks-template" } } ================================================ FILE: public/googleee01dc033d7bbca2.html ================================================ google-site-verification: googleee01dc033d7bbca2.html ================================================ FILE: public/index.html ================================================ dashblocks-template
================================================ FILE: scripts/demodeploy.sh ================================================ #!/bin/bash # abort on errors set -e # navigate into the build output directory cd demo git init git add -A git commit -m 'deploy for github pages' git push -f https://github.com/slanatech/dashblocks-template.git master:gh-pages cd - ================================================ FILE: src/App.vue ================================================ ================================================ FILE: src/components/menu/menudrawer.vue ================================================ ================================================ FILE: src/components/menu/menulist.vue ================================================ ================================================ FILE: src/components/menu/menulistitem.vue ================================================ ================================================ FILE: src/components/menu/menulistitemex.vue ================================================ ================================================ FILE: src/components/settings/colorschemeselector.vue ================================================ ================================================ FILE: src/components/settings/settings.vue ================================================ ================================================ FILE: src/components/tables/htable.vue ================================================ ================================================ FILE: src/components/tables/itable.vue ================================================ ================================================ FILE: src/components/tables/ptable.vue ================================================ ================================================ FILE: src/components/user/message.vue ================================================ ================================================ FILE: src/components/user/messages.vue ================================================ ================================================ FILE: src/components/user/userinfo.vue ================================================ ================================================ FILE: src/dashboards/ChartJsShowcase.json ================================================ { "layout": { "type": "grid" }, "widgets": [ { "id": "w1", "type": "DbChartjsLine", "cspan": 4, "height": 250, "properties": { "options": { "maintainAspectRatio": false, "legend": { "labels": { "fontColor": "red" } } } } }, { "id": "w2", "type": "DbChartjsBar", "cspan": 4, "height": 250 }, { "id": "w3", "type": "DbChartjsHorizontalBar", "cspan": 4 }, { "id": "w4", "type": "DbChartjsPie", "cspan": 4 }, { "id": "w5", "type": "DbChartjsDoughnut", "cspan": 4, "height": 250 }, { "id": "w6", "type": "DbChartjsPolarArea", "cspan": 4, "height": 250 }, { "id": "w7", "type": "DbChartjsRadar", "cspan": 4, "height": 250 }, { "id": "w8", "type": "DbChartjsBar", "cspan": 4, "height": 250 }, { "id": "w9", "type": "DbChartjsBubble", "cspan": 8, "height": 300 }, { "id": "w10", "type": "DbChartjsScatter", "cspan": 8, "height": 300, "properties": { "options": { "scales": { "xAxes": [{ "type": "linear", "position": "bottom" }] } } } } ] } ================================================ FILE: src/dashboards/dashfive.json ================================================ { "layout": { "type": "grid" }, "widgets": [ { "id": "wa", "type": "DbDygraphsBar", "cspan": 16, "height": 250, "properties": { "options": { "stackedGraph": true } } }, { "id": "w0", "type": "DbTrendLine", "cspan": 4, "properties": { "smooth": false, "strokeWidth": 1 } }, { "id": "w0", "type": "DbTrendLine", "cspan": 4 }, { "id": "w1", "type": "DbTrendBar", "cspan": 4 }, { "id": "w2", "type": "DbTrendBar", "cspan": 4 }, { "id": "w4", "type": "DbNumber", "cspan": 4, "properties": { "title": "Test OK", "badge": "req/s", "icon" : "fa fa-signal", "ranges": [1000,2000] } }, { "id": "w5", "type": "DbNumber", "cspan": 4, "properties": { "title": "Test Warning", "badge": "req/s", "icon" : "fa fa-clock", "ranges": [1000,2000] } }, { "id": "w6", "type": "DbNumber", "cspan": 4, "properties": { "title": "Test Alarm", "badge": "req/s", "icon" : "fa fa-chart-bar", "ranges": [1000,2000] } }, { "id": "w7", "type": "DbPlotly", "cspan": 16, "rspan": 2, "properties": { "layout": { "paper_bgcolor":"rgba(0,0,0,0)", "plot_bgcolor":"rgba(0,0,0,0)", "modebar": { "bgcolor": "rgba(0,0,0,0)", "color": "rgba(0,0,0,0.5)" }, "title": "reactive charts", "xaxis": { "title": "xaxis title" }, "yaxis": { "title": "yaxis title" }, "margin": { "l": 60, "r": 40, "b": 40, "t": 40, "pad": 5 } } } }, { "id": "w8", "type": "DbPlotlyLine", "cspan": 10, "height": 300, "properties": { "layout": { "template": "plotly_dark", "paper_bgcolor":"rgba(0,0,0,0)", "plot_bgcolor":"rgba(0,0,0,0)", "modebar": { "bgcolor": "rgba(0,0,0,0)", "color": "rgba(0,0,0,0.5)" }, "margin": { "l": 60, "r": 40, "b": 40, "t": 40, "pad": 5 } } } }, { "id": "w9", "type": "DbPlotlyPie", "cspan": 6, "height": 300, "properties": { "layout": { "legend": { "orientation": "h" }, "paper_bgcolor":"rgba(0,0,0,0)", "plot_bgcolor":"rgba(0,0,0,0)", "modebar": { "bgcolor": "rgba(0,0,0,0)", "color": "rgba(0,0,0,0.5)" }, "margin": { "l": 60, "r": 40, "b": 40, "t": 40, "pad": 5 } } } } ] } ================================================ FILE: src/dashboards/dashfour.json ================================================ { "layout": { "type": "grid" }, "widgets": [ { "id": "w0", "type": "DbTrendLine", "cspan": 16 }, { "id": "w1", "type": "WidgetOne", "cspan": 2, "rspan": 2 }, { "id": "w2", "type": "WidgetOne", "cspan": 2, "rspan": 1 }, { "id": "w3", "type": "DbChartjsLine", "cspan": 4, "height": 350 }, { "id": "w4", "type": "DbChartjsBar", "cspan": 4, "height": 350 }, { "id": "w5", "type": "DbChartjsBar", "cspan": 4 }, { "id": "w1", "type": "DbNumber", "cspan": 4, "height": 300 }, { "id": "w6", "type": "DbEasyPie", "cspan": 4, "properties": { "barColor": "red", "lineWidth": 10 } }, { "id": "w7", "type": "DbTrendLine", "cspan": 6 } ] } ================================================ FILE: src/dashboards/dashsix.json ================================================ { "layout": { "type": "grid" }, "widgets": [ { "id": "w1", "type": "DbDygraphsBar", "cspan": 16, "height": 250, "properties": { "options": { "stackedGraph": true } } }, { "id": "w2", "type": "DbDygraphsLine", "cspan": 8, "height": 300, "properties": { "options": { "stackedGraph": false, "title": "Random value Chart", "ylabel": "Probability", "labels" : ["Date","AAA","BBB"], "legend": "always" } } }, { "id": "w6", "type": "DbDygraphsLine", "cspan": 8, "height": 300, "properties": { "options": { "showRangeSelector": true, "stackedGraph": false, "title": "Random value Chart", "ylabel": "Probability", "labels" : ["Date","AAA","BBB"], "legend": "always" } } }, { "id": "w3", "type": "DbDygraphsSparkLine", "cspan": 4, "properties": { "smoothing": 0.5 } }, { "id": "w4", "type": "DbDygraphsSparkLine", "cspan": 4, "properties": { "options": { "colors": ["gray"], "strokeWidth": 0, "fillGraph": true, "fillAlpha": 0.2 } } }, { "id": "w5", "type": "DbDygraphsSparkLine", "cspan": 4, "properties": { "smoothing": 0.5 } } ] } ================================================ FILE: src/dashboards/dashthree.json ================================================ { "layout": { "type": "grid" }, "widgets": [ { "id": "w1", "type": "DbHorizon", "cspan": 16 } ] } ================================================ FILE: src/data/ChartJsShowcase.json ================================================ { "layout": { "type": "grid" }, "widgets": [ { "id": "w1", "type": "DbChartjsLine", "cspan": 4, "height": 250, "properties": { "options": { "maintainAspectRatio": false, "legend": { "labels": { "fontColor": "red" } } } } }, { "id": "w2", "type": "DbChartjsBar", "cspan": 4, "height": 250 }, { "id": "w3", "type": "DbChartjsHorizontalBar", "cspan": 4 }, { "id": "w4", "type": "DbChartjsPie", "cspan": 4 }, { "id": "w5", "type": "DbChartjsDoughnut", "cspan": 4, "height": 250 }, { "id": "w6", "type": "DbChartjsPolarArea", "cspan": 4, "height": 250 }, { "id": "w7", "type": "DbChartjsRadar", "cspan": 4, "height": 250 }, { "id": "w8", "type": "DbChartjsBar", "cspan": 4, "height": 250 }, { "id": "w9", "type": "DbChartjsBubble", "cspan": 8, "height": 300 }, { "id": "w10", "type": "DbChartjsScatter", "cspan": 8, "height": 300, "properties": { "options": { "scales": { "xAxes": [{ "type": "linear", "position": "bottom" }] } } } } ] } ================================================ FILE: src/data/api.json ================================================ { "startts": 1588045302159, "all": { "requests": 2465, "responses": 2465, "errors": 286, "info": 0, "success": 2179, "redirect": 0, "client_error": 210, "server_error": 76, "total_time": 125717, "max_time": 111, "avg_time": 51.00081135902637, "total_req_clength": 119548, "max_req_clength": 210, "avg_req_clength": 48, "total_res_clength": 261003, "max_res_clength": 203, "avg_res_clength": 105, "req_rate": 12.00325280846899, "err_rate": 1.3829305466958186, "apdex_threshold": 25, "apdex_satisfied": 523, "apdex_tolerated": 1649, "apdex_score": 0.5466531440162272 }, "egress": { "requests": 0, "responses": 0, "errors": 0, "info": 0, "success": 0, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 0, "max_time": 0, "avg_time": 0, "total_req_clength": 0, "max_req_clength": 0, "avg_req_clength": 0, "total_res_clength": 0, "max_res_clength": 0, "avg_res_clength": 0, "req_rate": 0, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 0, "apdex_tolerated": 0, "apdex_score": 0 }, "sys": { "rss": 49680384, "heapTotal": 34906112, "heapUsed": 17352432, "external": 1405319, "cpu": 6.0893728265431175, "lag": 0.123, "maxlag": 4.560799 }, "name": "swagger-stats-spectest", "version": "0.95.16", "hostname": "hostname", "ip": "127.0.0.1", "apdexThreshold": 25, "apidefs": { "/v2/pet": { "PUT": { "swagger": true, "deprecated": false, "description": "", "operationId": "updatePet", "summary": "Update an existing pet", "tags": [ "pet" ] }, "POST": { "swagger": true, "deprecated": false, "description": "", "operationId": "addPet", "summary": "Add a new pet to the store", "tags": [ "pet" ] } }, "/v2/pet/findByStatus": { "GET": { "swagger": true, "deprecated": false, "description": "Multiple status values can be provided with comma separated strings", "operationId": "findPetsByStatus", "summary": "Finds Pets by status", "tags": [ "pet" ] } }, "/v2/pet/findByTags": { "GET": { "swagger": true, "deprecated": true, "description": "Muliple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.", "operationId": "findPetsByTags", "summary": "Finds Pets by tags", "tags": [ "pet" ] } }, "/v2/pet/{petId}": { "GET": { "swagger": true, "deprecated": false, "description": "Returns a single pet", "operationId": "getPetById", "summary": "Find pet by ID", "tags": [ "pet" ] }, "POST": { "swagger": true, "deprecated": false, "description": "", "operationId": "updatePetWithForm", "summary": "Updates a pet in the store with form data", "tags": [ "pet" ] }, "DELETE": { "swagger": true, "deprecated": false, "description": "", "operationId": "deletePet", "summary": "Deletes a pet", "tags": [ "pet" ] } }, "/v2/pet/{petId}/uploadImage": { "POST": { "swagger": true, "deprecated": false, "description": "", "operationId": "uploadFile", "summary": "uploads an image", "tags": [ "pet" ] } }, "/v2/store/inventory": { "GET": { "swagger": true, "deprecated": false, "description": "Returns a map of status codes to quantities", "operationId": "getInventory", "summary": "Returns pet inventories by status", "tags": [ "store" ] } }, "/v2/store/order": { "POST": { "swagger": true, "deprecated": false, "description": "", "operationId": "placeOrder", "summary": "Place an order for a pet", "tags": [ "store" ] } }, "/v2/store/order/{orderId}": { "GET": { "swagger": true, "deprecated": false, "description": "For valid response try integer IDs with value >= 1 and <= 10. Other values will generated exceptions", "operationId": "getOrderById", "summary": "Find purchase order by ID", "tags": [ "store" ] }, "DELETE": { "swagger": true, "deprecated": false, "description": "For valid response try integer IDs with positive integer value. Negative or non-integer values will generate API errors", "operationId": "deleteOrder", "summary": "Delete purchase order by ID", "tags": [ "store" ] } }, "/v2/user": { "POST": { "swagger": true, "deprecated": false, "description": "This can only be done by the logged in user.", "operationId": "createUser", "summary": "Create user", "tags": [ "user" ] } }, "/v2/user/createWithArray": { "POST": { "swagger": true, "deprecated": false, "description": "", "operationId": "createUsersWithArrayInput", "summary": "Creates list of users with given input array", "tags": [ "user" ] } }, "/v2/user/createWithList": { "POST": { "swagger": true, "deprecated": false, "description": "", "operationId": "createUsersWithListInput", "summary": "Creates list of users with given input array", "tags": [ "user" ] } }, "/v2/user/login": { "GET": { "swagger": true, "deprecated": false, "description": "", "operationId": "loginUser", "summary": "Logs user into the system", "tags": [ "user" ] } }, "/v2/user/logout": { "GET": { "swagger": true, "deprecated": false, "description": "", "operationId": "logoutUser", "summary": "Logs out current logged in user session", "tags": [ "user" ] } }, "/v2/user/{username}": { "GET": { "swagger": true, "deprecated": false, "description": "", "operationId": "getUserByName", "summary": "Get user by user name", "tags": [ "user" ] }, "PUT": { "swagger": true, "deprecated": false, "description": "This can only be done by the logged in user.", "operationId": "updateUser", "summary": "Updated user", "tags": [ "user" ] }, "DELETE": { "swagger": true, "deprecated": false, "description": "This can only be done by the logged in user.", "operationId": "deleteUser", "summary": "Delete user", "tags": [ "user" ] } } }, "apistats": { "/v2/pet": { "PUT": { "requests": 115, "responses": 115, "errors": 16, "info": 0, "success": 99, "redirect": 0, "client_error": 11, "server_error": 5, "total_time": 5807, "max_time": 98, "avg_time": 50.495652173913044, "total_req_clength": 13050, "max_req_clength": 210, "avg_req_clength": 113, "total_res_clength": 12180, "max_res_clength": 202, "avg_res_clength": 105, "req_rate": 0.5599894819366872, "err_rate": 0.07791158009553908, "apdex_threshold": 25, "apdex_satisfied": 24, "apdex_tolerated": 75, "apdex_score": 0.5347826086956522 }, "POST": { "requests": 116, "responses": 116, "errors": 13, "info": 0, "success": 103, "redirect": 0, "client_error": 11, "server_error": 2, "total_time": 6038, "max_time": 101, "avg_time": 52.05172413793103, "total_req_clength": 12510, "max_req_clength": 209, "avg_req_clength": 107, "total_res_clength": 11777, "max_res_clength": 203, "avg_res_clength": 101, "req_rate": 0.5648589556926583, "err_rate": 0.05843368507165431, "apdex_threshold": 25, "apdex_satisfied": 32, "apdex_tolerated": 71, "apdex_score": 0.5818965517241379 } }, "/v2/pet/findByStatus": { "GET": { "requests": 119, "responses": 119, "errors": 15, "info": 0, "success": 104, "redirect": 0, "client_error": 12, "server_error": 3, "total_time": 6716, "max_time": 100, "avg_time": 56.436974789915965, "total_req_clength": 0, "max_req_clength": 0, "avg_req_clength": 0, "total_res_clength": 11860, "max_res_clength": 203, "avg_res_clength": 99, "req_rate": 0.5794673769605719, "err_rate": 0.07304210633956788, "apdex_threshold": 25, "apdex_satisfied": 18, "apdex_tolerated": 86, "apdex_score": 0.5126050420168067 } }, "/v2/pet/findByTags": { "GET": { "requests": 116, "responses": 116, "errors": 12, "info": 0, "success": 104, "redirect": 0, "client_error": 10, "server_error": 2, "total_time": 6412, "max_time": 101, "avg_time": 55.275862068965516, "total_req_clength": 0, "max_req_clength": 0, "avg_req_clength": 0, "total_res_clength": 12530, "max_res_clength": 201, "avg_res_clength": 108, "req_rate": 0.5648589556926583, "err_rate": 0.05843368507165431, "apdex_threshold": 25, "apdex_satisfied": 20, "apdex_tolerated": 83, "apdex_score": 0.5301724137931034 } }, "/v2/pet/{petId}": { "GET": { "requests": 114, "responses": 114, "errors": 16, "info": 0, "success": 98, "redirect": 0, "client_error": 9, "server_error": 7, "total_time": 5997, "max_time": 101, "avg_time": 52.60526315789474, "total_req_clength": 0, "max_req_clength": 0, "avg_req_clength": 0, "total_res_clength": 12009, "max_res_clength": 202, "avg_res_clength": 105, "req_rate": 0.5551200081807159, "err_rate": 0.07791158009553908, "apdex_threshold": 25, "apdex_satisfied": 26, "apdex_tolerated": 71, "apdex_score": 0.5394736842105263 }, "POST": { "requests": 113, "responses": 113, "errors": 11, "info": 0, "success": 102, "redirect": 0, "client_error": 6, "server_error": 5, "total_time": 5768, "max_time": 100, "avg_time": 51.04424778761062, "total_req_clength": 12302, "max_req_clength": 210, "avg_req_clength": 108, "total_res_clength": 12516, "max_res_clength": 203, "avg_res_clength": 110, "req_rate": 0.5502505344247447, "err_rate": 0.05356421131568312, "apdex_threshold": 25, "apdex_satisfied": 21, "apdex_tolerated": 81, "apdex_score": 0.5442477876106194 }, "DELETE": { "requests": 111, "responses": 111, "errors": 16, "info": 0, "success": 95, "redirect": 0, "client_error": 14, "server_error": 2, "total_time": 5477, "max_time": 101, "avg_time": 49.34234234234234, "total_req_clength": 0, "max_req_clength": 0, "avg_req_clength": 0, "total_res_clength": 10790, "max_res_clength": 201, "avg_res_clength": 97, "req_rate": 0.5405115869128023, "err_rate": 0.07791158009553908, "apdex_threshold": 25, "apdex_satisfied": 21, "apdex_tolerated": 73, "apdex_score": 0.5180180180180181 } }, "/v2/pet/{petId}/uploadImage": { "POST": { "requests": 122, "responses": 122, "errors": 12, "info": 0, "success": 110, "redirect": 0, "client_error": 10, "server_error": 2, "total_time": 5714, "max_time": 99, "avg_time": 46.83606557377049, "total_req_clength": 14007, "max_req_clength": 210, "avg_req_clength": 114, "total_res_clength": 12753, "max_res_clength": 201, "avg_res_clength": 104, "req_rate": 0.5940757982284854, "err_rate": 0.05843368507165431, "apdex_threshold": 25, "apdex_satisfied": 31, "apdex_tolerated": 79, "apdex_score": 0.5778688524590164 } }, "/v2/store/inventory": { "GET": { "requests": 100, "responses": 100, "errors": 16, "info": 0, "success": 84, "redirect": 0, "client_error": 11, "server_error": 5, "total_time": 5166, "max_time": 100, "avg_time": 51.66, "total_req_clength": 0, "max_req_clength": 0, "avg_req_clength": 0, "total_res_clength": 9600, "max_res_clength": 202, "avg_res_clength": 96, "req_rate": 0.48694737559711926, "err_rate": 0.07791158009553908, "apdex_threshold": 25, "apdex_satisfied": 23, "apdex_tolerated": 61, "apdex_score": 0.535 } }, "/v2/store/order": { "POST": { "requests": 107, "responses": 107, "errors": 15, "info": 0, "success": 92, "redirect": 0, "client_error": 7, "server_error": 8, "total_time": 5302, "max_time": 98, "avg_time": 49.55140186915888, "total_req_clength": 12968, "max_req_clength": 208, "avg_req_clength": 121, "total_res_clength": 10589, "max_res_clength": 201, "avg_res_clength": 98, "req_rate": 0.5210336918889176, "err_rate": 0.07304210633956788, "apdex_threshold": 25, "apdex_satisfied": 24, "apdex_tolerated": 68, "apdex_score": 0.5420560747663551 } }, "/v2/store/order/{orderId}": { "GET": { "requests": 110, "responses": 110, "errors": 9, "info": 0, "success": 101, "redirect": 0, "client_error": 8, "server_error": 1, "total_time": 5054, "max_time": 101, "avg_time": 45.945454545454545, "total_req_clength": 0, "max_req_clength": 0, "avg_req_clength": 0, "total_res_clength": 11548, "max_res_clength": 203, "avg_res_clength": 104, "req_rate": 0.5356421131568312, "err_rate": 0.04382526380374073, "apdex_threshold": 25, "apdex_satisfied": 26, "apdex_tolerated": 74, "apdex_score": 0.5727272727272728 }, "DELETE": { "requests": 119, "responses": 119, "errors": 14, "info": 0, "success": 105, "redirect": 0, "client_error": 10, "server_error": 4, "total_time": 5792, "max_time": 99, "avg_time": 48.67226890756302, "total_req_clength": 0, "max_req_clength": 0, "avg_req_clength": 0, "total_res_clength": 13335, "max_res_clength": 203, "avg_res_clength": 112, "req_rate": 0.5794673769605719, "err_rate": 0.0681726325835967, "apdex_threshold": 25, "apdex_satisfied": 30, "apdex_tolerated": 75, "apdex_score": 0.5672268907563025 } }, "/v2/user": { "POST": { "requests": 120, "responses": 120, "errors": 15, "info": 0, "success": 105, "redirect": 0, "client_error": 13, "server_error": 2, "total_time": 5876, "max_time": 101, "avg_time": 48.96666666666667, "total_req_clength": 13878, "max_req_clength": 210, "avg_req_clength": 115, "total_res_clength": 13716, "max_res_clength": 203, "avg_res_clength": 114, "req_rate": 0.5843368507165431, "err_rate": 0.07304210633956788, "apdex_threshold": 25, "apdex_satisfied": 24, "apdex_tolerated": 80, "apdex_score": 0.5333333333333333 } }, "/v2/user/createWithArray": { "POST": { "requests": 104, "responses": 104, "errors": 11, "info": 0, "success": 93, "redirect": 0, "client_error": 8, "server_error": 3, "total_time": 5149, "max_time": 100, "avg_time": 49.50961538461539, "total_req_clength": 11446, "max_req_clength": 208, "avg_req_clength": 110, "total_res_clength": 11957, "max_res_clength": 203, "avg_res_clength": 114, "req_rate": 0.5064252706210041, "err_rate": 0.05356421131568312, "apdex_threshold": 25, "apdex_satisfied": 29, "apdex_tolerated": 64, "apdex_score": 0.5865384615384616 } }, "/v2/user/createWithList": { "POST": { "requests": 114, "responses": 114, "errors": 14, "info": 0, "success": 100, "redirect": 0, "client_error": 11, "server_error": 3, "total_time": 5949, "max_time": 97, "avg_time": 52.18421052631579, "total_req_clength": 12257, "max_req_clength": 210, "avg_req_clength": 107, "total_res_clength": 12477, "max_res_clength": 202, "avg_res_clength": 109, "req_rate": 0.5551200081807159, "err_rate": 0.0681726325835967, "apdex_threshold": 25, "apdex_satisfied": 22, "apdex_tolerated": 78, "apdex_score": 0.5350877192982456 } }, "/v2/user/login": { "GET": { "requests": 111, "responses": 111, "errors": 12, "info": 0, "success": 99, "redirect": 0, "client_error": 8, "server_error": 4, "total_time": 5295, "max_time": 100, "avg_time": 47.7027027027027, "total_req_clength": 0, "max_req_clength": 0, "avg_req_clength": 0, "total_res_clength": 12515, "max_res_clength": 203, "avg_res_clength": 112, "req_rate": 0.5405115869128023, "err_rate": 0.05843368507165431, "apdex_threshold": 25, "apdex_satisfied": 26, "apdex_tolerated": 73, "apdex_score": 0.5630630630630631 } }, "/v2/user/logout": { "GET": { "requests": 113, "responses": 113, "errors": 7, "info": 0, "success": 106, "redirect": 0, "client_error": 5, "server_error": 2, "total_time": 5795, "max_time": 102, "avg_time": 51.283185840707965, "total_req_clength": 0, "max_req_clength": 0, "avg_req_clength": 0, "total_res_clength": 13021, "max_res_clength": 203, "avg_res_clength": 115, "req_rate": 0.5502505344247447, "err_rate": 0.03408631629179835, "apdex_threshold": 25, "apdex_satisfied": 23, "apdex_tolerated": 83, "apdex_score": 0.5707964601769911 } }, "/v2/user/{username}": { "GET": { "requests": 112, "responses": 112, "errors": 16, "info": 0, "success": 96, "redirect": 0, "client_error": 10, "server_error": 6, "total_time": 5814, "max_time": 99, "avg_time": 51.910714285714285, "total_req_clength": 0, "max_req_clength": 0, "avg_req_clength": 0, "total_res_clength": 10691, "max_res_clength": 201, "avg_res_clength": 95, "req_rate": 0.5453810606687736, "err_rate": 0.07304210633956788, "apdex_threshold": 25, "apdex_satisfied": 20, "apdex_tolerated": 76, "apdex_score": 0.5178571428571429 }, "PUT": { "requests": 108, "responses": 108, "errors": 10, "info": 0, "success": 98, "redirect": 0, "client_error": 9, "server_error": 1, "total_time": 5792, "max_time": 99, "avg_time": 53.629629629629626, "total_req_clength": 11986, "max_req_clength": 207, "avg_req_clength": 110, "total_res_clength": 11715, "max_res_clength": 202, "avg_res_clength": 108, "req_rate": 0.5259031656448888, "err_rate": 0.048694737559711924, "apdex_threshold": 25, "apdex_satisfied": 21, "apdex_tolerated": 77, "apdex_score": 0.5509259259259259 }, "DELETE": { "requests": 114, "responses": 114, "errors": 13, "info": 0, "success": 101, "redirect": 0, "client_error": 8, "server_error": 5, "total_time": 6311, "max_time": 100, "avg_time": 55.35964912280702, "total_req_clength": 0, "max_req_clength": 0, "avg_req_clength": 0, "total_res_clength": 12074, "max_res_clength": 202, "avg_res_clength": 105, "req_rate": 0.5551200081807159, "err_rate": 0.06330315882762551, "apdex_threshold": 25, "apdex_satisfied": 18, "apdex_tolerated": 83, "apdex_score": 0.5219298245614035 } }, "/pets": { "GET": { "requests": 49, "responses": 49, "errors": 6, "info": 0, "success": 43, "redirect": 0, "client_error": 5, "server_error": 1, "total_time": 2277, "max_time": 111, "avg_time": 46.46938775510204, "total_req_clength": 0, "max_req_clength": 0, "avg_req_clength": 0, "total_res_clength": 4831, "max_res_clength": 195, "avg_res_clength": 98, "req_rate": 0.23860421404258844, "err_rate": 0.029216842535827153, "apdex_threshold": 25, "apdex_satisfied": 14, "apdex_tolerated": 28, "apdex_score": 0.5714285714285714 }, "POST": { "requests": 48, "responses": 48, "errors": 5, "info": 0, "success": 43, "redirect": 0, "client_error": 4, "server_error": 1, "total_time": 2424, "max_time": 99, "avg_time": 50.5, "total_req_clength": 5144, "max_req_clength": 204, "avg_req_clength": 107, "total_res_clength": 5319, "max_res_clength": 202, "avg_res_clength": 110, "req_rate": 0.23373474028661723, "err_rate": 0.024347368779855962, "apdex_threshold": 25, "apdex_satisfied": 8, "apdex_tolerated": 35, "apdex_score": 0.53125 } }, "/pets/abcde": { "DELETE": { "requests": 60, "responses": 60, "errors": 10, "info": 0, "success": 50, "redirect": 0, "client_error": 8, "server_error": 2, "total_time": 3100, "max_time": 101, "avg_time": 51.666666666666664, "total_req_clength": 0, "max_req_clength": 0, "avg_req_clength": 0, "total_res_clength": 6082, "max_res_clength": 186, "avg_res_clength": 101, "req_rate": 0.29216842535827153, "err_rate": 0.048694737559711924, "apdex_threshold": 25, "apdex_satisfied": 11, "apdex_tolerated": 38, "apdex_score": 0.5 }, "GET": { "requests": 50, "responses": 50, "errors": 2, "info": 0, "success": 48, "redirect": 0, "client_error": 2, "server_error": 0, "total_time": 2692, "max_time": 99, "avg_time": 53.84, "total_req_clength": 0, "max_req_clength": 0, "avg_req_clength": 0, "total_res_clength": 5118, "max_res_clength": 203, "avg_res_clength": 102, "req_rate": 0.24347368779855963, "err_rate": 0.009738947511942386, "apdex_threshold": 25, "apdex_satisfied": 11, "apdex_tolerated": 37, "apdex_score": 0.59 } } } } ================================================ FILE: src/data/apioperation.json ================================================ { "startts": 1588045302159, "all": { "requests": 55827, "responses": 55827, "errors": 5998, "info": 0, "success": 49829, "redirect": 0, "client_error": 3994, "server_error": 2004, "total_time": 2844745, "max_time": 211, "avg_time": 50.956436849553086, "total_req_clength": 2760192, "max_req_clength": 210, "avg_req_clength": 49, "total_res_clength": 5786238, "max_res_clength": 203, "avg_res_clength": 103, "req_rate": 23.541789660116386, "err_rate": 2.5293075820190603, "apdex_threshold": 25, "apdex_satisfied": 12278, "apdex_tolerated": 37332, "apdex_score": 0.5542837695022121 }, "egress": { "requests": 0, "responses": 0, "errors": 0, "info": 0, "success": 0, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 0, "max_time": 0, "avg_time": 0, "total_req_clength": 0, "max_req_clength": 0, "avg_req_clength": 0, "total_res_clength": 0, "max_res_clength": 0, "avg_res_clength": 0, "req_rate": 0, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 0, "apdex_tolerated": 0, "apdex_score": 0 }, "sys": { "rss": 49631232, "heapTotal": 26808320, "heapUsed": 19504832, "external": 1397813, "cpu": 4.595193432265044, "lag": 0.092901, "maxlag": 4.560799 }, "name": "swagger-stats-spectest", "version": "0.95.16", "hostname": "hostname", "ip": "127.0.0.1", "apdexThreshold": 25, "apiop": { "/v2/pet/{petId}/uploadImage": { "POST": { "defs": { "swagger": true, "deprecated": false, "description": "", "operationId": "uploadFile", "summary": "uploads an image", "tags": [ "pet" ] }, "stats": { "requests": 2694, "responses": 2694, "errors": 283, "info": 0, "success": 2411, "redirect": 0, "client_error": 186, "server_error": 97, "total_time": 137397, "max_time": 126, "avg_time": 51.001113585746104, "total_req_clength": 294790, "max_req_clength": 210, "avg_req_clength": 109, "total_res_clength": 275845, "max_res_clength": 203, "avg_res_clength": 102, "req_rate": 1.136037783587754, "err_rate": 0.11933878721430378, "apdex_threshold": 25, "apdex_satisfied": 589, "apdex_tolerated": 1808, "apdex_score": 0.5541945063103192 }, "details": { "duration": { "count": 2694, "buckets": [ 10, 25, 50, 100, 200 ], "values": [ 275, 377, 679, 1349, 14, 0 ] }, "req_size": { "count": 2694, "buckets": [ 10, 25, 50, 100, 200 ], "values": [ 0, 218, 336, 648, 1388, 104 ] }, "res_size": { "count": 2694, "buckets": [ 10, 25, 50, 100, 200 ], "values": [ 97, 204, 352, 684, 1318, 39 ] }, "code": { "200": { "count": 2411 }, "401": { "count": 44 }, "404": { "count": 142 }, "500": { "count": 55 }, "501": { "count": 42 } }, "parameters": { "petId": { "name": "petId", "in": "path", "description": "ID of pet to update", "required": true, "type": "integer", "format": "int64", "hits": 2694, "misses": 0 }, "additionalMetadata": { "name": "additionalMetadata", "in": "formData", "description": "Additional data to pass to server", "required": false, "type": "string", "hits": 0, "misses": 0 }, "file": { "name": "file", "in": "formData", "description": "file to upload", "required": false, "type": "file", "hits": 0, "misses": 0 } } } } } } } ================================================ FILE: src/data/errors.json ================================================ { "startts": 1588092850475, "all": { "requests": 13204, "responses": 13204, "errors": 1402, "info": 0, "success": 11802, "redirect": 0, "client_error": 915, "server_error": 487, "total_time": 665490, "max_time": 102, "avg_time": 50.40063617085732, "total_req_clength": 638059, "max_req_clength": 210, "avg_req_clength": 48, "total_res_clength": 1363690, "max_res_clength": 203, "avg_res_clength": 103, "req_rate": 24.924164774325313, "err_rate": 2.64644645664981, "apdex_threshold": 25, "apdex_satisfied": 2944, "apdex_tolerated": 8854, "apdex_score": 0.5582399272947591 }, "egress": { "requests": 0, "responses": 0, "errors": 0, "info": 0, "success": 0, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 0, "max_time": 0, "avg_time": 0, "total_req_clength": 0, "max_req_clength": 0, "avg_req_clength": 0, "total_res_clength": 0, "max_res_clength": 0, "avg_res_clength": 0, "req_rate": 0, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 0, "apdex_tolerated": 0, "apdex_score": 0 }, "sys": { "rss": 61698048, "heapTotal": 24158208, "heapUsed": 19610016, "external": 1576443, "cpu": 2.132010624706579, "lag": 0.103182, "maxlag": 6.058928 }, "name": "swagger-stats-spectest", "version": "0.95.17", "hostname": "hostname", "ip": "127.0.0.1", "apdexThreshold": 25, "timeline": { "settings": { "bucket_duration": 1000, "bucket_current": 1588093380, "length": 60 }, "data": { "1588093321": { "stats": { "requests": 29, "responses": 29, "errors": 3, "info": 0, "success": 26, "redirect": 0, "client_error": 0, "server_error": 3, "total_time": 1663, "max_time": 97, "avg_time": 57.3448275862069, "total_req_clength": 1108, "max_req_clength": 190, "avg_req_clength": 38, "total_res_clength": 2544, "max_res_clength": 193, "avg_res_clength": 87, "req_rate": 29, "err_rate": 3, "apdex_threshold": 25, "apdex_satisfied": 4, "apdex_tolerated": 22, "apdex_score": 0.5172413793103449 }, "sys": { "rss": 73629696, "heapTotal": 36741120, "heapUsed": 22383060, "external": 1927509, "cpu": 3.1899242839189688, "lag": 0.129841 } }, "1588093322": { "stats": { "requests": 22, "responses": 22, "errors": 3, "info": 0, "success": 19, "redirect": 0, "client_error": 3, "server_error": 0, "total_time": 1147, "max_time": 94, "avg_time": 52.13636363636363, "total_req_clength": 1269, "max_req_clength": 188, "avg_req_clength": 57, "total_res_clength": 2749, "max_res_clength": 195, "avg_res_clength": 124, "req_rate": 22, "err_rate": 3, "apdex_threshold": 25, "apdex_satisfied": 3, "apdex_tolerated": 16, "apdex_score": 0.5 }, "sys": { "rss": 73764864, "heapTotal": 36741120, "heapUsed": 19172033, "external": 1503999, "cpu": 2.8256244349538524, "lag": 0.04654 } }, "1588093323": { "stats": { "requests": 28, "responses": 28, "errors": 2, "info": 0, "success": 26, "redirect": 0, "client_error": 2, "server_error": 0, "total_time": 1445, "max_time": 98, "avg_time": 51.607142857142854, "total_req_clength": 1676, "max_req_clength": 200, "avg_req_clength": 59, "total_res_clength": 3045, "max_res_clength": 193, "avg_res_clength": 108, "req_rate": 28, "err_rate": 2, "apdex_threshold": 25, "apdex_satisfied": 4, "apdex_tolerated": 22, "apdex_score": 0.5357142857142857 }, "sys": { "rss": 73764864, "heapTotal": 36741120, "heapUsed": 20588233, "external": 1639775, "cpu": 3.0452411938048027, "lag": 0.039472 } }, "1588093324": { "stats": { "requests": 19, "responses": 19, "errors": 2, "info": 0, "success": 17, "redirect": 0, "client_error": 2, "server_error": 0, "total_time": 980, "max_time": 97, "avg_time": 51.578947368421055, "total_req_clength": 767, "max_req_clength": 153, "avg_req_clength": 40, "total_res_clength": 1871, "max_res_clength": 176, "avg_res_clength": 98, "req_rate": 19, "err_rate": 2, "apdex_threshold": 25, "apdex_satisfied": 4, "apdex_tolerated": 13, "apdex_score": 0.5526315789473685 }, "sys": { "rss": 73764864, "heapTotal": 36741120, "heapUsed": 21622555, "external": 1779088, "cpu": 2.2886910278853336, "lag": 0.058839 } }, "1588093325": { "stats": { "requests": 42, "responses": 42, "errors": 5, "info": 0, "success": 37, "redirect": 0, "client_error": 4, "server_error": 1, "total_time": 2178, "max_time": 98, "avg_time": 51.857142857142854, "total_req_clength": 1648, "max_req_clength": 197, "avg_req_clength": 39, "total_res_clength": 4712, "max_res_clength": 198, "avg_res_clength": 112, "req_rate": 42, "err_rate": 5, "apdex_threshold": 25, "apdex_satisfied": 7, "apdex_tolerated": 30, "apdex_score": 0.5238095238095238 }, "sys": { "rss": 73764864, "heapTotal": 36741120, "heapUsed": 22830306, "external": 1917044, "cpu": 3.268680452031966, "lag": 0.087054 } }, "1588093326": { "stats": { "requests": 20, "responses": 20, "errors": 2, "info": 0, "success": 18, "redirect": 0, "client_error": 2, "server_error": 0, "total_time": 903, "max_time": 93, "avg_time": 45.15, "total_req_clength": 1553, "max_req_clength": 203, "avg_req_clength": 77, "total_res_clength": 1917, "max_res_clength": 192, "avg_res_clength": 95, "req_rate": 20, "err_rate": 2, "apdex_threshold": 25, "apdex_satisfied": 4, "apdex_tolerated": 14, "apdex_score": 0.55 }, "sys": { "rss": 73764864, "heapTotal": 36741120, "heapUsed": 24076802, "external": 2052014, "cpu": 1.626538698068855, "lag": 0.036661 } }, "1588093327": { "stats": { "requests": 23, "responses": 23, "errors": 2, "info": 0, "success": 21, "redirect": 0, "client_error": 0, "server_error": 2, "total_time": 1170, "max_time": 96, "avg_time": 50.869565217391305, "total_req_clength": 1286, "max_req_clength": 206, "avg_req_clength": 55, "total_res_clength": 2458, "max_res_clength": 201, "avg_res_clength": 106, "req_rate": 23, "err_rate": 2, "apdex_threshold": 25, "apdex_satisfied": 6, "apdex_tolerated": 15, "apdex_score": 0.5869565217391305 }, "sys": { "rss": 73764864, "heapTotal": 36741120, "heapUsed": 25065481, "external": 2187041, "cpu": 2.560722373167353, "lag": 0.036224 } }, "1588093328": { "stats": { "requests": 26, "responses": 26, "errors": 2, "info": 0, "success": 24, "redirect": 0, "client_error": 2, "server_error": 0, "total_time": 1495, "max_time": 98, "avg_time": 57.5, "total_req_clength": 720, "max_req_clength": 150, "avg_req_clength": 27, "total_res_clength": 2684, "max_res_clength": 193, "avg_res_clength": 103, "req_rate": 26, "err_rate": 2, "apdex_threshold": 25, "apdex_satisfied": 3, "apdex_tolerated": 21, "apdex_score": 0.5192307692307693 }, "sys": { "rss": 73764864, "heapTotal": 36741120, "heapUsed": 24010981, "external": 2049600, "cpu": 2.547331916077647, "lag": 0.035727 } }, "1588093329": { "stats": { "requests": 18, "responses": 18, "errors": 2, "info": 0, "success": 16, "redirect": 0, "client_error": 2, "server_error": 0, "total_time": 1028, "max_time": 96, "avg_time": 57.111111111111114, "total_req_clength": 668, "max_req_clength": 189, "avg_req_clength": 37, "total_res_clength": 1429, "max_res_clength": 198, "avg_res_clength": 79, "req_rate": 18, "err_rate": 2, "apdex_threshold": 25, "apdex_satisfied": 4, "apdex_tolerated": 12, "apdex_score": 0.5555555555555556 }, "sys": { "rss": 73764864, "heapTotal": 36741120, "heapUsed": 19155713, "external": 1507257, "cpu": 1.884250653120607, "lag": 0.038118 } }, "1588093330": { "stats": { "requests": 32, "responses": 32, "errors": 4, "info": 0, "success": 28, "redirect": 0, "client_error": 3, "server_error": 1, "total_time": 1620, "max_time": 96, "avg_time": 50.625, "total_req_clength": 1446, "max_req_clength": 202, "avg_req_clength": 45, "total_res_clength": 3350, "max_res_clength": 197, "avg_res_clength": 104, "req_rate": 32, "err_rate": 4, "apdex_threshold": 25, "apdex_satisfied": 7, "apdex_tolerated": 21, "apdex_score": 0.546875 }, "sys": { "rss": 73764864, "heapTotal": 36741120, "heapUsed": 20409071, "external": 1645877, "cpu": 2.7842863715307264, "lag": 0.03864 } }, "1588093331": { "stats": { "requests": 23, "responses": 23, "errors": 4, "info": 0, "success": 19, "redirect": 0, "client_error": 3, "server_error": 1, "total_time": 1037, "max_time": 98, "avg_time": 45.08695652173913, "total_req_clength": 1409, "max_req_clength": 185, "avg_req_clength": 61, "total_res_clength": 2607, "max_res_clength": 187, "avg_res_clength": 113, "req_rate": 23, "err_rate": 4, "apdex_threshold": 25, "apdex_satisfied": 7, "apdex_tolerated": 12, "apdex_score": 0.5652173913043478 }, "sys": { "rss": 73764864, "heapTotal": 36741120, "heapUsed": 21669897, "external": 1781483, "cpu": 2.8659074236269477, "lag": 0.036436 } }, "1588093332": { "stats": { "requests": 35, "responses": 35, "errors": 2, "info": 0, "success": 33, "redirect": 0, "client_error": 2, "server_error": 0, "total_time": 1593, "max_time": 100, "avg_time": 45.51428571428571, "total_req_clength": 2150, "max_req_clength": 208, "avg_req_clength": 61, "total_res_clength": 3370, "max_res_clength": 198, "avg_res_clength": 96, "req_rate": 35, "err_rate": 2, "apdex_threshold": 25, "apdex_satisfied": 6, "apdex_tolerated": 27, "apdex_score": 0.5571428571428572 }, "sys": { "rss": 73764864, "heapTotal": 36741120, "heapUsed": 22840032, "external": 1917040, "cpu": 2.4501578253046605, "lag": 1.849815 } }, "1588093333": { "stats": { "requests": 20, "responses": 20, "errors": 3, "info": 0, "success": 17, "redirect": 0, "client_error": 2, "server_error": 1, "total_time": 1161, "max_time": 97, "avg_time": 58.05, "total_req_clength": 547, "max_req_clength": 121, "avg_req_clength": 27, "total_res_clength": 1897, "max_res_clength": 202, "avg_res_clength": 94, "req_rate": 20, "err_rate": 3, "apdex_threshold": 25, "apdex_satisfied": 3, "apdex_tolerated": 14, "apdex_score": 0.5 }, "sys": { "rss": 73764864, "heapTotal": 36741120, "heapUsed": 24100305, "external": 2052019, "cpu": 2.0724092824258613, "lag": 0.04868 } }, "1588093334": { "stats": { "requests": 32, "responses": 32, "errors": 2, "info": 0, "success": 30, "redirect": 0, "client_error": 2, "server_error": 0, "total_time": 1609, "max_time": 95, "avg_time": 50.28125, "total_req_clength": 2023, "max_req_clength": 206, "avg_req_clength": 63, "total_res_clength": 3360, "max_res_clength": 203, "avg_res_clength": 105, "req_rate": 32, "err_rate": 2, "apdex_threshold": 25, "apdex_satisfied": 5, "apdex_tolerated": 25, "apdex_score": 0.546875 }, "sys": { "rss": 73764864, "heapTotal": 36741120, "heapUsed": 25123809, "external": 2191189, "cpu": 3.0382591291693912, "lag": 0.047287 } }, "1588093335": { "stats": { "requests": 13, "responses": 13, "errors": 2, "info": 0, "success": 11, "redirect": 0, "client_error": 2, "server_error": 0, "total_time": 727, "max_time": 99, "avg_time": 55.92307692307692, "total_req_clength": 957, "max_req_clength": 201, "avg_req_clength": 73, "total_res_clength": 1600, "max_res_clength": 199, "avg_res_clength": 123, "req_rate": 13, "err_rate": 2, "apdex_threshold": 25, "apdex_satisfied": 3, "apdex_tolerated": 8, "apdex_score": 0.5384615384615384 }, "sys": { "rss": 73764864, "heapTotal": 36741120, "heapUsed": 23966291, "external": 2055357, "cpu": 1.9254082568642377, "lag": 0.038919 } }, "1588093336": { "stats": { "requests": 24, "responses": 24, "errors": 2, "info": 0, "success": 22, "redirect": 0, "client_error": 1, "server_error": 1, "total_time": 974, "max_time": 88, "avg_time": 40.583333333333336, "total_req_clength": 1523, "max_req_clength": 199, "avg_req_clength": 63, "total_res_clength": 2300, "max_res_clength": 194, "avg_res_clength": 95, "req_rate": 24, "err_rate": 2, "apdex_threshold": 25, "apdex_satisfied": 8, "apdex_tolerated": 14, "apdex_score": 0.625 }, "sys": { "rss": 73764864, "heapTotal": 36741120, "heapUsed": 19070131, "external": 1503755, "cpu": 1.9173139808846917, "lag": 0.036821 } }, "1588093337": { "stats": { "requests": 39, "responses": 39, "errors": 3, "info": 0, "success": 36, "redirect": 0, "client_error": 3, "server_error": 0, "total_time": 1905, "max_time": 96, "avg_time": 48.84615384615385, "total_req_clength": 1436, "max_req_clength": 205, "avg_req_clength": 36, "total_res_clength": 3417, "max_res_clength": 201, "avg_res_clength": 87, "req_rate": 39, "err_rate": 3, "apdex_threshold": 25, "apdex_satisfied": 6, "apdex_tolerated": 30, "apdex_score": 0.5384615384615384 }, "sys": { "rss": 73764864, "heapTotal": 36741120, "heapUsed": 20285478, "external": 1638691, "cpu": 3.336869587514194, "lag": 0.033396 } }, "1588093338": { "stats": { "requests": 46, "responses": 46, "errors": 3, "info": 0, "success": 43, "redirect": 0, "client_error": 1, "server_error": 2, "total_time": 2311, "max_time": 98, "avg_time": 50.23913043478261, "total_req_clength": 2324, "max_req_clength": 210, "avg_req_clength": 50, "total_res_clength": 4619, "max_res_clength": 201, "avg_res_clength": 100, "req_rate": 46, "err_rate": 3, "apdex_threshold": 25, "apdex_satisfied": 12, "apdex_tolerated": 31, "apdex_score": 0.5978260869565217 }, "sys": { "rss": 73764864, "heapTotal": 36741120, "heapUsed": 21947137, "external": 1774397, "cpu": 3.360248067465066, "lag": 0.033353 } }, "1588093339": { "stats": { "requests": 20, "responses": 20, "errors": 3, "info": 0, "success": 17, "redirect": 0, "client_error": 1, "server_error": 2, "total_time": 1007, "max_time": 100, "avg_time": 50.35, "total_req_clength": 653, "max_req_clength": 193, "avg_req_clength": 32, "total_res_clength": 1956, "max_res_clength": 195, "avg_res_clength": 97, "req_rate": 20, "err_rate": 3, "apdex_threshold": 25, "apdex_satisfied": 5, "apdex_tolerated": 12, "apdex_score": 0.55 }, "sys": { "rss": 73764864, "heapTotal": 36741120, "heapUsed": 23486915, "external": 1914570, "cpu": 1.847639638563157, "lag": 0.030142 } }, "1588093340": { "stats": { "requests": 28, "responses": 28, "errors": 6, "info": 0, "success": 22, "redirect": 0, "client_error": 2, "server_error": 4, "total_time": 1271, "max_time": 98, "avg_time": 45.392857142857146, "total_req_clength": 1678, "max_req_clength": 204, "avg_req_clength": 59, "total_res_clength": 3429, "max_res_clength": 196, "avg_res_clength": 122, "req_rate": 28, "err_rate": 6, "apdex_threshold": 25, "apdex_satisfied": 7, "apdex_tolerated": 15, "apdex_score": 0.5178571428571429 }, "sys": { "rss": 73764864, "heapTotal": 36741120, "heapUsed": 24682232, "external": 2052453, "cpu": 2.9120891618325944, "lag": 0.074106 } }, "1588093341": { "stats": { "requests": 20, "responses": 20, "errors": 0, "info": 0, "success": 20, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 1115, "max_time": 92, "avg_time": 55.75, "total_req_clength": 1032, "max_req_clength": 206, "avg_req_clength": 51, "total_res_clength": 2046, "max_res_clength": 193, "avg_res_clength": 102, "req_rate": 20, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 3, "apdex_tolerated": 17, "apdex_score": 0.575 }, "sys": { "rss": 73764864, "heapTotal": 36741120, "heapUsed": 25848675, "external": 2187146, "cpu": 1.3177733068228523, "lag": 0.048135 } }, "1588093342": { "stats": { "requests": 28, "responses": 28, "errors": 3, "info": 0, "success": 25, "redirect": 0, "client_error": 1, "server_error": 2, "total_time": 1417, "max_time": 100, "avg_time": 50.607142857142854, "total_req_clength": 1269, "max_req_clength": 192, "avg_req_clength": 45, "total_res_clength": 2869, "max_res_clength": 199, "avg_res_clength": 102, "req_rate": 28, "err_rate": 3, "apdex_threshold": 25, "apdex_satisfied": 5, "apdex_tolerated": 20, "apdex_score": 0.5357142857142857 }, "sys": { "rss": 73764864, "heapTotal": 36741120, "heapUsed": 21168345, "external": 1736853, "cpu": 2.7638782366151595, "lag": 0.06344 } }, "1588093343": { "stats": { "requests": 35, "responses": 35, "errors": 4, "info": 0, "success": 31, "redirect": 0, "client_error": 1, "server_error": 3, "total_time": 1872, "max_time": 100, "avg_time": 53.48571428571429, "total_req_clength": 1508, "max_req_clength": 204, "avg_req_clength": 43, "total_res_clength": 3637, "max_res_clength": 200, "avg_res_clength": 103, "req_rate": 35, "err_rate": 4, "apdex_threshold": 25, "apdex_satisfied": 9, "apdex_tolerated": 22, "apdex_score": 0.5714285714285714 }, "sys": { "rss": 73764864, "heapTotal": 36741120, "heapUsed": 20020321, "external": 1638044, "cpu": 3.717785955130757, "lag": 0.038502 } }, "1588093344": { "stats": { "requests": 22, "responses": 22, "errors": 6, "info": 0, "success": 16, "redirect": 0, "client_error": 3, "server_error": 3, "total_time": 1096, "max_time": 97, "avg_time": 49.81818181818182, "total_req_clength": 1153, "max_req_clength": 207, "avg_req_clength": 52, "total_res_clength": 2092, "max_res_clength": 202, "avg_res_clength": 95, "req_rate": 22, "err_rate": 6, "apdex_threshold": 25, "apdex_satisfied": 5, "apdex_tolerated": 11, "apdex_score": 0.4772727272727273 }, "sys": { "rss": 73764864, "heapTotal": 36741120, "heapUsed": 21165002, "external": 1777152, "cpu": 2.8889399104706057, "lag": 0.049158 } }, "1588093345": { "stats": { "requests": 21, "responses": 21, "errors": 1, "info": 0, "success": 20, "redirect": 0, "client_error": 1, "server_error": 0, "total_time": 912, "max_time": 100, "avg_time": 43.42857142857143, "total_req_clength": 1590, "max_req_clength": 171, "avg_req_clength": 75, "total_res_clength": 2163, "max_res_clength": 201, "avg_res_clength": 103, "req_rate": 21, "err_rate": 1, "apdex_threshold": 25, "apdex_satisfied": 8, "apdex_tolerated": 12, "apdex_score": 0.6666666666666666 }, "sys": { "rss": 73764864, "heapTotal": 36741120, "heapUsed": 22283473, "external": 1915431, "cpu": 2.341292065973116, "lag": 0.066504 } }, "1588093346": { "stats": { "requests": 34, "responses": 34, "errors": 5, "info": 0, "success": 29, "redirect": 0, "client_error": 2, "server_error": 3, "total_time": 1648, "max_time": 98, "avg_time": 48.470588235294116, "total_req_clength": 1291, "max_req_clength": 188, "avg_req_clength": 37, "total_res_clength": 3574, "max_res_clength": 203, "avg_res_clength": 105, "req_rate": 34, "err_rate": 5, "apdex_threshold": 25, "apdex_satisfied": 8, "apdex_tolerated": 21, "apdex_score": 0.5441176470588235 }, "sys": { "rss": 73764864, "heapTotal": 36741120, "heapUsed": 23554059, "external": 2051246, "cpu": 3.3564382028964297, "lag": 0.059577 } }, "1588093347": { "stats": { "requests": 20, "responses": 20, "errors": 6, "info": 0, "success": 14, "redirect": 0, "client_error": 4, "server_error": 2, "total_time": 981, "max_time": 98, "avg_time": 49.05, "total_req_clength": 850, "max_req_clength": 175, "avg_req_clength": 42, "total_res_clength": 2113, "max_res_clength": 191, "avg_res_clength": 105, "req_rate": 20, "err_rate": 6, "apdex_threshold": 25, "apdex_satisfied": 4, "apdex_tolerated": 10, "apdex_score": 0.45 }, "sys": { "rss": 73764864, "heapTotal": 36741120, "heapUsed": 24648693, "external": 2185193, "cpu": 2.1327581336197605, "lag": 0.043375 } }, "1588093348": { "stats": { "requests": 21, "responses": 21, "errors": 4, "info": 0, "success": 17, "redirect": 0, "client_error": 4, "server_error": 0, "total_time": 1026, "max_time": 91, "avg_time": 48.857142857142854, "total_req_clength": 847, "max_req_clength": 185, "avg_req_clength": 40, "total_res_clength": 2492, "max_res_clength": 199, "avg_res_clength": 118, "req_rate": 21, "err_rate": 4, "apdex_threshold": 25, "apdex_satisfied": 5, "apdex_tolerated": 12, "apdex_score": 0.5238095238095238 }, "sys": { "rss": 73764864, "heapTotal": 36741120, "heapUsed": 25608843, "external": 2319055, "cpu": 1.962467199874005, "lag": 0.039406 } }, "1588093349": { "stats": { "requests": 27, "responses": 27, "errors": 2, "info": 0, "success": 25, "redirect": 0, "client_error": 1, "server_error": 1, "total_time": 1294, "max_time": 99, "avg_time": 47.925925925925924, "total_req_clength": 1658, "max_req_clength": 208, "avg_req_clength": 61, "total_res_clength": 2576, "max_res_clength": 198, "avg_res_clength": 95, "req_rate": 27, "err_rate": 2, "apdex_threshold": 25, "apdex_satisfied": 8, "apdex_tolerated": 17, "apdex_score": 0.6111111111111112 }, "sys": { "rss": 73764864, "heapTotal": 36741120, "heapUsed": 23215480, "external": 1990562, "cpu": 2.156275637836824, "lag": 0.038102 } }, "1588093350": { "stats": { "requests": 28, "responses": 28, "errors": 5, "info": 0, "success": 23, "redirect": 0, "client_error": 5, "server_error": 0, "total_time": 1429, "max_time": 99, "avg_time": 51.035714285714285, "total_req_clength": 1249, "max_req_clength": 193, "avg_req_clength": 44, "total_res_clength": 3082, "max_res_clength": 195, "avg_res_clength": 110, "req_rate": 28, "err_rate": 5, "apdex_threshold": 25, "apdex_satisfied": 4, "apdex_tolerated": 19, "apdex_score": 0.48214285714285715 }, "sys": { "rss": 73764864, "heapTotal": 36741120, "heapUsed": 19952813, "external": 1506251, "cpu": 2.7071640829954027, "lag": 0.035514 } }, "1588093351": { "stats": { "requests": 28, "responses": 28, "errors": 2, "info": 0, "success": 26, "redirect": 0, "client_error": 1, "server_error": 1, "total_time": 1270, "max_time": 93, "avg_time": 45.357142857142854, "total_req_clength": 1763, "max_req_clength": 200, "avg_req_clength": 62, "total_res_clength": 2487, "max_res_clength": 197, "avg_res_clength": 88, "req_rate": 28, "err_rate": 2, "apdex_threshold": 25, "apdex_satisfied": 9, "apdex_tolerated": 17, "apdex_score": 0.625 }, "sys": { "rss": 73764864, "heapTotal": 36741120, "heapUsed": 21057538, "external": 1641335, "cpu": 1.4879636535971372, "lag": 0.028411 } }, "1588093352": { "stats": { "requests": 24, "responses": 24, "errors": 3, "info": 0, "success": 21, "redirect": 0, "client_error": 1, "server_error": 2, "total_time": 1199, "max_time": 98, "avg_time": 49.958333333333336, "total_req_clength": 787, "max_req_clength": 142, "avg_req_clength": 32, "total_res_clength": 2383, "max_res_clength": 174, "avg_res_clength": 99, "req_rate": 24, "err_rate": 3, "apdex_threshold": 25, "apdex_satisfied": 6, "apdex_tolerated": 15, "apdex_score": 0.5625 }, "sys": { "rss": 73764864, "heapTotal": 36741120, "heapUsed": 22227298, "external": 1776364, "cpu": 1.190604606663778, "lag": 0.027186 } }, "1588093353": { "stats": { "requests": 25, "responses": 25, "errors": 0, "info": 0, "success": 25, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 1259, "max_time": 99, "avg_time": 50.36, "total_req_clength": 1122, "max_req_clength": 165, "avg_req_clength": 44, "total_res_clength": 2204, "max_res_clength": 186, "avg_res_clength": 88, "req_rate": 25, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 5, "apdex_tolerated": 20, "apdex_score": 0.6 }, "sys": { "rss": 73764864, "heapTotal": 36741120, "heapUsed": 23332129, "external": 1910798, "cpu": 1.4771758064135279, "lag": 0.252796 } }, "1588093354": { "stats": { "requests": 24, "responses": 24, "errors": 1, "info": 0, "success": 23, "redirect": 0, "client_error": 1, "server_error": 0, "total_time": 1347, "max_time": 100, "avg_time": 56.125, "total_req_clength": 1133, "max_req_clength": 191, "avg_req_clength": 47, "total_res_clength": 2796, "max_res_clength": 199, "avg_res_clength": 116, "req_rate": 24, "err_rate": 1, "apdex_threshold": 25, "apdex_satisfied": 2, "apdex_tolerated": 21, "apdex_score": 0.5208333333333334 }, "sys": { "rss": 73764864, "heapTotal": 36741120, "heapUsed": 24538029, "external": 2050120, "cpu": 2.762364973869414, "lag": 0.043671 } }, "1588093355": { "stats": { "requests": 25, "responses": 25, "errors": 5, "info": 0, "success": 20, "redirect": 0, "client_error": 5, "server_error": 0, "total_time": 945, "max_time": 97, "avg_time": 37.8, "total_req_clength": 1567, "max_req_clength": 210, "avg_req_clength": 62, "total_res_clength": 2652, "max_res_clength": 198, "avg_res_clength": 106, "req_rate": 25, "err_rate": 5, "apdex_threshold": 25, "apdex_satisfied": 6, "apdex_tolerated": 14, "apdex_score": 0.52 }, "sys": { "rss": 73764864, "heapTotal": 36741120, "heapUsed": 25744890, "external": 2188733, "cpu": 2.5647772543208234, "lag": 0.043334 } }, "1588093356": { "stats": { "requests": 21, "responses": 21, "errors": 5, "info": 0, "success": 16, "redirect": 0, "client_error": 4, "server_error": 1, "total_time": 1214, "max_time": 99, "avg_time": 57.80952380952381, "total_req_clength": 970, "max_req_clength": 203, "avg_req_clength": 46, "total_res_clength": 1854, "max_res_clength": 198, "avg_res_clength": 88, "req_rate": 21, "err_rate": 5, "apdex_threshold": 25, "apdex_satisfied": 2, "apdex_tolerated": 14, "apdex_score": 0.42857142857142855 }, "sys": { "rss": 73886574, "heapTotal": 36741120, "heapUsed": 23205776, "external": 1914977, "cpu": 2.4633974778722925, "lag": 0.040597 } }, "1588093357": { "stats": { "requests": 15, "responses": 15, "errors": 4, "info": 0, "success": 11, "redirect": 0, "client_error": 3, "server_error": 1, "total_time": 696, "max_time": 99, "avg_time": 46.4, "total_req_clength": 711, "max_req_clength": 197, "avg_req_clength": 47, "total_res_clength": 1638, "max_res_clength": 199, "avg_res_clength": 109, "req_rate": 15, "err_rate": 4, "apdex_threshold": 25, "apdex_satisfied": 2, "apdex_tolerated": 9, "apdex_score": 0.43333333333333335 }, "sys": { "rss": 73977856, "heapTotal": 36741120, "heapUsed": 19365321, "external": 1504178, "cpu": 1.7119514670036935, "lag": 0.046086 } }, "1588093358": { "stats": { "requests": 21, "responses": 21, "errors": 0, "info": 0, "success": 21, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 1100, "max_time": 97, "avg_time": 52.38095238095238, "total_req_clength": 724, "max_req_clength": 134, "avg_req_clength": 34, "total_res_clength": 2420, "max_res_clength": 199, "avg_res_clength": 115, "req_rate": 21, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 4, "apdex_tolerated": 17, "apdex_score": 0.5952380952380952 }, "sys": { "rss": 73977856, "heapTotal": 36741120, "heapUsed": 20090911, "external": 1637153, "cpu": 2.532131924081231, "lag": 0.039959 } }, "1588093359": { "stats": { "requests": 19, "responses": 19, "errors": 2, "info": 0, "success": 17, "redirect": 0, "client_error": 1, "server_error": 1, "total_time": 1003, "max_time": 100, "avg_time": 52.78947368421053, "total_req_clength": 1290, "max_req_clength": 197, "avg_req_clength": 67, "total_res_clength": 1744, "max_res_clength": 189, "avg_res_clength": 91, "req_rate": 19, "err_rate": 2, "apdex_threshold": 25, "apdex_satisfied": 4, "apdex_tolerated": 13, "apdex_score": 0.5526315789473685 }, "sys": { "rss": 73977856, "heapTotal": 36741120, "heapUsed": 20966735, "external": 1771233, "cpu": 2.2868132815216007, "lag": 0.651047 } }, "1588093360": { "stats": { "requests": 20, "responses": 20, "errors": 2, "info": 0, "success": 18, "redirect": 0, "client_error": 1, "server_error": 1, "total_time": 864, "max_time": 94, "avg_time": 43.2, "total_req_clength": 861, "max_req_clength": 187, "avg_req_clength": 43, "total_res_clength": 2384, "max_res_clength": 194, "avg_res_clength": 119, "req_rate": 20, "err_rate": 2, "apdex_threshold": 25, "apdex_satisfied": 7, "apdex_tolerated": 11, "apdex_score": 0.625 }, "sys": { "rss": 73977856, "heapTotal": 36741120, "heapUsed": 21916603, "external": 1909965, "cpu": 1.9388896811232033, "lag": 0.048814 } }, "1588093361": { "stats": { "requests": 15, "responses": 15, "errors": 2, "info": 0, "success": 13, "redirect": 0, "client_error": 0, "server_error": 2, "total_time": 722, "max_time": 88, "avg_time": 48.13333333333333, "total_req_clength": 657, "max_req_clength": 206, "avg_req_clength": 43, "total_res_clength": 1601, "max_res_clength": 199, "avg_res_clength": 106, "req_rate": 15, "err_rate": 2, "apdex_threshold": 25, "apdex_satisfied": 4, "apdex_tolerated": 9, "apdex_score": 0.5666666666666667 }, "sys": { "rss": 73977856, "heapTotal": 36741120, "heapUsed": 22725769, "external": 2047210, "cpu": 1.6866602960941097, "lag": 0.038996 } }, "1588093362": { "stats": { "requests": 28, "responses": 28, "errors": 3, "info": 0, "success": 25, "redirect": 0, "client_error": 3, "server_error": 0, "total_time": 1460, "max_time": 99, "avg_time": 52.142857142857146, "total_req_clength": 1394, "max_req_clength": 187, "avg_req_clength": 49, "total_res_clength": 2936, "max_res_clength": 199, "avg_res_clength": 104, "req_rate": 28, "err_rate": 3, "apdex_threshold": 25, "apdex_satisfied": 7, "apdex_tolerated": 18, "apdex_score": 0.5714285714285714 }, "sys": { "rss": 73977856, "heapTotal": 36741120, "heapUsed": 23846353, "external": 2181598, "cpu": 2.505626343880352, "lag": 0.052258 } }, "1588093363": { "stats": { "requests": 28, "responses": 28, "errors": 5, "info": 0, "success": 23, "redirect": 0, "client_error": 4, "server_error": 1, "total_time": 1677, "max_time": 98, "avg_time": 59.892857142857146, "total_req_clength": 889, "max_req_clength": 197, "avg_req_clength": 31, "total_res_clength": 2623, "max_res_clength": 201, "avg_res_clength": 93, "req_rate": 28, "err_rate": 5, "apdex_threshold": 25, "apdex_satisfied": 3, "apdex_tolerated": 20, "apdex_score": 0.4642857142857143 }, "sys": { "rss": 73977856, "heapTotal": 36741120, "heapUsed": 24853362, "external": 2315416, "cpu": 2.1818431968844685, "lag": 0.038622 } }, "1588093364": { "stats": { "requests": 19, "responses": 19, "errors": 2, "info": 0, "success": 17, "redirect": 0, "client_error": 0, "server_error": 2, "total_time": 1015, "max_time": 95, "avg_time": 53.421052631578945, "total_req_clength": 917, "max_req_clength": 180, "avg_req_clength": 48, "total_res_clength": 2038, "max_res_clength": 202, "avg_res_clength": 107, "req_rate": 19, "err_rate": 2, "apdex_threshold": 25, "apdex_satisfied": 4, "apdex_tolerated": 13, "apdex_score": 0.5526315789473685 }, "sys": { "rss": 73977856, "heapTotal": 36741120, "heapUsed": 25930435, "external": 2449100, "cpu": 2.1057517442363727, "lag": 0.09267 } }, "1588093365": { "stats": { "requests": 31, "responses": 31, "errors": 6, "info": 0, "success": 25, "redirect": 0, "client_error": 4, "server_error": 2, "total_time": 1784, "max_time": 98, "avg_time": 57.54838709677419, "total_req_clength": 1136, "max_req_clength": 173, "avg_req_clength": 36, "total_res_clength": 2790, "max_res_clength": 201, "avg_res_clength": 90, "req_rate": 31, "err_rate": 5, "apdex_threshold": 25, "apdex_satisfied": 5, "apdex_tolerated": 20, "apdex_score": 0.4838709677419355 }, "sys": { "rss": 62924507, "heapTotal": 25506377, "heapUsed": 21132401, "external": 1795185, "cpu": 4.10721788855931, "lag": 0.042131 } }, "1588093366": { "stats": { "requests": 21, "responses": 21, "errors": 2, "info": 0, "success": 19, "redirect": 0, "client_error": 2, "server_error": 0, "total_time": 1155, "max_time": 96, "avg_time": 55, "total_req_clength": 853, "max_req_clength": 195, "avg_req_clength": 40, "total_res_clength": 1673, "max_res_clength": 189, "avg_res_clength": 79, "req_rate": 21, "err_rate": 2, "apdex_threshold": 25, "apdex_satisfied": 2, "apdex_tolerated": 17, "apdex_score": 0.5 }, "sys": { "rss": 58122825, "heapTotal": 21012480, "heapUsed": 18982214, "external": 1464809, "cpu": 2.791319096596079, "lag": 0.044668 } }, "1588093367": { "stats": { "requests": 17, "responses": 17, "errors": 0, "info": 0, "success": 17, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 998, "max_time": 93, "avg_time": 58.705882352941174, "total_req_clength": 612, "max_req_clength": 184, "avg_req_clength": 36, "total_res_clength": 1641, "max_res_clength": 192, "avg_res_clength": 96, "req_rate": 17, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 3, "apdex_tolerated": 14, "apdex_score": 0.5882352941176471 }, "sys": { "rss": 58370926, "heapTotal": 21461870, "heapUsed": 18886707, "external": 1445883, "cpu": 3.071822693677625, "lag": 0.050659 } }, "1588093368": { "stats": { "requests": 44, "responses": 44, "errors": 5, "info": 0, "success": 39, "redirect": 0, "client_error": 1, "server_error": 4, "total_time": 2392, "max_time": 99, "avg_time": 54.36363636363637, "total_req_clength": 1967, "max_req_clength": 200, "avg_req_clength": 44, "total_res_clength": 3985, "max_res_clength": 203, "avg_res_clength": 90, "req_rate": 44, "err_rate": 4, "apdex_threshold": 25, "apdex_satisfied": 8, "apdex_tolerated": 31, "apdex_score": 0.5340909090909091 }, "sys": { "rss": 59241033, "heapTotal": 22061056, "heapUsed": 19014303, "external": 1446710, "cpu": 5.733067540274729, "lag": 0.051583 } }, "1588093369": { "stats": { "requests": 10, "responses": 10, "errors": 3, "info": 0, "success": 7, "redirect": 0, "client_error": 3, "server_error": 0, "total_time": 469, "max_time": 93, "avg_time": 46.9, "total_req_clength": 426, "max_req_clength": 171, "avg_req_clength": 42, "total_res_clength": 784, "max_res_clength": 173, "avg_res_clength": 78, "req_rate": 10, "err_rate": 3, "apdex_threshold": 25, "apdex_satisfied": 2, "apdex_tolerated": 5, "apdex_score": 0.45 }, "sys": { "rss": 59539456, "heapTotal": 22061056, "heapUsed": 19352278, "external": 1447656, "cpu": 1.1848769817757712, "lag": 0.212681 } }, "1588093370": { "stats": { "requests": 30, "responses": 30, "errors": 3, "info": 0, "success": 27, "redirect": 0, "client_error": 2, "server_error": 1, "total_time": 1713, "max_time": 97, "avg_time": 57.1, "total_req_clength": 1403, "max_req_clength": 206, "avg_req_clength": 46, "total_res_clength": 2602, "max_res_clength": 197, "avg_res_clength": 86, "req_rate": 30, "err_rate": 3, "apdex_threshold": 25, "apdex_satisfied": 5, "apdex_tolerated": 22, "apdex_score": 0.5333333333333333 }, "sys": { "rss": 59539456, "heapTotal": 22061056, "heapUsed": 19298255, "external": 1451255, "cpu": 2.9446360784170187, "lag": 0.437293 } }, "1588093371": { "stats": { "requests": 19, "responses": 19, "errors": 2, "info": 0, "success": 17, "redirect": 0, "client_error": 2, "server_error": 0, "total_time": 916, "max_time": 98, "avg_time": 48.21052631578947, "total_req_clength": 789, "max_req_clength": 163, "avg_req_clength": 41, "total_res_clength": 1772, "max_res_clength": 189, "avg_res_clength": 93, "req_rate": 19, "err_rate": 2, "apdex_threshold": 25, "apdex_satisfied": 6, "apdex_tolerated": 11, "apdex_score": 0.6052631578947368 }, "sys": { "rss": 59539456, "heapTotal": 22061056, "heapUsed": 19279294, "external": 1511213, "cpu": 2.297047862743695, "lag": 0.604641 } }, "1588093372": { "stats": { "requests": 35, "responses": 35, "errors": 3, "info": 0, "success": 32, "redirect": 0, "client_error": 1, "server_error": 2, "total_time": 1630, "max_time": 92, "avg_time": 46.57142857142857, "total_req_clength": 1834, "max_req_clength": 181, "avg_req_clength": 52, "total_res_clength": 3309, "max_res_clength": 199, "avg_res_clength": 94, "req_rate": 35, "err_rate": 3, "apdex_threshold": 25, "apdex_satisfied": 7, "apdex_tolerated": 25, "apdex_score": 0.5571428571428572 }, "sys": { "rss": 59539456, "heapTotal": 22061056, "heapUsed": 19107458, "external": 1510514, "cpu": 3.6450055521546667, "lag": 0.08222 } }, "1588093373": { "stats": { "requests": 46, "responses": 46, "errors": 3, "info": 0, "success": 43, "redirect": 0, "client_error": 2, "server_error": 1, "total_time": 2359, "max_time": 99, "avg_time": 51.28260869565217, "total_req_clength": 2416, "max_req_clength": 199, "avg_req_clength": 52, "total_res_clength": 4226, "max_res_clength": 180, "avg_res_clength": 91, "req_rate": 46, "err_rate": 3, "apdex_threshold": 25, "apdex_satisfied": 11, "apdex_tolerated": 32, "apdex_score": 0.5869565217391305 }, "sys": { "rss": 59539456, "heapTotal": 22061056, "heapUsed": 19256590, "external": 1454548, "cpu": 4.428774739973542, "lag": 0.571222 } }, "1588093374": { "stats": { "requests": 20, "responses": 20, "errors": 1, "info": 0, "success": 19, "redirect": 0, "client_error": 0, "server_error": 1, "total_time": 1257, "max_time": 97, "avg_time": 62.85, "total_req_clength": 578, "max_req_clength": 169, "avg_req_clength": 28, "total_res_clength": 2272, "max_res_clength": 187, "avg_res_clength": 113, "req_rate": 20, "err_rate": 1, "apdex_threshold": 25, "apdex_satisfied": 1, "apdex_tolerated": 18, "apdex_score": 0.5 }, "sys": { "rss": 59539456, "heapTotal": 22061056, "heapUsed": 19194377, "external": 1492750, "cpu": 2.3213625620952487, "lag": 0.039826 } }, "1588093375": { "stats": { "requests": 20, "responses": 20, "errors": 1, "info": 0, "success": 19, "redirect": 0, "client_error": 1, "server_error": 0, "total_time": 991, "max_time": 94, "avg_time": 49.55, "total_req_clength": 860, "max_req_clength": 183, "avg_req_clength": 43, "total_res_clength": 2461, "max_res_clength": 197, "avg_res_clength": 123, "req_rate": 20, "err_rate": 1, "apdex_threshold": 25, "apdex_satisfied": 5, "apdex_tolerated": 14, "apdex_score": 0.6 }, "sys": { "rss": 59539456, "heapTotal": 22959835, "heapUsed": 19207573, "external": 1459292, "cpu": 2.470910080352385, "lag": 0.053224 } }, "1588093376": { "stats": { "requests": 36, "responses": 36, "errors": 4, "info": 0, "success": 32, "redirect": 0, "client_error": 3, "server_error": 1, "total_time": 1940, "max_time": 100, "avg_time": 53.888888888888886, "total_req_clength": 1041, "max_req_clength": 171, "avg_req_clength": 28, "total_res_clength": 4235, "max_res_clength": 203, "avg_res_clength": 117, "req_rate": 36, "err_rate": 4, "apdex_threshold": 25, "apdex_satisfied": 6, "apdex_tolerated": 26, "apdex_score": 0.5277777777777778 }, "sys": { "rss": 60039168, "heapTotal": 24158208, "heapUsed": 19765240, "external": 1502164, "cpu": 4.03756070944782, "lag": 0.047446 } }, "1588093377": { "stats": { "requests": 25, "responses": 25, "errors": 0, "info": 0, "success": 25, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 1149, "max_time": 98, "avg_time": 45.96, "total_req_clength": 1285, "max_req_clength": 203, "avg_req_clength": 51, "total_res_clength": 2275, "max_res_clength": 197, "avg_res_clength": 91, "req_rate": 25, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 7, "apdex_tolerated": 18, "apdex_score": 0.64 }, "sys": { "rss": 60616704, "heapTotal": 24158208, "heapUsed": 19369841, "external": 1520494, "cpu": 2.458837398506848, "lag": 0.04581 } }, "1588093378": { "stats": { "requests": 17, "responses": 17, "errors": 3, "info": 0, "success": 14, "redirect": 0, "client_error": 2, "server_error": 1, "total_time": 664, "max_time": 98, "avg_time": 39.05882352941177, "total_req_clength": 691, "max_req_clength": 170, "avg_req_clength": 40, "total_res_clength": 1843, "max_res_clength": 203, "avg_res_clength": 108, "req_rate": 17, "err_rate": 3, "apdex_threshold": 25, "apdex_satisfied": 7, "apdex_tolerated": 7, "apdex_score": 0.6176470588235294 }, "sys": { "rss": 60964279, "heapTotal": 24158208, "heapUsed": 20103174, "external": 1653549, "cpu": 1.9286868748144468, "lag": 0.04257 } }, "1588093379": { "stats": { "requests": 21, "responses": 21, "errors": 2, "info": 0, "success": 19, "redirect": 0, "client_error": 1, "server_error": 1, "total_time": 938, "max_time": 87, "avg_time": 44.666666666666664, "total_req_clength": 1252, "max_req_clength": 202, "avg_req_clength": 59, "total_res_clength": 2565, "max_res_clength": 199, "avg_res_clength": 122, "req_rate": 21, "err_rate": 2, "apdex_threshold": 25, "apdex_satisfied": 6, "apdex_tolerated": 13, "apdex_score": 0.5952380952380952 }, "sys": { "rss": 61582190, "heapTotal": 24158208, "heapUsed": 19839255, "external": 1633434, "cpu": 2.1236168847097656, "lag": 0.038602 } }, "1588093380": { "stats": { "requests": 0, "responses": 0, "errors": 0, "info": 0, "success": 0, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 0, "max_time": 0, "avg_time": 0, "total_req_clength": 0, "max_req_clength": 0, "avg_req_clength": 0, "total_res_clength": 0, "max_res_clength": 0, "avg_res_clength": 0, "req_rate": 0, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 0, "apdex_tolerated": 0, "apdex_score": 0 }, "sys": { "rss": 61698048, "heapTotal": 24158208, "heapUsed": 19610040, "external": 1576443, "cpu": 0.14810571223236643 } } } }, "errors": { "statuscode": { "401": 213, "404": 702, "500": 224, "501": 263 }, "topnotfound": { "/v2/pet": 60, "/v2/store/inventory": 27, "/v2/user/abcde": 104, "/v2/pet/findByStatus": 28, "/v2/user/logout": 38, "/v2/user/createWithList": 35, "/v2/pet/findByTags": 34, "/v2/pet/12345": 113, "/v2/pet/12345/uploadImage": 46, "/v2/user/createWithArray": 37, "/v2/user/login": 40, "/v2/user": 28, "/v2/store/order/12345": 83, "/v2/store/order": 29 }, "topservererror": { "/v2/user/createWithList": 15, "/v2/user/abcde": 31, "/v2/pet": 23, "/v2/user/logout": 17, "/v2/pet/12345": 33, "/v2/pet/findByTags": 13, "/v2/user": 20, "/v2/user/createWithArray": 11, "/v2/store/order/12345": 18, "/v2/user/login": 9, "/v2/pet/findByStatus": 9, "/v2/pet/12345/uploadImage": 7, "/v2/store/inventory": 12, "/v2/store/order": 6 } } } ================================================ FILE: src/data/hitsdata.json ================================================ [ { "path": "/pets", "method": "GET", "query": "GET /pets", "startts": 1591661376075, "endts": 1591661376117, "responsetime": 42, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":40,\"payloadsize\":110}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 110 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:36.075Z", "api": { "path": "/pets", "query": "GET /pets", "swagger": true, "deprecated": false, "operationId": "findPets", "params": {} } }, { "path": "/pets/abcde", "method": "GET", "query": "GET /pets/abcde", "startts": 1591661375503, "endts": 1591661375578, "responsetime": 75, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":74,\"payloadsize\":53}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 53 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:35.503Z", "api": { "path": "/pets/{id}", "query": "GET /pets/{id}", "swagger": true, "deprecated": false, "operationId": "find pet by id", "params": { "id": "abcde" } } }, { "path": "/pets", "method": "GET", "query": "GET /pets", "startts": 1591661375502, "endts": 1591661375542, "responsetime": 40, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":39,\"payloadsize\":109}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 109 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:35.502Z", "api": { "path": "/pets", "query": "GET /pets", "swagger": true, "deprecated": false, "operationId": "findPets", "params": {} } }, { "path": "/pets", "method": "POST", "query": "POST /pets", "startts": 1591661375502, "endts": 1591661375551, "responsetime": 49, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":48,\"payloadsize\":77}", "content-type": "application/json", "content-length": "184", "host": "localhost:3040", "connection": "close" }, "clength": 184, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 77 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:35.502Z", "api": { "path": "/pets", "query": "POST /pets", "swagger": true, "deprecated": false, "operationId": "addPet" } }, { "path": "/pets/abcde", "method": "GET", "query": "GET /pets/abcde", "startts": 1591661375059, "endts": 1591661375070, "responsetime": 11, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":10,\"payloadsize\":76}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 76 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:35.059Z", "api": { "path": "/pets/{id}", "query": "GET /pets/{id}", "swagger": true, "deprecated": false, "operationId": "find pet by id", "params": { "id": "abcde" } } }, { "path": "/pets", "method": "POST", "query": "POST /pets", "startts": 1591661375058, "endts": 1591661375125, "responsetime": 67, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":66,\"payloadsize\":72}", "content-type": "application/json", "content-length": "82", "host": "localhost:3040", "connection": "close" }, "clength": 82, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 72 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:35.058Z", "api": { "path": "/pets", "query": "POST /pets", "swagger": true, "deprecated": false, "operationId": "addPet" } }, { "path": "/pets", "method": "GET", "query": "GET /pets", "startts": 1591661375057, "endts": 1591661375083, "responsetime": 26, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":26,\"payloadsize\":158}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 158 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:35.057Z", "api": { "path": "/pets", "query": "GET /pets", "swagger": true, "deprecated": false, "operationId": "findPets", "params": {} } }, { "path": "/pets", "method": "POST", "query": "POST /pets", "startts": 1591661374819, "endts": 1591661374867, "responsetime": 48, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":47,\"payloadsize\":81}", "content-type": "application/json", "content-length": "37", "host": "localhost:3040", "connection": "close" }, "clength": 37, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 81 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:34.819Z", "api": { "path": "/pets", "query": "POST /pets", "swagger": true, "deprecated": false, "operationId": "addPet" } }, { "path": "/pets/abcde", "method": "GET", "query": "GET /pets/abcde", "startts": 1591661374819, "endts": 1591661374895, "responsetime": 76, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":76,\"payloadsize\":126}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 126 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:34.819Z", "api": { "path": "/pets/{id}", "query": "GET /pets/{id}", "swagger": true, "deprecated": false, "operationId": "find pet by id", "params": { "id": "abcde" } } }, { "path": "/pets", "method": "GET", "query": "GET /pets", "startts": 1591661374818, "endts": 1591661374894, "responsetime": 76, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":76,\"payloadsize\":5}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 5 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:34.818Z", "api": { "path": "/pets", "query": "GET /pets", "swagger": true, "deprecated": false, "operationId": "findPets", "params": {} } }, { "path": "/pets/abcde", "method": "GET", "query": "GET /pets/abcde", "startts": 1591661374337, "endts": 1591661374343, "responsetime": 6, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":5,\"payloadsize\":66}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 66 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:34.337Z", "api": { "path": "/pets/{id}", "query": "GET /pets/{id}", "swagger": true, "deprecated": false, "operationId": "find pet by id", "params": { "id": "abcde" } } }, { "path": "/pets/abcde", "method": "DELETE", "query": "DELETE /pets/abcde", "startts": 1591661374337, "endts": 1591661374432, "responsetime": 95, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":95,\"payloadsize\":154}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 154 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:34.337Z", "api": { "path": "/pets/{id}", "query": "DELETE /pets/{id}", "swagger": true, "deprecated": false, "operationId": "deletePet", "params": { "id": "abcde" } } }, { "path": "/pets", "method": "POST", "query": "POST /pets", "startts": 1591661374336, "endts": 1591661374434, "responsetime": 98, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":97,\"payloadsize\":54}", "content-type": "application/json", "content-length": "24", "host": "localhost:3040", "connection": "close" }, "clength": 24, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 54 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:34.336Z", "api": { "path": "/pets", "query": "POST /pets", "swagger": true, "deprecated": false, "operationId": "addPet" } }, { "path": "/pets/abcde", "method": "DELETE", "query": "DELETE /pets/abcde", "startts": 1591661373862, "endts": 1591661373892, "responsetime": 30, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":30,\"payloadsize\":175}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 175 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:33.862Z", "api": { "path": "/pets/{id}", "query": "DELETE /pets/{id}", "swagger": true, "deprecated": false, "operationId": "deletePet", "params": { "id": "abcde" } } }, { "path": "/pets", "method": "POST", "query": "POST /pets", "startts": 1591661373861, "endts": 1591661373905, "responsetime": 44, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":404,\"message\":\"Not Found\",\"delay\":43,\"payloadsize\":40}", "content-type": "application/json", "content-length": "93", "host": "localhost:3040", "connection": "close" }, "clength": 93, "route_path": "/pet*", "query": {} }, "response": { "code": 404, "class": "client_error", "phrase": "Not Found", "headers": {}, "clength": 40 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:33.861Z", "api": { "path": "/pets", "query": "POST /pets", "swagger": true, "deprecated": false, "operationId": "addPet" } }, { "path": "/pets", "method": "GET", "query": "GET /pets", "startts": 1591661373860, "endts": 1591661373898, "responsetime": 38, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":36,\"payloadsize\":161}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 161 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:33.860Z", "api": { "path": "/pets", "query": "GET /pets", "swagger": true, "deprecated": false, "operationId": "findPets", "params": {} } }, { "path": "/pets/abcde", "method": "DELETE", "query": "DELETE /pets/abcde", "startts": 1591661373713, "endts": 1591661373723, "responsetime": 10, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":404,\"message\":\"Not Found\",\"delay\":9,\"payloadsize\":107}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 404, "class": "client_error", "phrase": "Not Found", "headers": {}, "clength": 107 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:33.713Z", "api": { "path": "/pets/{id}", "query": "DELETE /pets/{id}", "swagger": true, "deprecated": false, "operationId": "deletePet", "params": { "id": "abcde" } } }, { "path": "/pets", "method": "POST", "query": "POST /pets", "startts": 1591661373712, "endts": 1591661373718, "responsetime": 6, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":4,\"payloadsize\":104}", "content-type": "application/json", "content-length": "87", "host": "localhost:3040", "connection": "close" }, "clength": 87, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 104 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:33.712Z", "api": { "path": "/pets", "query": "POST /pets", "swagger": true, "deprecated": false, "operationId": "addPet" } }, { "path": "/pets", "method": "GET", "query": "GET /pets", "startts": 1591661373712, "endts": 1591661373722, "responsetime": 10, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":9,\"payloadsize\":120}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 120 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:33.712Z", "api": { "path": "/pets", "query": "GET /pets", "swagger": true, "deprecated": false, "operationId": "findPets", "params": {} } }, { "path": "/pets/abcde", "method": "DELETE", "query": "DELETE /pets/abcde", "startts": 1591661373264, "endts": 1591661373268, "responsetime": 4, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":3,\"payloadsize\":137}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 137 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:33.264Z", "api": { "path": "/pets/{id}", "query": "DELETE /pets/{id}", "swagger": true, "deprecated": false, "operationId": "deletePet", "params": { "id": "abcde" } } }, { "path": "/pets", "method": "GET", "query": "GET /pets", "startts": 1591661373263, "endts": 1591661373264, "responsetime": 1, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":500,\"message\":\"Internal Server Error\",\"delay\":1,\"payloadsize\":56}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 500, "class": "server_error", "phrase": "Internal Server Error", "headers": {}, "clength": 56 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:33.263Z", "api": { "path": "/pets", "query": "GET /pets", "swagger": true, "deprecated": false, "operationId": "findPets", "params": {} } }, { "path": "/pets", "method": "POST", "query": "POST /pets", "startts": 1591661373263, "endts": 1591661373328, "responsetime": 65, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":63,\"payloadsize\":173}", "content-type": "application/json", "content-length": "206", "host": "localhost:3040", "connection": "close" }, "clength": 206, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 173 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:33.263Z", "api": { "path": "/pets", "query": "POST /pets", "swagger": true, "deprecated": false, "operationId": "addPet" } }, { "path": "/pets/abcde", "method": "GET", "query": "GET /pets/abcde", "startts": 1591661372772, "endts": 1591661372847, "responsetime": 75, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":501,\"message\":\"Not Implemented\",\"delay\":75,\"payloadsize\":79}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 501, "class": "server_error", "phrase": "Not Implemented", "headers": {}, "clength": 79 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:32.772Z", "api": { "path": "/pets/{id}", "query": "GET /pets/{id}", "swagger": true, "deprecated": false, "operationId": "find pet by id", "params": { "id": "abcde" } } }, { "path": "/pets", "method": "POST", "query": "POST /pets", "startts": 1591661372771, "endts": 1591661372817, "responsetime": 46, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":45,\"payloadsize\":176}", "content-type": "application/json", "content-length": "138", "host": "localhost:3040", "connection": "close" }, "clength": 138, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 176 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:32.771Z", "api": { "path": "/pets", "query": "POST /pets", "swagger": true, "deprecated": false, "operationId": "addPet" } }, { "path": "/pets", "method": "GET", "query": "GET /pets", "startts": 1591661372771, "endts": 1591661372832, "responsetime": 61, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":61,\"payloadsize\":141}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 141 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:32.771Z", "api": { "path": "/pets", "query": "GET /pets", "swagger": true, "deprecated": false, "operationId": "findPets", "params": {} } }, { "path": "/pets/abcde", "method": "DELETE", "query": "DELETE /pets/abcde", "startts": 1591661372177, "endts": 1591661372240, "responsetime": 63, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":62,\"payloadsize\":81}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 81 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:32.177Z", "api": { "path": "/pets/{id}", "query": "DELETE /pets/{id}", "swagger": true, "deprecated": false, "operationId": "deletePet", "params": { "id": "abcde" } } }, { "path": "/pets/abcde", "method": "GET", "query": "GET /pets/abcde", "startts": 1591661372176, "endts": 1591661372251, "responsetime": 75, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":73,\"payloadsize\":30}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 30 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:32.176Z", "api": { "path": "/pets/{id}", "query": "GET /pets/{id}", "swagger": true, "deprecated": false, "operationId": "find pet by id", "params": { "id": "abcde" } } }, { "path": "/pets/abcde", "method": "DELETE", "query": "DELETE /pets/abcde", "startts": 1591661371771, "endts": 1591661371773, "responsetime": 2, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":2,\"payloadsize\":113}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 113 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:31.771Z", "api": { "path": "/pets/{id}", "query": "DELETE /pets/{id}", "swagger": true, "deprecated": false, "operationId": "deletePet", "params": { "id": "abcde" } } }, { "path": "/pets/abcde", "method": "GET", "query": "GET /pets/abcde", "startts": 1591661371771, "endts": 1591661371809, "responsetime": 38, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":404,\"message\":\"Not Found\",\"delay\":38,\"payloadsize\":66}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 404, "class": "client_error", "phrase": "Not Found", "headers": {}, "clength": 66 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:31.771Z", "api": { "path": "/pets/{id}", "query": "GET /pets/{id}", "swagger": true, "deprecated": false, "operationId": "find pet by id", "params": { "id": "abcde" } } }, { "path": "/pets", "method": "POST", "query": "POST /pets", "startts": 1591661371770, "endts": 1591661371816, "responsetime": 46, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":501,\"message\":\"Not Implemented\",\"delay\":46,\"payloadsize\":162}", "content-type": "application/json", "content-length": "41", "host": "localhost:3040", "connection": "close" }, "clength": 41, "route_path": "/pet*", "query": {} }, "response": { "code": 501, "class": "server_error", "phrase": "Not Implemented", "headers": {}, "clength": 162 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:31.770Z", "api": { "path": "/pets", "query": "POST /pets", "swagger": true, "deprecated": false, "operationId": "addPet" } }, { "path": "/pets/abcde", "method": "GET", "query": "GET /pets/abcde", "startts": 1591661371312, "endts": 1591661371337, "responsetime": 25, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":401,\"message\":\"Unauthorized\",\"delay\":24,\"payloadsize\":67}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 401, "class": "client_error", "phrase": "Unauthorized", "headers": {}, "clength": 67 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:31.312Z", "api": { "path": "/pets/{id}", "query": "GET /pets/{id}", "swagger": true, "deprecated": false, "operationId": "find pet by id", "params": { "id": "abcde" } } }, { "path": "/pets/abcde", "method": "DELETE", "query": "DELETE /pets/abcde", "startts": 1591661370927, "endts": 1591661370952, "responsetime": 25, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":25,\"payloadsize\":195}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 195 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:30.927Z", "api": { "path": "/pets/{id}", "query": "DELETE /pets/{id}", "swagger": true, "deprecated": false, "operationId": "deletePet", "params": { "id": "abcde" } } }, { "path": "/pets/abcde", "method": "GET", "query": "GET /pets/abcde", "startts": 1591661370926, "endts": 1591661370936, "responsetime": 10, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":10,\"payloadsize\":42}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 42 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:30.926Z", "api": { "path": "/pets/{id}", "query": "GET /pets/{id}", "swagger": true, "deprecated": false, "operationId": "find pet by id", "params": { "id": "abcde" } } }, { "path": "/pets", "method": "POST", "query": "POST /pets", "startts": 1591661370926, "endts": 1591661371024, "responsetime": 98, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":501,\"message\":\"Not Implemented\",\"delay\":97,\"payloadsize\":167}", "content-type": "application/json", "content-length": "55", "host": "localhost:3040", "connection": "close" }, "clength": 55, "route_path": "/pet*", "query": {} }, "response": { "code": 501, "class": "server_error", "phrase": "Not Implemented", "headers": {}, "clength": 167 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:30.926Z", "api": { "path": "/pets", "query": "POST /pets", "swagger": true, "deprecated": false, "operationId": "addPet" } }, { "path": "/pets", "method": "GET", "query": "GET /pets", "startts": 1591661370925, "endts": 1591661370954, "responsetime": 29, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":401,\"message\":\"Unauthorized\",\"delay\":29,\"payloadsize\":198}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 401, "class": "client_error", "phrase": "Unauthorized", "headers": {}, "clength": 198 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:30.925Z", "api": { "path": "/pets", "query": "GET /pets", "swagger": true, "deprecated": false, "operationId": "findPets", "params": {} } }, { "path": "/pets/abcde", "method": "GET", "query": "GET /pets/abcde", "startts": 1591661370607, "endts": 1591661370700, "responsetime": 93, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":92,\"payloadsize\":28}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 28 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:30.607Z", "api": { "path": "/pets/{id}", "query": "GET /pets/{id}", "swagger": true, "deprecated": false, "operationId": "find pet by id", "params": { "id": "abcde" } } }, { "path": "/pets", "method": "POST", "query": "POST /pets", "startts": 1591661370606, "endts": 1591661370640, "responsetime": 34, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":34,\"payloadsize\":145}", "content-type": "application/json", "content-length": "15", "host": "localhost:3040", "connection": "close" }, "clength": 15, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 145 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:30.606Z", "api": { "path": "/pets", "query": "POST /pets", "swagger": true, "deprecated": false, "operationId": "addPet" } }, { "path": "/pets", "method": "GET", "query": "GET /pets", "startts": 1591661370606, "endts": 1591661370675, "responsetime": 69, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":68,\"payloadsize\":96}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 96 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:30.606Z", "api": { "path": "/pets", "query": "GET /pets", "swagger": true, "deprecated": false, "operationId": "findPets", "params": {} } }, { "path": "/pets", "method": "GET", "query": "GET /pets", "startts": 1591661370238, "endts": 1591661370296, "responsetime": 58, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":57,\"payloadsize\":198}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 198 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:30.238Z", "api": { "path": "/pets", "query": "GET /pets", "swagger": true, "deprecated": false, "operationId": "findPets", "params": {} } }, { "path": "/pets/abcde", "method": "DELETE", "query": "DELETE /pets/abcde", "startts": 1591661369939, "endts": 1591661369961, "responsetime": 22, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":21,\"payloadsize\":21}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 21 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:29.939Z", "api": { "path": "/pets/{id}", "query": "DELETE /pets/{id}", "swagger": true, "deprecated": false, "operationId": "deletePet", "params": { "id": "abcde" } } }, { "path": "/pets", "method": "GET", "query": "GET /pets", "startts": 1591661369939, "endts": 1591661370021, "responsetime": 82, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":82,\"payloadsize\":17}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 17 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:29.939Z", "api": { "path": "/pets", "query": "GET /pets", "swagger": true, "deprecated": false, "operationId": "findPets", "params": {} } }, { "path": "/pets/abcde", "method": "DELETE", "query": "DELETE /pets/abcde", "startts": 1591661369508, "endts": 1591661369602, "responsetime": 94, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":94,\"payloadsize\":153}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 153 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:29.508Z", "api": { "path": "/pets/{id}", "query": "DELETE /pets/{id}", "swagger": true, "deprecated": false, "operationId": "deletePet", "params": { "id": "abcde" } } }, { "path": "/pets/abcde", "method": "GET", "query": "GET /pets/abcde", "startts": 1591661369507, "endts": 1591661369517, "responsetime": 10, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":8,\"payloadsize\":148}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 148 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:29.507Z", "api": { "path": "/pets/{id}", "query": "GET /pets/{id}", "swagger": true, "deprecated": false, "operationId": "find pet by id", "params": { "id": "abcde" } } }, { "path": "/pets", "method": "POST", "query": "POST /pets", "startts": 1591661369507, "endts": 1591661369596, "responsetime": 89, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":89,\"payloadsize\":175}", "content-type": "application/json", "content-length": "192", "host": "localhost:3040", "connection": "close" }, "clength": 192, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 175 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:29.507Z", "api": { "path": "/pets", "query": "POST /pets", "swagger": true, "deprecated": false, "operationId": "addPet" } }, { "path": "/pets", "method": "POST", "query": "POST /pets", "startts": 1591661368985, "endts": 1591661368993, "responsetime": 8, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":7,\"payloadsize\":116}", "content-type": "application/json", "content-length": "60", "host": "localhost:3040", "connection": "close" }, "clength": 60, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 116 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:28.985Z", "api": { "path": "/pets", "query": "POST /pets", "swagger": true, "deprecated": false, "operationId": "addPet" } }, { "path": "/pets/abcde", "method": "GET", "query": "GET /pets/abcde", "startts": 1591661368985, "endts": 1591661369033, "responsetime": 48, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":47,\"payloadsize\":134}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 134 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:28.985Z", "api": { "path": "/pets/{id}", "query": "GET /pets/{id}", "swagger": true, "deprecated": false, "operationId": "find pet by id", "params": { "id": "abcde" } } }, { "path": "/pets", "method": "GET", "query": "GET /pets", "startts": 1591661368671, "endts": 1591661368682, "responsetime": 11, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":11,\"payloadsize\":69}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 69 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:28.671Z", "api": { "path": "/pets", "query": "GET /pets", "swagger": true, "deprecated": false, "operationId": "findPets", "params": {} } }, { "path": "/pets", "method": "POST", "query": "POST /pets", "startts": 1591661368671, "endts": 1591661368693, "responsetime": 22, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":404,\"message\":\"Not Found\",\"delay\":21,\"payloadsize\":39}", "content-type": "application/json", "content-length": "25", "host": "localhost:3040", "connection": "close" }, "clength": 25, "route_path": "/pet*", "query": {} }, "response": { "code": 404, "class": "client_error", "phrase": "Not Found", "headers": {}, "clength": 39 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:28.671Z", "api": { "path": "/pets", "query": "POST /pets", "swagger": true, "deprecated": false, "operationId": "addPet" } }, { "path": "/pets/abcde", "method": "GET", "query": "GET /pets/abcde", "startts": 1591661368324, "endts": 1591661368376, "responsetime": 52, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":52,\"payloadsize\":2}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 5 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:28.324Z", "api": { "path": "/pets/{id}", "query": "GET /pets/{id}", "swagger": true, "deprecated": false, "operationId": "find pet by id", "params": { "id": "abcde" } } }, { "path": "/pets", "method": "POST", "query": "POST /pets", "startts": 1591661368323, "endts": 1591661368367, "responsetime": 44, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":42,\"payloadsize\":25}", "content-type": "application/json", "content-length": "139", "host": "localhost:3040", "connection": "close" }, "clength": 139, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 25 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:28.323Z", "api": { "path": "/pets", "query": "POST /pets", "swagger": true, "deprecated": false, "operationId": "addPet" } }, { "path": "/pets", "method": "GET", "query": "GET /pets", "startts": 1591661368323, "endts": 1591661368379, "responsetime": 56, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":54,\"payloadsize\":126}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 126 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:28.323Z", "api": { "path": "/pets", "query": "GET /pets", "swagger": true, "deprecated": false, "operationId": "findPets", "params": {} } }, { "path": "/pets/abcde", "method": "GET", "query": "GET /pets/abcde", "startts": 1591661368174, "endts": 1591661368182, "responsetime": 8, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":8,\"payloadsize\":82}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 82 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:28.174Z", "api": { "path": "/pets/{id}", "query": "GET /pets/{id}", "swagger": true, "deprecated": false, "operationId": "find pet by id", "params": { "id": "abcde" } } }, { "path": "/pets/abcde", "method": "DELETE", "query": "DELETE /pets/abcde", "startts": 1591661368174, "endts": 1591661368218, "responsetime": 44, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":43,\"payloadsize\":157}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 157 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:28.174Z", "api": { "path": "/pets/{id}", "query": "DELETE /pets/{id}", "swagger": true, "deprecated": false, "operationId": "deletePet", "params": { "id": "abcde" } } }, { "path": "/pets", "method": "POST", "query": "POST /pets", "startts": 1591661368173, "endts": 1591661368210, "responsetime": 37, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":35,\"payloadsize\":198}", "content-type": "application/json", "content-length": "139", "host": "localhost:3040", "connection": "close" }, "clength": 139, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 198 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:28.173Z", "api": { "path": "/pets", "query": "POST /pets", "swagger": true, "deprecated": false, "operationId": "addPet" } }, { "path": "/pets/abcde", "method": "GET", "query": "GET /pets/abcde", "startts": 1591661367707, "endts": 1591661367792, "responsetime": 85, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":85,\"payloadsize\":129}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 129 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:27.707Z", "api": { "path": "/pets/{id}", "query": "GET /pets/{id}", "swagger": true, "deprecated": false, "operationId": "find pet by id", "params": { "id": "abcde" } } }, { "path": "/pets", "method": "POST", "query": "POST /pets", "startts": 1591661367706, "endts": 1591661367722, "responsetime": 16, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":500,\"message\":\"Internal Server Error\",\"delay\":16,\"payloadsize\":138}", "content-type": "application/json", "content-length": "156", "host": "localhost:3040", "connection": "close" }, "clength": 156, "route_path": "/pet*", "query": {} }, "response": { "code": 500, "class": "server_error", "phrase": "Internal Server Error", "headers": {}, "clength": 138 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:27.706Z", "api": { "path": "/pets", "query": "POST /pets", "swagger": true, "deprecated": false, "operationId": "addPet" } }, { "path": "/pets/abcde", "method": "GET", "query": "GET /pets/abcde", "startts": 1591661367365, "endts": 1591661367396, "responsetime": 31, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":30,\"payloadsize\":146}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 146 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:27.365Z", "api": { "path": "/pets/{id}", "query": "GET /pets/{id}", "swagger": true, "deprecated": false, "operationId": "find pet by id", "params": { "id": "abcde" } } }, { "path": "/pets/abcde", "method": "DELETE", "query": "DELETE /pets/abcde", "startts": 1591661367066, "endts": 1591661367082, "responsetime": 16, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":15,\"payloadsize\":145}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 145 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:27.066Z", "api": { "path": "/pets/{id}", "query": "DELETE /pets/{id}", "swagger": true, "deprecated": false, "operationId": "deletePet", "params": { "id": "abcde" } } }, { "path": "/pets", "method": "GET", "query": "GET /pets", "startts": 1591661367064, "endts": 1591661367099, "responsetime": 35, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":33,\"payloadsize\":79}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 79 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:27.064Z", "api": { "path": "/pets", "query": "GET /pets", "swagger": true, "deprecated": false, "operationId": "findPets", "params": {} } }, { "path": "/pets/abcde", "method": "GET", "query": "GET /pets/abcde", "startts": 1591661366483, "endts": 1591661366499, "responsetime": 16, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":16,\"payloadsize\":36}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 36 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:26.483Z", "api": { "path": "/pets/{id}", "query": "GET /pets/{id}", "swagger": true, "deprecated": false, "operationId": "find pet by id", "params": { "id": "abcde" } } }, { "path": "/pets/abcde", "method": "DELETE", "query": "DELETE /pets/abcde", "startts": 1591661366483, "endts": 1591661366540, "responsetime": 57, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":56,\"payloadsize\":199}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 199 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:26.483Z", "api": { "path": "/pets/{id}", "query": "DELETE /pets/{id}", "swagger": true, "deprecated": false, "operationId": "deletePet", "params": { "id": "abcde" } } }, { "path": "/pets", "method": "GET", "query": "GET /pets", "startts": 1591661366482, "endts": 1591661366497, "responsetime": 15, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":15,\"payloadsize\":136}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 136 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:26.482Z", "api": { "path": "/pets", "query": "GET /pets", "swagger": true, "deprecated": false, "operationId": "findPets", "params": {} } }, { "path": "/pets", "method": "POST", "query": "POST /pets", "startts": 1591661366482, "endts": 1591661366569, "responsetime": 87, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":85,\"payloadsize\":74}", "content-type": "application/json", "content-length": "128", "host": "localhost:3040", "connection": "close" }, "clength": 128, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 74 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:26.482Z", "api": { "path": "/pets", "query": "POST /pets", "swagger": true, "deprecated": false, "operationId": "addPet" } }, { "path": "/pets/abcde", "method": "DELETE", "query": "DELETE /pets/abcde", "startts": 1591661366031, "endts": 1591661366070, "responsetime": 39, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":38,\"payloadsize\":41}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 41 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:26.031Z", "api": { "path": "/pets/{id}", "query": "DELETE /pets/{id}", "swagger": true, "deprecated": false, "operationId": "deletePet", "params": { "id": "abcde" } } }, { "path": "/pets/abcde", "method": "GET", "query": "GET /pets/abcde", "startts": 1591661366030, "endts": 1591661366042, "responsetime": 12, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":11,\"payloadsize\":138}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 138 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:26.030Z", "api": { "path": "/pets/{id}", "query": "GET /pets/{id}", "swagger": true, "deprecated": false, "operationId": "find pet by id", "params": { "id": "abcde" } } }, { "path": "/pets/abcde", "method": "DELETE", "query": "DELETE /pets/abcde", "startts": 1591661365646, "endts": 1591661365716, "responsetime": 70, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":69,\"payloadsize\":187}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 187 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:25.646Z", "api": { "path": "/pets/{id}", "query": "DELETE /pets/{id}", "swagger": true, "deprecated": false, "operationId": "deletePet", "params": { "id": "abcde" } } }, { "path": "/pets/abcde", "method": "GET", "query": "GET /pets/abcde", "startts": 1591661365099, "endts": 1591661365198, "responsetime": 99, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":98,\"payloadsize\":186}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 186 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:25.099Z", "api": { "path": "/pets/{id}", "query": "GET /pets/{id}", "swagger": true, "deprecated": false, "operationId": "find pet by id", "params": { "id": "abcde" } } }, { "path": "/pets/abcde", "method": "GET", "query": "GET /pets/abcde", "startts": 1591661364685, "endts": 1591661364737, "responsetime": 52, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":51,\"payloadsize\":161}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 161 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:24.685Z", "api": { "path": "/pets/{id}", "query": "GET /pets/{id}", "swagger": true, "deprecated": false, "operationId": "find pet by id", "params": { "id": "abcde" } } }, { "path": "/pets", "method": "POST", "query": "POST /pets", "startts": 1591661364224, "endts": 1591661364301, "responsetime": 77, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":77,\"payloadsize\":105}", "content-type": "application/json", "content-length": "188", "host": "localhost:3040", "connection": "close" }, "clength": 188, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 105 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:24.224Z", "api": { "path": "/pets", "query": "POST /pets", "swagger": true, "deprecated": false, "operationId": "addPet" } }, { "path": "/pets/abcde", "method": "DELETE", "query": "DELETE /pets/abcde", "startts": 1591661364224, "endts": 1591661364317, "responsetime": 93, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":92,\"payloadsize\":75}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 75 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:24.224Z", "api": { "path": "/pets/{id}", "query": "DELETE /pets/{id}", "swagger": true, "deprecated": false, "operationId": "deletePet", "params": { "id": "abcde" } } }, { "path": "/pets/abcde", "method": "DELETE", "query": "DELETE /pets/abcde", "startts": 1591661363985, "endts": 1591661363997, "responsetime": 12, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":9,\"payloadsize\":136}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 136 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:23.985Z", "api": { "path": "/pets/{id}", "query": "DELETE /pets/{id}", "swagger": true, "deprecated": false, "operationId": "deletePet", "params": { "id": "abcde" } } }, { "path": "/pets", "method": "POST", "query": "POST /pets", "startts": 1591661363984, "endts": 1591661363996, "responsetime": 12, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":10,\"payloadsize\":63}", "content-type": "application/json", "content-length": "91", "host": "localhost:3040", "connection": "close" }, "clength": 91, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 63 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:23.984Z", "api": { "path": "/pets", "query": "POST /pets", "swagger": true, "deprecated": false, "operationId": "addPet" } }, { "path": "/pets/abcde", "method": "GET", "query": "GET /pets/abcde", "startts": 1591661363984, "endts": 1591661364015, "responsetime": 31, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":31,\"payloadsize\":138}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 138 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:23.984Z", "api": { "path": "/pets/{id}", "query": "GET /pets/{id}", "swagger": true, "deprecated": false, "operationId": "find pet by id", "params": { "id": "abcde" } } }, { "path": "/pets", "method": "GET", "query": "GET /pets", "startts": 1591661363983, "endts": 1591661364083, "responsetime": 100, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":99,\"payloadsize\":40}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 40 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:23.983Z", "api": { "path": "/pets", "query": "GET /pets", "swagger": true, "deprecated": false, "operationId": "findPets", "params": {} } }, { "path": "/pets", "method": "GET", "query": "GET /pets", "startts": 1591661363782, "endts": 1591661363871, "responsetime": 89, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":88,\"payloadsize\":193}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 193 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:23.782Z", "api": { "path": "/pets", "query": "GET /pets", "swagger": true, "deprecated": false, "operationId": "findPets", "params": {} } }, { "path": "/pets/abcde", "method": "GET", "query": "GET /pets/abcde", "startts": 1591661363241, "endts": 1591661363254, "responsetime": 13, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":13,\"payloadsize\":127}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 127 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:23.241Z", "api": { "path": "/pets/{id}", "query": "GET /pets/{id}", "swagger": true, "deprecated": false, "operationId": "find pet by id", "params": { "id": "abcde" } } }, { "path": "/pets/abcde", "method": "DELETE", "query": "DELETE /pets/abcde", "startts": 1591661363241, "endts": 1591661363324, "responsetime": 83, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":404,\"message\":\"Not Found\",\"delay\":82,\"payloadsize\":147}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 404, "class": "client_error", "phrase": "Not Found", "headers": {}, "clength": 147 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:23.241Z", "api": { "path": "/pets/{id}", "query": "DELETE /pets/{id}", "swagger": true, "deprecated": false, "operationId": "deletePet", "params": { "id": "abcde" } } }, { "path": "/pets", "method": "GET", "query": "GET /pets", "startts": 1591661363240, "endts": 1591661363309, "responsetime": 69, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":68,\"payloadsize\":39}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 39 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:23.240Z", "api": { "path": "/pets", "query": "GET /pets", "swagger": true, "deprecated": false, "operationId": "findPets", "params": {} } }, { "path": "/pets", "method": "POST", "query": "POST /pets", "startts": 1591661362943, "endts": 1591661363019, "responsetime": 76, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":75,\"payloadsize\":158}", "content-type": "application/json", "content-length": "63", "host": "localhost:3040", "connection": "close" }, "clength": 63, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 158 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:22.943Z", "api": { "path": "/pets", "query": "POST /pets", "swagger": true, "deprecated": false, "operationId": "addPet" } }, { "path": "/pets", "method": "GET", "query": "GET /pets", "startts": 1591661362942, "endts": 1591661362967, "responsetime": 25, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":25,\"payloadsize\":164}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 164 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:22.942Z", "api": { "path": "/pets", "query": "GET /pets", "swagger": true, "deprecated": false, "operationId": "findPets", "params": {} } }, { "path": "/pets/abcde", "method": "GET", "query": "GET /pets/abcde", "startts": 1591661362600, "endts": 1591661362605, "responsetime": 5, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":401,\"message\":\"Unauthorized\",\"delay\":5,\"payloadsize\":166}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 401, "class": "client_error", "phrase": "Unauthorized", "headers": {}, "clength": 166 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:22.600Z", "api": { "path": "/pets/{id}", "query": "GET /pets/{id}", "swagger": true, "deprecated": false, "operationId": "find pet by id", "params": { "id": "abcde" } } }, { "path": "/pets", "method": "POST", "query": "POST /pets", "startts": 1591661362273, "endts": 1591661362353, "responsetime": 80, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":79,\"payloadsize\":151}", "content-type": "application/json", "content-length": "158", "host": "localhost:3040", "connection": "close" }, "clength": 158, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 151 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:22.273Z", "api": { "path": "/pets", "query": "POST /pets", "swagger": true, "deprecated": false, "operationId": "addPet" } }, { "path": "/pets/abcde", "method": "DELETE", "query": "DELETE /pets/abcde", "startts": 1591661361720, "endts": 1591661361742, "responsetime": 22, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":21,\"payloadsize\":161}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 161 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:21.720Z", "api": { "path": "/pets/{id}", "query": "DELETE /pets/{id}", "swagger": true, "deprecated": false, "operationId": "deletePet", "params": { "id": "abcde" } } }, { "path": "/pets/abcde", "method": "GET", "query": "GET /pets/abcde", "startts": 1591661361720, "endts": 1591661361783, "responsetime": 63, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":401,\"message\":\"Unauthorized\",\"delay\":63,\"payloadsize\":121}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 401, "class": "client_error", "phrase": "Unauthorized", "headers": {}, "clength": 121 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:21.720Z", "api": { "path": "/pets/{id}", "query": "GET /pets/{id}", "swagger": true, "deprecated": false, "operationId": "find pet by id", "params": { "id": "abcde" } } }, { "path": "/pets", "method": "POST", "query": "POST /pets", "startts": 1591661361720, "endts": 1591661361784, "responsetime": 64, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":64,\"payloadsize\":173}", "content-type": "application/json", "content-length": "105", "host": "localhost:3040", "connection": "close" }, "clength": 105, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 173 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:21.720Z", "api": { "path": "/pets", "query": "POST /pets", "swagger": true, "deprecated": false, "operationId": "addPet" } }, { "path": "/pets", "method": "GET", "query": "GET /pets", "startts": 1591661361719, "endts": 1591661361818, "responsetime": 99, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":97,\"payloadsize\":80}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 80 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:21.719Z", "api": { "path": "/pets", "query": "GET /pets", "swagger": true, "deprecated": false, "operationId": "findPets", "params": {} } }, { "path": "/pets", "method": "POST", "query": "POST /pets", "startts": 1591661361120, "endts": 1591661361199, "responsetime": 79, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":78,\"payloadsize\":44}", "content-type": "application/json", "content-length": "54", "host": "localhost:3040", "connection": "close" }, "clength": 54, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 44 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:21.120Z", "api": { "path": "/pets", "query": "POST /pets", "swagger": true, "deprecated": false, "operationId": "addPet" } }, { "path": "/pets/abcde", "method": "DELETE", "query": "DELETE /pets/abcde", "startts": 1591661361120, "endts": 1591661361220, "responsetime": 100, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":98,\"payloadsize\":116}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 116 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:21.120Z", "api": { "path": "/pets/{id}", "query": "DELETE /pets/{id}", "swagger": true, "deprecated": false, "operationId": "deletePet", "params": { "id": "abcde" } } }, { "path": "/pets", "method": "GET", "query": "GET /pets", "startts": 1591661361119, "endts": 1591661361213, "responsetime": 94, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":93,\"payloadsize\":151}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 151 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:21.119Z", "api": { "path": "/pets", "query": "GET /pets", "swagger": true, "deprecated": false, "operationId": "findPets", "params": {} } }, { "path": "/pets/abcde", "method": "DELETE", "query": "DELETE /pets/abcde", "startts": 1591661360540, "endts": 1591661360632, "responsetime": 92, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":92,\"payloadsize\":126}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 126 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:20.540Z", "api": { "path": "/pets/{id}", "query": "DELETE /pets/{id}", "swagger": true, "deprecated": false, "operationId": "deletePet", "params": { "id": "abcde" } } }, { "path": "/pets", "method": "GET", "query": "GET /pets", "startts": 1591661360539, "endts": 1591661360618, "responsetime": 79, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":78,\"payloadsize\":76}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 76 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:20.539Z", "api": { "path": "/pets", "query": "GET /pets", "swagger": true, "deprecated": false, "operationId": "findPets", "params": {} } }, { "path": "/pets/abcde", "method": "GET", "query": "GET /pets/abcde", "startts": 1591661360539, "endts": 1591661360621, "responsetime": 82, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":81,\"payloadsize\":86}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 86 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:20.539Z", "api": { "path": "/pets/{id}", "query": "GET /pets/{id}", "swagger": true, "deprecated": false, "operationId": "find pet by id", "params": { "id": "abcde" } } }, { "path": "/pets/abcde", "method": "GET", "query": "GET /pets/abcde", "startts": 1591661360049, "endts": 1591661360117, "responsetime": 68, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":67,\"payloadsize\":166}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 166 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:20.049Z", "api": { "path": "/pets/{id}", "query": "GET /pets/{id}", "swagger": true, "deprecated": false, "operationId": "find pet by id", "params": { "id": "abcde" } } }, { "path": "/pets", "method": "POST", "query": "POST /pets", "startts": 1591661360048, "endts": 1591661360138, "responsetime": 90, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":89,\"payloadsize\":199}", "content-type": "application/json", "content-length": "72", "host": "localhost:3040", "connection": "close" }, "clength": 72, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 199 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:20.048Z", "api": { "path": "/pets", "query": "POST /pets", "swagger": true, "deprecated": false, "operationId": "addPet" } }, { "path": "/pets/abcde", "method": "DELETE", "query": "DELETE /pets/abcde", "startts": 1591661359853, "endts": 1591661359856, "responsetime": 3, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":2,\"payloadsize\":148}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 148 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:19.853Z", "api": { "path": "/pets/{id}", "query": "DELETE /pets/{id}", "swagger": true, "deprecated": false, "operationId": "deletePet", "params": { "id": "abcde" } } }, { "path": "/pets/abcde", "method": "GET", "query": "GET /pets/abcde", "startts": 1591661359853, "endts": 1591661359878, "responsetime": 25, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":24,\"payloadsize\":51}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 51 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:19.853Z", "api": { "path": "/pets/{id}", "query": "GET /pets/{id}", "swagger": true, "deprecated": false, "operationId": "find pet by id", "params": { "id": "abcde" } } }, { "path": "/pets", "method": "POST", "query": "POST /pets", "startts": 1591661359852, "endts": 1591661359924, "responsetime": 72, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":71,\"payloadsize\":50}", "content-type": "application/json", "content-length": "116", "host": "localhost:3040", "connection": "close" }, "clength": 116, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 50 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:19.852Z", "api": { "path": "/pets", "query": "POST /pets", "swagger": true, "deprecated": false, "operationId": "addPet" } }, { "path": "/pets", "method": "GET", "query": "GET /pets", "startts": 1591661359851, "endts": 1591661359940, "responsetime": 89, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":88,\"payloadsize\":119}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 119 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:19.851Z", "api": { "path": "/pets", "query": "GET /pets", "swagger": true, "deprecated": false, "operationId": "findPets", "params": {} } }, { "path": "/pets/abcde", "method": "DELETE", "query": "DELETE /pets/abcde", "startts": 1591661359338, "endts": 1591661359373, "responsetime": 35, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":\"200\",\"message\":\"OK\",\"delay\":34,\"payloadsize\":161}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 200, "class": "success", "phrase": "OK", "headers": {}, "clength": 161 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:19.338Z", "api": { "path": "/pets/{id}", "query": "DELETE /pets/{id}", "swagger": true, "deprecated": false, "operationId": "deletePet", "params": { "id": "abcde" } } }, { "path": "/pets/abcde", "method": "GET", "query": "GET /pets/abcde", "startts": 1591661359338, "endts": 1591661359382, "responsetime": 44, "node": { "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71" }, "http": { "request": { "url": "/pets/abcde", "headers": { "x-sws-res": "{\"code\":500,\"message\":\"Internal Server Error\",\"delay\":43,\"payloadsize\":8}", "host": "localhost:3040", "connection": "close" }, "clength": 0, "route_path": "/pet*", "query": {} }, "response": { "code": 500, "class": "server_error", "phrase": "Internal Server Error", "headers": {}, "clength": 8 } }, "ip": "127.0.0.1", "real_ip": "127.0.0.1", "port": 3040, "@timestamp": "2020-06-09T00:09:19.338Z", "api": { "path": "/pets/{id}", "query": "GET /pets/{id}", "swagger": true, "deprecated": false, "operationId": "find pet by id", "params": { "id": "abcde" } } } ] ================================================ FILE: src/data/iconsmdiv5.json ================================================ [ "ab-testing", "abjad-arabic", "abjad-hebrew", "abugida-devanagari", "abugida-thai", "access-point", "access-point-network", "access-point-network-off", "account", "account-alert", "account-alert-outline", "account-arrow-left", "account-arrow-left-outline", "account-arrow-right", "account-arrow-right-outline", "account-box", "account-box-multiple", "account-box-multiple-outline", "account-box-outline", "account-cancel", "account-cancel-outline", "account-cash", "account-cash-outline", "account-check", "account-check-outline", "account-child", "account-child-circle", "account-child-outline", "account-circle", "account-circle-outline", "account-clock", "account-clock-outline", "account-cog", "account-cog-outline", "account-convert", "account-convert-outline", "account-cowboy-hat", "account-details", "account-details-outline", "account-edit", "account-edit-outline", "account-group", "account-group-outline", "account-hard-hat", "account-heart", "account-heart-outline", "account-key", "account-key-outline", "account-lock", "account-lock-outline", "account-minus", "account-minus-outline", "account-multiple", "account-multiple-check", "account-multiple-check-outline", "account-multiple-minus", "account-multiple-minus-outline", "account-multiple-outline", "account-multiple-plus", "account-multiple-plus-outline", "account-multiple-remove", "account-multiple-remove-outline", "account-music", "account-music-outline", "account-network", "account-network-outline", "account-off", "account-off-outline", "account-outline", "account-plus", "account-plus-outline", "account-question", "account-question-outline", "account-remove", "account-remove-outline", "account-search", "account-search-outline", "account-settings", "account-settings-outline", "account-star", "account-star-outline", "account-supervisor", "account-supervisor-circle", "account-supervisor-outline", "account-switch", "account-switch-outline", "account-tie", "account-tie-outline", "account-tie-voice", "account-tie-voice-off", "account-tie-voice-off-outline", "account-tie-voice-outline", "account-voice", "adjust", "adobe", "adobe-acrobat", "air-conditioner", "air-filter", "air-horn", "air-humidifier", "air-purifier", "airbag", "airballoon", "airballoon-outline", "airplane", "airplane-landing", "airplane-off", "airplane-takeoff", "airport", "alarm", "alarm-bell", "alarm-check", "alarm-light", "alarm-light-outline", "alarm-multiple", "alarm-note", "alarm-note-off", "alarm-off", "alarm-plus", "alarm-snooze", "album", "alert", "alert-box", "alert-box-outline", "alert-circle", "alert-circle-check", "alert-circle-check-outline", "alert-circle-outline", "alert-decagram", "alert-decagram-outline", "alert-octagon", "alert-octagon-outline", "alert-octagram", "alert-octagram-outline", "alert-outline", "alert-rhombus", "alert-rhombus-outline", "alien", "alien-outline", "align-horizontal-center", "align-horizontal-left", "align-horizontal-right", "align-vertical-bottom", "align-vertical-center", "align-vertical-top", "all-inclusive", "allergy", "alpha", "alpha-a", "alpha-a-box", "alpha-a-box-outline", "alpha-a-circle", "alpha-a-circle-outline", "alpha-b", "alpha-b-box", "alpha-b-box-outline", "alpha-b-circle", "alpha-b-circle-outline", "alpha-c", "alpha-c-box", "alpha-c-box-outline", "alpha-c-circle", "alpha-c-circle-outline", "alpha-d", "alpha-d-box", "alpha-d-box-outline", "alpha-d-circle", "alpha-d-circle-outline", "alpha-e", "alpha-e-box", "alpha-e-box-outline", "alpha-e-circle", "alpha-e-circle-outline", "alpha-f", "alpha-f-box", "alpha-f-box-outline", "alpha-f-circle", "alpha-f-circle-outline", "alpha-g", "alpha-g-box", "alpha-g-box-outline", "alpha-g-circle", "alpha-g-circle-outline", "alpha-h", "alpha-h-box", "alpha-h-box-outline", "alpha-h-circle", "alpha-h-circle-outline", "alpha-i", "alpha-i-box", "alpha-i-box-outline", "alpha-i-circle", "alpha-i-circle-outline", "alpha-j", "alpha-j-box", "alpha-j-box-outline", "alpha-j-circle", "alpha-j-circle-outline", "alpha-k", "alpha-k-box", "alpha-k-box-outline", "alpha-k-circle", "alpha-k-circle-outline", "alpha-l", "alpha-l-box", "alpha-l-box-outline", "alpha-l-circle", "alpha-l-circle-outline", "alpha-m", "alpha-m-box", "alpha-m-box-outline", "alpha-m-circle", "alpha-m-circle-outline", "alpha-n", "alpha-n-box", "alpha-n-box-outline", "alpha-n-circle", "alpha-n-circle-outline", "alpha-o", "alpha-o-box", "alpha-o-box-outline", "alpha-o-circle", "alpha-o-circle-outline", "alpha-p", "alpha-p-box", "alpha-p-box-outline", "alpha-p-circle", "alpha-p-circle-outline", "alpha-q", "alpha-q-box", "alpha-q-box-outline", "alpha-q-circle", "alpha-q-circle-outline", "alpha-r", "alpha-r-box", "alpha-r-box-outline", "alpha-r-circle", "alpha-r-circle-outline", "alpha-s", "alpha-s-box", "alpha-s-box-outline", "alpha-s-circle", "alpha-s-circle-outline", "alpha-t", "alpha-t-box", "alpha-t-box-outline", "alpha-t-circle", "alpha-t-circle-outline", "alpha-u", "alpha-u-box", "alpha-u-box-outline", "alpha-u-circle", "alpha-u-circle-outline", "alpha-v", "alpha-v-box", "alpha-v-box-outline", "alpha-v-circle", "alpha-v-circle-outline", "alpha-w", "alpha-w-box", "alpha-w-box-outline", "alpha-w-circle", "alpha-w-circle-outline", "alpha-x", "alpha-x-box", "alpha-x-box-outline", "alpha-x-circle", "alpha-x-circle-outline", "alpha-y", "alpha-y-box", "alpha-y-box-outline", "alpha-y-circle", "alpha-y-circle-outline", "alpha-z", "alpha-z-box", "alpha-z-box-outline", "alpha-z-circle", "alpha-z-circle-outline", "alphabet-aurebesh", "alphabet-cyrillic", "alphabet-greek", "alphabet-latin", "alphabet-piqad", "alphabet-tengwar", "alphabetical", "alphabetical-off", "alphabetical-variant", "alphabetical-variant-off", "altimeter", "amazon", "amazon-alexa", "ambulance", "ammunition", "ampersand", "amplifier", "amplifier-off", "anchor", "android", "android-auto", "android-debug-bridge", "android-messages", "android-studio", "angle-acute", "angle-obtuse", "angle-right", "angular", "angularjs", "animation", "animation-outline", "animation-play", "animation-play-outline", "ansible", "antenna", "anvil", "apache-kafka", "api", "api-off", "apple", "apple-airplay", "apple-finder", "apple-icloud", "apple-ios", "apple-keyboard-caps", "apple-keyboard-command", "apple-keyboard-control", "apple-keyboard-option", "apple-keyboard-shift", "apple-safari", "application", "application-export", "application-import", "approximately-equal", "approximately-equal-box", "apps", "apps-box", "arch", "archive", "archive-arrow-down", "archive-arrow-down-outline", "archive-arrow-up", "archive-arrow-up-outline", "archive-outline", "arm-flex", "arm-flex-outline", "arrange-bring-forward", "arrange-bring-to-front", "arrange-send-backward", "arrange-send-to-back", "arrow-all", "arrow-bottom-left", "arrow-bottom-left-bold-outline", "arrow-bottom-left-thick", "arrow-bottom-right", "arrow-bottom-right-bold-outline", "arrow-bottom-right-thick", "arrow-collapse", "arrow-collapse-all", "arrow-collapse-down", "arrow-collapse-horizontal", "arrow-collapse-left", "arrow-collapse-right", "arrow-collapse-up", "arrow-collapse-vertical", "arrow-decision", "arrow-decision-auto", "arrow-decision-auto-outline", "arrow-decision-outline", "arrow-down", "arrow-down-bold", "arrow-down-bold-box", "arrow-down-bold-box-outline", "arrow-down-bold-circle", "arrow-down-bold-circle-outline", "arrow-down-bold-hexagon-outline", "arrow-down-bold-outline", "arrow-down-box", "arrow-down-circle", "arrow-down-circle-outline", "arrow-down-drop-circle", "arrow-down-drop-circle-outline", "arrow-down-thick", "arrow-expand", "arrow-expand-all", "arrow-expand-down", "arrow-expand-horizontal", "arrow-expand-left", "arrow-expand-right", "arrow-expand-up", "arrow-expand-vertical", "arrow-horizontal-lock", "arrow-left", "arrow-left-bold", "arrow-left-bold-box", "arrow-left-bold-box-outline", "arrow-left-bold-circle", "arrow-left-bold-circle-outline", "arrow-left-bold-hexagon-outline", "arrow-left-bold-outline", "arrow-left-box", "arrow-left-circle", "arrow-left-circle-outline", "arrow-left-drop-circle", "arrow-left-drop-circle-outline", "arrow-left-right", "arrow-left-right-bold", "arrow-left-right-bold-outline", "arrow-left-thick", "arrow-right", "arrow-right-bold", "arrow-right-bold-box", "arrow-right-bold-box-outline", "arrow-right-bold-circle", "arrow-right-bold-circle-outline", "arrow-right-bold-hexagon-outline", "arrow-right-bold-outline", "arrow-right-box", "arrow-right-circle", "arrow-right-circle-outline", "arrow-right-drop-circle", "arrow-right-drop-circle-outline", "arrow-right-thick", "arrow-split-horizontal", "arrow-split-vertical", "arrow-top-left", "arrow-top-left-bold-outline", "arrow-top-left-bottom-right", "arrow-top-left-bottom-right-bold", "arrow-top-left-thick", "arrow-top-right", "arrow-top-right-bold-outline", "arrow-top-right-bottom-left", "arrow-top-right-bottom-left-bold", "arrow-top-right-thick", "arrow-up", "arrow-up-bold", "arrow-up-bold-box", "arrow-up-bold-box-outline", "arrow-up-bold-circle", "arrow-up-bold-circle-outline", "arrow-up-bold-hexagon-outline", "arrow-up-bold-outline", "arrow-up-box", "arrow-up-circle", "arrow-up-circle-outline", "arrow-up-down", "arrow-up-down-bold", "arrow-up-down-bold-outline", "arrow-up-drop-circle", "arrow-up-drop-circle-outline", "arrow-up-thick", "arrow-vertical-lock", "artstation", "aspect-ratio", "assistant", "asterisk", "at", "atlassian", "atm", "atom", "atom-variant", "attachment", "audio-video", "audio-video-off", "augmented-reality", "auto-download", "auto-fix", "auto-upload", "autorenew", "av-timer", "aws", "axe", "axis", "axis-arrow", "axis-arrow-lock", "axis-lock", "axis-x-arrow", "axis-x-arrow-lock", "axis-x-rotate-clockwise", "axis-x-rotate-counterclockwise", "axis-x-y-arrow-lock", "axis-y-arrow", "axis-y-arrow-lock", "axis-y-rotate-clockwise", "axis-y-rotate-counterclockwise", "axis-z-arrow", "axis-z-arrow-lock", "axis-z-rotate-clockwise", "axis-z-rotate-counterclockwise", "babel", "baby", "baby-bottle", "baby-bottle-outline", "baby-carriage", "baby-carriage-off", "baby-face", "baby-face-outline", "backburger", "backspace", "backspace-outline", "backspace-reverse", "backspace-reverse-outline", "backup-restore", "bacteria", "bacteria-outline", "badge-account", "badge-account-alert", "badge-account-alert-outline", "badge-account-horizontal", "badge-account-horizontal-outline", "badge-account-outline", "badminton", "bag-carry-on", "bag-carry-on-check", "bag-carry-on-off", "bag-checked", "bag-personal", "bag-personal-off", "bag-personal-off-outline", "bag-personal-outline", "baguette", "balloon", "ballot", "ballot-outline", "ballot-recount", "ballot-recount-outline", "bandage", "bandcamp", "bank", "bank-minus", "bank-outline", "bank-plus", "bank-remove", "bank-transfer", "bank-transfer-in", "bank-transfer-out", "barcode", "barcode-off", "barcode-scan", "barley", "barley-off", "barn", "barrel", "baseball", "baseball-bat", "bash", "basket", "basket-fill", "basket-outline", "basket-unfill", "basketball", "basketball-hoop", "basketball-hoop-outline", "bat", "battery", "battery-10", "battery-10-bluetooth", "battery-20", "battery-20-bluetooth", "battery-30", "battery-30-bluetooth", "battery-40", "battery-40-bluetooth", "battery-50", "battery-50-bluetooth", "battery-60", "battery-60-bluetooth", "battery-70", "battery-70-bluetooth", "battery-80", "battery-80-bluetooth", "battery-90", "battery-90-bluetooth", "battery-alert", "battery-alert-bluetooth", "battery-alert-variant", "battery-alert-variant-outline", "battery-bluetooth", "battery-bluetooth-variant", "battery-charging", "battery-charging-10", "battery-charging-100", "battery-charging-20", "battery-charging-30", "battery-charging-40", "battery-charging-50", "battery-charging-60", "battery-charging-70", "battery-charging-80", "battery-charging-90", "battery-charging-high", "battery-charging-low", "battery-charging-medium", "battery-charging-outline", "battery-charging-wireless", "battery-charging-wireless-10", "battery-charging-wireless-20", "battery-charging-wireless-30", "battery-charging-wireless-40", "battery-charging-wireless-50", "battery-charging-wireless-60", "battery-charging-wireless-70", "battery-charging-wireless-80", "battery-charging-wireless-90", "battery-charging-wireless-alert", "battery-charging-wireless-outline", "battery-heart", "battery-heart-outline", "battery-heart-variant", "battery-high", "battery-low", "battery-medium", "battery-minus", "battery-negative", "battery-off", "battery-off-outline", "battery-outline", "battery-plus", "battery-positive", "battery-unknown", "battery-unknown-bluetooth", "battlenet", "beach", "beaker", "beaker-alert", "beaker-alert-outline", "beaker-check", "beaker-check-outline", "beaker-minus", "beaker-minus-outline", "beaker-outline", "beaker-plus", "beaker-plus-outline", "beaker-question", "beaker-question-outline", "beaker-remove", "beaker-remove-outline", "bed", "bed-double", "bed-double-outline", "bed-empty", "bed-king", "bed-king-outline", "bed-outline", "bed-queen", "bed-queen-outline", "bed-single", "bed-single-outline", "bee", "bee-flower", "beehive-outline", "beer", "beer-outline", "bell", "bell-alert", "bell-alert-outline", "bell-check", "bell-check-outline", "bell-circle", "bell-circle-outline", "bell-off", "bell-off-outline", "bell-outline", "bell-plus", "bell-plus-outline", "bell-ring", "bell-ring-outline", "bell-sleep", "bell-sleep-outline", "beta", "betamax", "biathlon", "bicycle", "bicycle-basket", "bike", "bike-fast", "billboard", "billiards", "billiards-rack", "binoculars", "bio", "biohazard", "bitbucket", "bitcoin", "black-mesa", "blender", "blender-software", "blinds", "blinds-open", "block-helper", "blogger", "blood-bag", "bluetooth", "bluetooth-audio", "bluetooth-connect", "bluetooth-off", "bluetooth-settings", "bluetooth-transfer", "blur", "blur-linear", "blur-off", "blur-radial", "bolnisi-cross", "bolt", "bomb", "bomb-off", "bone", "book", "book-account", "book-account-outline", "book-alphabet", "book-cross", "book-information-variant", "book-lock", "book-lock-open", "book-minus", "book-minus-multiple", "book-minus-multiple-outline", "book-multiple", "book-multiple-outline", "book-music", "book-open", "book-open-outline", "book-open-page-variant", "book-open-variant", "book-outline", "book-play", "book-play-outline", "book-plus", "book-plus-multiple", "book-plus-multiple-outline", "book-remove", "book-remove-multiple", "book-remove-multiple-outline", "book-search", "book-search-outline", "book-variant", "book-variant-multiple", "bookmark", "bookmark-check", "bookmark-check-outline", "bookmark-minus", "bookmark-minus-outline", "bookmark-multiple", "bookmark-multiple-outline", "bookmark-music", "bookmark-music-outline", "bookmark-off", "bookmark-off-outline", "bookmark-outline", "bookmark-plus", "bookmark-plus-outline", "bookmark-remove", "bookmark-remove-outline", "bookshelf", "boom-gate", "boom-gate-alert", "boom-gate-alert-outline", "boom-gate-down", "boom-gate-down-outline", "boom-gate-outline", "boom-gate-up", "boom-gate-up-outline", "boombox", "boomerang", "bootstrap", "border-all", "border-all-variant", "border-bottom", "border-bottom-variant", "border-color", "border-horizontal", "border-inside", "border-left", "border-left-variant", "border-none", "border-none-variant", "border-outside", "border-right", "border-right-variant", "border-style", "border-top", "border-top-variant", "border-vertical", "bottle-soda", "bottle-soda-classic", "bottle-soda-classic-outline", "bottle-soda-outline", "bottle-tonic", "bottle-tonic-outline", "bottle-tonic-plus", "bottle-tonic-plus-outline", "bottle-tonic-skull", "bottle-tonic-skull-outline", "bottle-wine", "bottle-wine-outline", "bow-tie", "bowl", "bowl-mix", "bowl-mix-outline", "bowl-outline", "bowling", "box", "box-cutter", "box-cutter-off", "box-shadow", "boxing-glove", "braille", "brain", "bread-slice", "bread-slice-outline", "bridge", "briefcase", "briefcase-account", "briefcase-account-outline", "briefcase-check", "briefcase-check-outline", "briefcase-clock", "briefcase-clock-outline", "briefcase-download", "briefcase-download-outline", "briefcase-edit", "briefcase-edit-outline", "briefcase-minus", "briefcase-minus-outline", "briefcase-outline", "briefcase-plus", "briefcase-plus-outline", "briefcase-remove", "briefcase-remove-outline", "briefcase-search", "briefcase-search-outline", "briefcase-upload", "briefcase-upload-outline", "brightness-1", "brightness-2", "brightness-3", "brightness-4", "brightness-5", "brightness-6", "brightness-7", "brightness-auto", "brightness-percent", "broom", "brush", "buddhism", "buffer", "buffet", "bug", "bug-check", "bug-check-outline", "bug-outline", "bugle", "bulldozer", "bullet", "bulletin-board", "bullhorn", "bullhorn-outline", "bullseye", "bullseye-arrow", "bulma", "bunk-bed", "bunk-bed-outline", "bus", "bus-alert", "bus-articulated-end", "bus-articulated-front", "bus-clock", "bus-double-decker", "bus-marker", "bus-multiple", "bus-school", "bus-side", "bus-stop", "bus-stop-covered", "bus-stop-uncovered", "cable-data", "cached", "cactus", "cake", "cake-layered", "cake-variant", "calculator", "calculator-variant", "calendar", "calendar-account", "calendar-account-outline", "calendar-alert", "calendar-arrow-left", "calendar-arrow-right", "calendar-blank", "calendar-blank-multiple", "calendar-blank-outline", "calendar-check", "calendar-check-outline", "calendar-clock", "calendar-edit", "calendar-export", "calendar-heart", "calendar-import", "calendar-minus", "calendar-month", "calendar-month-outline", "calendar-multiple", "calendar-multiple-check", "calendar-multiselect", "calendar-outline", "calendar-plus", "calendar-question", "calendar-range", "calendar-range-outline", "calendar-refresh", "calendar-refresh-outline", "calendar-remove", "calendar-remove-outline", "calendar-search", "calendar-star", "calendar-sync", "calendar-sync-outline", "calendar-text", "calendar-text-outline", "calendar-today", "calendar-week", "calendar-week-begin", "calendar-weekend", "calendar-weekend-outline", "call-made", "call-merge", "call-missed", "call-received", "call-split", "camcorder", "camcorder-off", "camera", "camera-account", "camera-burst", "camera-control", "camera-enhance", "camera-enhance-outline", "camera-front", "camera-front-variant", "camera-gopro", "camera-image", "camera-iris", "camera-metering-center", "camera-metering-matrix", "camera-metering-partial", "camera-metering-spot", "camera-off", "camera-outline", "camera-party-mode", "camera-plus", "camera-plus-outline", "camera-rear", "camera-rear-variant", "camera-retake", "camera-retake-outline", "camera-switch", "camera-switch-outline", "camera-timer", "camera-wireless", "camera-wireless-outline", "campfire", "cancel", "candle", "candycane", "cannabis", "caps-lock", "car", "car-2-plus", "car-3-plus", "car-arrow-left", "car-arrow-right", "car-back", "car-battery", "car-brake-abs", "car-brake-alert", "car-brake-hold", "car-brake-parking", "car-brake-retarder", "car-child-seat", "car-clutch", "car-connected", "car-convertible", "car-coolant-level", "car-cruise-control", "car-defrost-front", "car-defrost-rear", "car-door", "car-door-lock", "car-electric", "car-esp", "car-estate", "car-hatchback", "car-info", "car-key", "car-light-dimmed", "car-light-fog", "car-light-high", "car-limousine", "car-multiple", "car-off", "car-parking-lights", "car-pickup", "car-seat", "car-seat-cooler", "car-seat-heater", "car-shift-pattern", "car-side", "car-sports", "car-tire-alert", "car-traction-control", "car-turbocharger", "car-wash", "car-windshield", "car-windshield-outline", "caravan", "card", "card-account-details", "card-account-details-outline", "card-account-details-star", "card-account-details-star-outline", "card-account-mail", "card-account-mail-outline", "card-account-phone", "card-account-phone-outline", "card-bulleted", "card-bulleted-off", "card-bulleted-off-outline", "card-bulleted-outline", "card-bulleted-settings", "card-bulleted-settings-outline", "card-outline", "card-plus", "card-plus-outline", "card-search", "card-search-outline", "card-text", "card-text-outline", "cards", "cards-club", "cards-diamond", "cards-diamond-outline", "cards-heart", "cards-outline", "cards-playing-outline", "cards-spade", "cards-variant", "carrot", "cart", "cart-arrow-down", "cart-arrow-right", "cart-arrow-up", "cart-minus", "cart-off", "cart-outline", "cart-plus", "cart-remove", "case-sensitive-alt", "cash", "cash-100", "cash-marker", "cash-minus", "cash-multiple", "cash-plus", "cash-refund", "cash-register", "cash-remove", "cash-usd", "cash-usd-outline", "cassette", "cast", "cast-audio", "cast-connected", "cast-education", "cast-off", "castle", "cat", "cctv", "ceiling-light", "cellphone", "cellphone-android", "cellphone-arrow-down", "cellphone-basic", "cellphone-charging", "cellphone-cog", "cellphone-dock", "cellphone-erase", "cellphone-information", "cellphone-iphone", "cellphone-key", "cellphone-link", "cellphone-link-off", "cellphone-lock", "cellphone-message", "cellphone-message-off", "cellphone-nfc", "cellphone-nfc-off", "cellphone-off", "cellphone-play", "cellphone-screenshot", "cellphone-settings", "cellphone-sound", "cellphone-text", "cellphone-wireless", "celtic-cross", "centos", "certificate", "certificate-outline", "chair-rolling", "chair-school", "charity", "chart-arc", "chart-areaspline", "chart-areaspline-variant", "chart-bar", "chart-bar-stacked", "chart-bell-curve", "chart-bell-curve-cumulative", "chart-bubble", "chart-donut", "chart-donut-variant", "chart-gantt", "chart-histogram", "chart-line", "chart-line-stacked", "chart-line-variant", "chart-multiline", "chart-multiple", "chart-pie", "chart-ppf", "chart-sankey", "chart-sankey-variant", "chart-scatter-plot", "chart-scatter-plot-hexbin", "chart-timeline", "chart-timeline-variant", "chart-tree", "chat", "chat-alert", "chat-alert-outline", "chat-outline", "chat-processing", "chat-processing-outline", "chat-sleep", "chat-sleep-outline", "check", "check-all", "check-bold", "check-box-multiple-outline", "check-box-outline", "check-circle", "check-circle-outline", "check-decagram", "check-network", "check-network-outline", "check-outline", "check-underline", "check-underline-circle", "check-underline-circle-outline", "checkbook", "checkbox-blank", "checkbox-blank-circle", "checkbox-blank-circle-outline", "checkbox-blank-off", "checkbox-blank-off-outline", "checkbox-blank-outline", "checkbox-intermediate", "checkbox-marked", "checkbox-marked-circle", "checkbox-marked-circle-outline", "checkbox-marked-outline", "checkbox-multiple-blank", "checkbox-multiple-blank-circle", "checkbox-multiple-blank-circle-outline", "checkbox-multiple-blank-outline", "checkbox-multiple-marked", "checkbox-multiple-marked-circle", "checkbox-multiple-marked-circle-outline", "checkbox-multiple-marked-outline", "checkerboard", "checkerboard-minus", "checkerboard-plus", "checkerboard-remove", "cheese", "chef-hat", "chemical-weapon", "chess-bishop", "chess-king", "chess-knight", "chess-pawn", "chess-queen", "chess-rook", "chevron-double-down", "chevron-double-left", "chevron-double-right", "chevron-double-up", "chevron-down", "chevron-down-box", "chevron-down-box-outline", "chevron-down-circle", "chevron-down-circle-outline", "chevron-left", "chevron-left-box", "chevron-left-box-outline", "chevron-left-circle", "chevron-left-circle-outline", "chevron-right", "chevron-right-box", "chevron-right-box-outline", "chevron-right-circle", "chevron-right-circle-outline", "chevron-triple-down", "chevron-triple-left", "chevron-triple-right", "chevron-triple-up", "chevron-up", "chevron-up-box", "chevron-up-box-outline", "chevron-up-circle", "chevron-up-circle-outline", "chili-hot", "chili-medium", "chili-mild", "chip", "christianity", "christianity-outline", "church", "cigar", "circle", "circle-double", "circle-edit-outline", "circle-expand", "circle-half", "circle-half-full", "circle-medium", "circle-multiple", "circle-multiple-outline", "circle-off-outline", "circle-outline", "circle-slice-1", "circle-slice-2", "circle-slice-3", "circle-slice-4", "circle-slice-5", "circle-slice-6", "circle-slice-7", "circle-slice-8", "circle-small", "circular-saw", "city", "city-variant", "city-variant-outline", "clipboard", "clipboard-account", "clipboard-account-outline", "clipboard-alert", "clipboard-alert-outline", "clipboard-arrow-down", "clipboard-arrow-down-outline", "clipboard-arrow-left", "clipboard-arrow-left-outline", "clipboard-arrow-right", "clipboard-arrow-right-outline", "clipboard-arrow-up", "clipboard-arrow-up-outline", "clipboard-check", "clipboard-check-multiple", "clipboard-check-multiple-outline", "clipboard-check-outline", "clipboard-file", "clipboard-file-outline", "clipboard-flow", "clipboard-flow-outline", "clipboard-list", "clipboard-list-outline", "clipboard-multiple", "clipboard-multiple-outline", "clipboard-outline", "clipboard-play", "clipboard-play-multiple", "clipboard-play-multiple-outline", "clipboard-play-outline", "clipboard-plus", "clipboard-plus-outline", "clipboard-pulse", "clipboard-pulse-outline", "clipboard-text", "clipboard-text-multiple", "clipboard-text-multiple-outline", "clipboard-text-outline", "clipboard-text-play", "clipboard-text-play-outline", "clippy", "clock", "clock-alert", "clock-alert-outline", "clock-check", "clock-check-outline", "clock-digital", "clock-end", "clock-fast", "clock-in", "clock-out", "clock-outline", "clock-start", "close", "close-box", "close-box-multiple", "close-box-multiple-outline", "close-box-outline", "close-circle", "close-circle-multiple", "close-circle-multiple-outline", "close-circle-outline", "close-network", "close-network-outline", "close-octagon", "close-octagon-outline", "close-outline", "close-thick", "closed-caption", "closed-caption-outline", "cloud", "cloud-alert", "cloud-braces", "cloud-check", "cloud-check-outline", "cloud-circle", "cloud-download", "cloud-download-outline", "cloud-lock", "cloud-lock-outline", "cloud-off-outline", "cloud-outline", "cloud-print", "cloud-print-outline", "cloud-question", "cloud-refresh", "cloud-search", "cloud-search-outline", "cloud-sync", "cloud-sync-outline", "cloud-tags", "cloud-upload", "cloud-upload-outline", "clover", "coach-lamp", "coat-rack", "code-array", "code-braces", "code-braces-box", "code-brackets", "code-equal", "code-greater-than", "code-greater-than-or-equal", "code-json", "code-less-than", "code-less-than-or-equal", "code-not-equal", "code-not-equal-variant", "code-parentheses", "code-parentheses-box", "code-string", "code-tags", "code-tags-check", "codepen", "coffee", "coffee-maker", "coffee-off", "coffee-off-outline", "coffee-outline", "coffee-to-go", "coffee-to-go-outline", "coffin", "cog", "cog-box", "cog-clockwise", "cog-counterclockwise", "cog-outline", "cog-transfer", "cog-transfer-outline", "cogs", "collage", "collapse-all", "collapse-all-outline", "color-helper", "comma", "comma-box", "comma-box-outline", "comma-circle", "comma-circle-outline", "comment", "comment-account", "comment-account-outline", "comment-alert", "comment-alert-outline", "comment-arrow-left", "comment-arrow-left-outline", "comment-arrow-right", "comment-arrow-right-outline", "comment-check", "comment-check-outline", "comment-edit", "comment-edit-outline", "comment-eye", "comment-eye-outline", "comment-multiple", "comment-multiple-outline", "comment-outline", "comment-plus", "comment-plus-outline", "comment-processing", "comment-processing-outline", "comment-question", "comment-question-outline", "comment-quote", "comment-quote-outline", "comment-remove", "comment-remove-outline", "comment-search", "comment-search-outline", "comment-text", "comment-text-multiple", "comment-text-multiple-outline", "comment-text-outline", "compare", "compass", "compass-off", "compass-off-outline", "compass-outline", "compass-rose", "concourse-ci", "console", "console-line", "console-network", "console-network-outline", "consolidate", "contactless-payment", "contactless-payment-circle", "contactless-payment-circle-outline", "contacts", "contacts-outline", "contain", "contain-end", "contain-start", "content-copy", "content-cut", "content-duplicate", "content-paste", "content-save", "content-save-alert", "content-save-alert-outline", "content-save-all", "content-save-all-outline", "content-save-edit", "content-save-edit-outline", "content-save-move", "content-save-move-outline", "content-save-outline", "content-save-settings", "content-save-settings-outline", "contrast", "contrast-box", "contrast-circle", "controller-classic", "controller-classic-outline", "cookie", "coolant-temperature", "copyright", "cordova", "corn", "counter", "cow", "cpu-32-bit", "cpu-64-bit", "crane", "creation", "creative-commons", "credit-card", "credit-card-clock", "credit-card-clock-outline", "credit-card-marker", "credit-card-marker-outline", "credit-card-minus", "credit-card-minus-outline", "credit-card-multiple", "credit-card-multiple-outline", "credit-card-off", "credit-card-off-outline", "credit-card-outline", "credit-card-plus", "credit-card-plus-outline", "credit-card-refund", "credit-card-refund-outline", "credit-card-remove", "credit-card-remove-outline", "credit-card-scan", "credit-card-scan-outline", "credit-card-settings", "credit-card-settings-outline", "credit-card-wireless", "credit-card-wireless-off", "credit-card-wireless-off-outline", "credit-card-wireless-outline", "cricket", "crop", "crop-free", "crop-landscape", "crop-portrait", "crop-rotate", "crop-square", "crosshairs", "crosshairs-gps", "crosshairs-off", "crosshairs-question", "crown", "crown-outline", "cryengine", "crystal-ball", "cube", "cube-outline", "cube-scan", "cube-send", "cube-unfolded", "cup", "cup-off", "cup-off-outline", "cup-outline", "cup-water", "cupboard", "cupboard-outline", "cupcake", "curling", "currency-bdt", "currency-brl", "currency-btc", "currency-cny", "currency-eth", "currency-eur", "currency-eur-off", "currency-gbp", "currency-ils", "currency-inr", "currency-jpy", "currency-krw", "currency-kzt", "currency-ngn", "currency-php", "currency-rial", "currency-rub", "currency-sign", "currency-try", "currency-twd", "currency-usd", "currency-usd-circle", "currency-usd-circle-outline", "currency-usd-off", "current-ac", "current-dc", "cursor-default", "cursor-default-click", "cursor-default-click-outline", "cursor-default-gesture", "cursor-default-gesture-outline", "cursor-default-outline", "cursor-move", "cursor-pointer", "cursor-text", "database", "database-check", "database-edit", "database-export", "database-import", "database-lock", "database-marker", "database-minus", "database-plus", "database-refresh", "database-remove", "database-search", "database-settings", "database-sync", "death-star", "death-star-variant", "deathly-hallows", "debian", "debug-step-into", "debug-step-out", "debug-step-over", "decagram", "decagram-outline", "decimal", "decimal-comma", "decimal-comma-decrease", "decimal-comma-increase", "decimal-decrease", "decimal-increase", "delete", "delete-alert", "delete-alert-outline", "delete-circle", "delete-circle-outline", "delete-empty", "delete-empty-outline", "delete-forever", "delete-forever-outline", "delete-off", "delete-off-outline", "delete-outline", "delete-restore", "delete-sweep", "delete-sweep-outline", "delete-variant", "delta", "desk", "desk-lamp", "deskphone", "desktop-classic", "desktop-mac", "desktop-mac-dashboard", "desktop-tower", "desktop-tower-monitor", "details", "dev-to", "developer-board", "deviantart", "devices", "diabetes", "dialpad", "diameter", "diameter-outline", "diameter-variant", "diamond", "diamond-outline", "diamond-stone", "dice-1", "dice-1-outline", "dice-2", "dice-2-outline", "dice-3", "dice-3-outline", "dice-4", "dice-4-outline", "dice-5", "dice-5-outline", "dice-6", "dice-6-outline", "dice-d10", "dice-d10-outline", "dice-d12", "dice-d12-outline", "dice-d20", "dice-d20-outline", "dice-d4", "dice-d4-outline", "dice-d6", "dice-d6-outline", "dice-d8", "dice-d8-outline", "dice-multiple", "dice-multiple-outline", "digital-ocean", "dip-switch", "directions", "directions-fork", "disc", "disc-alert", "disc-player", "discord", "dishwasher", "dishwasher-alert", "dishwasher-off", "disqus", "distribute-horizontal-center", "distribute-horizontal-left", "distribute-horizontal-right", "distribute-vertical-bottom", "distribute-vertical-center", "distribute-vertical-top", "diving-flippers", "diving-helmet", "diving-scuba", "diving-scuba-flag", "diving-scuba-tank", "diving-scuba-tank-multiple", "diving-snorkel", "division", "division-box", "dlna", "dna", "dns", "dns-outline", "do-not-disturb", "do-not-disturb-off", "dock-bottom", "dock-left", "dock-right", "dock-window", "docker", "doctor", "dog", "dog-service", "dog-side", "dolby", "dolly", "domain", "domain-off", "domain-plus", "domain-remove", "domino-mask", "donkey", "door", "door-closed", "door-closed-lock", "door-open", "doorbell", "doorbell-video", "dot-net", "dots-horizontal", "dots-horizontal-circle", "dots-horizontal-circle-outline", "dots-vertical", "dots-vertical-circle", "dots-vertical-circle-outline", "douban", "download", "download-lock", "download-lock-outline", "download-multiple", "download-network", "download-network-outline", "download-off", "download-off-outline", "download-outline", "drag", "drag-horizontal", "drag-horizontal-variant", "drag-variant", "drag-vertical", "drag-vertical-variant", "drama-masks", "draw", "drawing", "drawing-box", "dresser", "dresser-outline", "drone", "dropbox", "drupal", "duck", "dumbbell", "dump-truck", "ear-hearing", "ear-hearing-off", "earth", "earth-arrow-right", "earth-box", "earth-box-off", "earth-off", "egg", "egg-easter", "eight-track", "eject", "eject-outline", "electric-switch", "electric-switch-closed", "electron-framework", "elephant", "elevation-decline", "elevation-rise", "elevator", "elevator-down", "elevator-passenger", "elevator-up", "ellipse", "ellipse-outline", "email", "email-alert", "email-alert-outline", "email-box", "email-check", "email-check-outline", "email-edit", "email-edit-outline", "email-lock", "email-mark-as-unread", "email-minus", "email-minus-outline", "email-multiple", "email-multiple-outline", "email-newsletter", "email-open", "email-open-multiple", "email-open-multiple-outline", "email-open-outline", "email-outline", "email-plus", "email-plus-outline", "email-receive", "email-receive-outline", "email-search", "email-search-outline", "email-send", "email-send-outline", "email-sync", "email-sync-outline", "email-variant", "ember", "emby", "emoticon", "emoticon-angry", "emoticon-angry-outline", "emoticon-confused", "emoticon-confused-outline", "emoticon-cool", "emoticon-cool-outline", "emoticon-cry", "emoticon-cry-outline", "emoticon-dead", "emoticon-dead-outline", "emoticon-devil", "emoticon-devil-outline", "emoticon-excited", "emoticon-excited-outline", "emoticon-frown", "emoticon-frown-outline", "emoticon-happy", "emoticon-happy-outline", "emoticon-kiss", "emoticon-kiss-outline", "emoticon-lol", "emoticon-lol-outline", "emoticon-neutral", "emoticon-neutral-outline", "emoticon-outline", "emoticon-poop", "emoticon-poop-outline", "emoticon-sad", "emoticon-sad-outline", "emoticon-tongue", "emoticon-tongue-outline", "emoticon-wink", "emoticon-wink-outline", "engine", "engine-off", "engine-off-outline", "engine-outline", "epsilon", "equal", "equal-box", "equalizer", "equalizer-outline", "eraser", "eraser-variant", "escalator", "escalator-box", "escalator-down", "escalator-up", "eslint", "et", "ethereum", "ethernet", "ethernet-cable", "ethernet-cable-off", "ev-station", "evernote", "excavator", "exclamation", "exclamation-thick", "exit-run", "exit-to-app", "expand-all", "expand-all-outline", "expansion-card", "expansion-card-variant", "exponent", "exponent-box", "export", "export-variant", "eye", "eye-check", "eye-check-outline", "eye-circle", "eye-circle-outline", "eye-minus", "eye-minus-outline", "eye-off", "eye-off-outline", "eye-outline", "eye-plus", "eye-plus-outline", "eye-settings", "eye-settings-outline", "eyedropper", "eyedropper-variant", "face", "face-agent", "face-outline", "face-profile", "face-profile-woman", "face-recognition", "face-woman", "face-woman-outline", "facebook", "facebook-messenger", "facebook-workplace", "factory", "fan", "fan-off", "fast-forward", "fast-forward-10", "fast-forward-30", "fast-forward-5", "fast-forward-outline", "fax", "feather", "feature-search", "feature-search-outline", "fedora", "ferris-wheel", "ferry", "file", "file-account", "file-account-outline", "file-alert", "file-alert-outline", "file-cabinet", "file-cad", "file-cad-box", "file-cancel", "file-cancel-outline", "file-certificate", "file-certificate-outline", "file-chart", "file-chart-outline", "file-check", "file-check-outline", "file-clock", "file-clock-outline", "file-cloud", "file-cloud-outline", "file-code", "file-code-outline", "file-cog", "file-cog-outline", "file-compare", "file-delimited", "file-delimited-outline", "file-document", "file-document-edit", "file-document-edit-outline", "file-document-outline", "file-download", "file-download-outline", "file-edit", "file-edit-outline", "file-excel", "file-excel-box", "file-excel-box-outline", "file-excel-outline", "file-export", "file-export-outline", "file-eye", "file-eye-outline", "file-find", "file-find-outline", "file-hidden", "file-image", "file-image-outline", "file-import", "file-import-outline", "file-key", "file-key-outline", "file-link", "file-link-outline", "file-lock", "file-lock-outline", "file-move", "file-move-outline", "file-multiple", "file-multiple-outline", "file-music", "file-music-outline", "file-outline", "file-pdf", "file-pdf-box", "file-pdf-box-outline", "file-pdf-outline", "file-percent", "file-percent-outline", "file-phone", "file-phone-outline", "file-plus", "file-plus-outline", "file-powerpoint", "file-powerpoint-box", "file-powerpoint-box-outline", "file-powerpoint-outline", "file-presentation-box", "file-question", "file-question-outline", "file-refresh", "file-refresh-outline", "file-remove", "file-remove-outline", "file-replace", "file-replace-outline", "file-restore", "file-restore-outline", "file-search", "file-search-outline", "file-send", "file-send-outline", "file-settings", "file-settings-outline", "file-star", "file-star-outline", "file-swap", "file-swap-outline", "file-sync", "file-sync-outline", "file-table", "file-table-box", "file-table-box-multiple", "file-table-box-multiple-outline", "file-table-box-outline", "file-table-outline", "file-tree", "file-undo", "file-undo-outline", "file-upload", "file-upload-outline", "file-video", "file-video-outline", "file-word", "file-word-box", "file-word-box-outline", "file-word-outline", "film", "filmstrip", "filmstrip-box", "filmstrip-box-multiple", "filmstrip-off", "filter", "filter-menu", "filter-menu-outline", "filter-minus", "filter-minus-outline", "filter-outline", "filter-plus", "filter-plus-outline", "filter-remove", "filter-remove-outline", "filter-variant", "filter-variant-minus", "filter-variant-plus", "filter-variant-remove", "finance", "find-replace", "fingerprint", "fingerprint-off", "fire", "fire-extinguisher", "fire-hydrant", "fire-hydrant-alert", "fire-hydrant-off", "fire-truck", "firebase", "firefox", "fireplace", "fireplace-off", "firework", "fish", "fishbowl", "fishbowl-outline", "fit-to-page", "fit-to-page-outline", "flag", "flag-checkered", "flag-minus", "flag-minus-outline", "flag-outline", "flag-plus", "flag-plus-outline", "flag-remove", "flag-remove-outline", "flag-triangle", "flag-variant", "flag-variant-outline", "flare", "flash", "flash-alert", "flash-alert-outline", "flash-auto", "flash-circle", "flash-off", "flash-outline", "flash-red-eye", "flashlight", "flashlight-off", "flask", "flask-empty", "flask-empty-minus", "flask-empty-minus-outline", "flask-empty-outline", "flask-empty-plus", "flask-empty-plus-outline", "flask-empty-remove", "flask-empty-remove-outline", "flask-minus", "flask-minus-outline", "flask-outline", "flask-plus", "flask-plus-outline", "flask-remove", "flask-remove-outline", "flask-round-bottom", "flask-round-bottom-empty", "flask-round-bottom-empty-outline", "flask-round-bottom-outline", "fleur-de-lis", "flip-horizontal", "flip-to-back", "flip-to-front", "flip-vertical", "floor-lamp", "floor-lamp-dual", "floor-lamp-variant", "floor-plan", "floppy", "floppy-variant", "flower", "flower-outline", "flower-poppy", "flower-tulip", "flower-tulip-outline", "focus-auto", "focus-field", "focus-field-horizontal", "focus-field-vertical", "folder", "folder-account", "folder-account-outline", "folder-alert", "folder-alert-outline", "folder-clock", "folder-clock-outline", "folder-cog", "folder-cog-outline", "folder-download", "folder-download-outline", "folder-edit", "folder-edit-outline", "folder-google-drive", "folder-heart", "folder-heart-outline", "folder-home", "folder-home-outline", "folder-image", "folder-information", "folder-information-outline", "folder-key", "folder-key-network", "folder-key-network-outline", "folder-key-outline", "folder-lock", "folder-lock-open", "folder-marker", "folder-marker-outline", "folder-move", "folder-move-outline", "folder-multiple", "folder-multiple-image", "folder-multiple-outline", "folder-music", "folder-music-outline", "folder-network", "folder-network-outline", "folder-open", "folder-open-outline", "folder-outline", "folder-plus", "folder-plus-outline", "folder-pound", "folder-pound-outline", "folder-refresh", "folder-refresh-outline", "folder-remove", "folder-remove-outline", "folder-search", "folder-search-outline", "folder-settings", "folder-settings-outline", "folder-star", "folder-star-outline", "folder-swap", "folder-swap-outline", "folder-sync", "folder-sync-outline", "folder-table", "folder-table-outline", "folder-text", "folder-text-outline", "folder-upload", "folder-upload-outline", "folder-zip", "folder-zip-outline", "font-awesome", "food", "food-apple", "food-apple-outline", "food-croissant", "food-fork-drink", "food-off", "food-variant", "foot-print", "football", "football-australian", "football-helmet", "forklift", "format-align-bottom", "format-align-center", "format-align-justify", "format-align-left", "format-align-middle", "format-align-right", "format-align-top", "format-annotation-minus", "format-annotation-plus", "format-bold", "format-clear", "format-color-fill", "format-color-highlight", "format-color-marker-cancel", "format-color-text", "format-columns", "format-float-center", "format-float-left", "format-float-none", "format-float-right", "format-font", "format-font-size-decrease", "format-font-size-increase", "format-header-1", "format-header-2", "format-header-3", "format-header-4", "format-header-5", "format-header-6", "format-header-decrease", "format-header-equal", "format-header-increase", "format-header-pound", "format-horizontal-align-center", "format-horizontal-align-left", "format-horizontal-align-right", "format-indent-decrease", "format-indent-increase", "format-italic", "format-letter-case", "format-letter-case-lower", "format-letter-case-upper", "format-letter-ends-with", "format-letter-matches", "format-letter-starts-with", "format-line-spacing", "format-line-style", "format-line-weight", "format-list-bulleted", "format-list-bulleted-square", "format-list-bulleted-triangle", "format-list-bulleted-type", "format-list-checkbox", "format-list-checks", "format-list-numbered", "format-list-numbered-rtl", "format-list-text", "format-overline", "format-page-break", "format-paint", "format-paragraph", "format-pilcrow", "format-quote-close", "format-quote-close-outline", "format-quote-open", "format-quote-open-outline", "format-rotate-90", "format-section", "format-size", "format-strikethrough", "format-strikethrough-variant", "format-subscript", "format-superscript", "format-text", "format-text-rotation-angle-down", "format-text-rotation-angle-up", "format-text-rotation-down", "format-text-rotation-down-vertical", "format-text-rotation-none", "format-text-rotation-up", "format-text-rotation-vertical", "format-text-variant", "format-text-wrapping-clip", "format-text-wrapping-overflow", "format-text-wrapping-wrap", "format-textbox", "format-textdirection-l-to-r", "format-textdirection-r-to-l", "format-title", "format-underline", "format-vertical-align-bottom", "format-vertical-align-center", "format-vertical-align-top", "format-wrap-inline", "format-wrap-square", "format-wrap-tight", "format-wrap-top-bottom", "forum", "forum-outline", "forward", "forwardburger", "fountain", "fountain-pen", "fountain-pen-tip", "freebsd", "frequently-asked-questions", "fridge", "fridge-alert", "fridge-alert-outline", "fridge-bottom", "fridge-off", "fridge-off-outline", "fridge-outline", "fridge-top", "fruit-cherries", "fruit-citrus", "fruit-grapes", "fruit-grapes-outline", "fruit-pineapple", "fruit-watermelon", "fuel", "fullscreen", "fullscreen-exit", "function", "function-variant", "furigana-horizontal", "furigana-vertical", "fuse", "fuse-blade", "gamepad", "gamepad-circle", "gamepad-circle-down", "gamepad-circle-left", "gamepad-circle-outline", "gamepad-circle-right", "gamepad-circle-up", "gamepad-down", "gamepad-left", "gamepad-right", "gamepad-round", "gamepad-round-down", "gamepad-round-left", "gamepad-round-outline", "gamepad-round-right", "gamepad-round-up", "gamepad-square", "gamepad-square-outline", "gamepad-up", "gamepad-variant", "gamepad-variant-outline", "gamma", "gantry-crane", "garage", "garage-alert", "garage-alert-variant", "garage-open", "garage-open-variant", "garage-variant", "gas-cylinder", "gas-station", "gas-station-outline", "gate", "gate-and", "gate-arrow-right", "gate-nand", "gate-nor", "gate-not", "gate-open", "gate-or", "gate-xnor", "gate-xor", "gatsby", "gauge", "gauge-empty", "gauge-full", "gauge-low", "gavel", "gender-female", "gender-male", "gender-male-female", "gender-male-female-variant", "gender-non-binary", "gender-transgender", "gentoo", "gesture", "gesture-double-tap", "gesture-pinch", "gesture-spread", "gesture-swipe", "gesture-swipe-down", "gesture-swipe-horizontal", "gesture-swipe-left", "gesture-swipe-right", "gesture-swipe-up", "gesture-swipe-vertical", "gesture-tap", "gesture-tap-box", "gesture-tap-button", "gesture-tap-hold", "gesture-two-double-tap", "gesture-two-tap", "ghost", "ghost-off", "gif", "gift", "gift-outline", "git", "github", "gitlab", "glass-cocktail", "glass-flute", "glass-mug", "glass-mug-variant", "glass-pint-outline", "glass-stange", "glass-tulip", "glass-wine", "glasses", "globe-light", "globe-model", "gmail", "gnome", "go-kart", "go-kart-track", "gog", "gold", "golf", "golf-cart", "golf-tee", "gondola", "goodreads", "google", "google-ads", "google-analytics", "google-assistant", "google-cardboard", "google-chrome", "google-circles", "google-circles-communities", "google-circles-extended", "google-circles-group", "google-classroom", "google-cloud", "google-controller", "google-controller-off", "google-downasaur", "google-drive", "google-earth", "google-fit", "google-glass", "google-hangouts", "google-home", "google-keep", "google-lens", "google-maps", "google-my-business", "google-nearby", "google-photos", "google-play", "google-plus", "google-podcast", "google-spreadsheet", "google-street-view", "google-translate", "gradient", "grain", "graph", "graph-outline", "graphql", "grave-stone", "grease-pencil", "greater-than", "greater-than-or-equal", "grid", "grid-large", "grid-off", "grill", "grill-outline", "group", "guitar-acoustic", "guitar-electric", "guitar-pick", "guitar-pick-outline", "guy-fawkes-mask", "hail", "hair-dryer", "hair-dryer-outline", "halloween", "hamburger", "hammer", "hammer-screwdriver", "hammer-wrench", "hand", "hand-heart", "hand-left", "hand-okay", "hand-peace", "hand-peace-variant", "hand-pointing-down", "hand-pointing-left", "hand-pointing-right", "hand-pointing-up", "hand-right", "hand-saw", "hand-water", "handball", "handcuffs", "handshake", "hanger", "hard-hat", "harddisk", "harddisk-plus", "harddisk-remove", "hat-fedora", "hazard-lights", "hdr", "hdr-off", "head", "head-alert", "head-alert-outline", "head-check", "head-check-outline", "head-cog", "head-cog-outline", "head-dots-horizontal", "head-dots-horizontal-outline", "head-flash", "head-flash-outline", "head-heart", "head-heart-outline", "head-lightbulb", "head-lightbulb-outline", "head-minus", "head-minus-outline", "head-outline", "head-plus", "head-plus-outline", "head-question", "head-question-outline", "head-remove", "head-remove-outline", "head-snowflake", "head-snowflake-outline", "head-sync", "head-sync-outline", "headphones", "headphones-bluetooth", "headphones-box", "headphones-off", "headphones-settings", "headset", "headset-dock", "headset-off", "heart", "heart-box", "heart-box-outline", "heart-broken", "heart-broken-outline", "heart-circle", "heart-circle-outline", "heart-flash", "heart-half", "heart-half-full", "heart-half-outline", "heart-multiple", "heart-multiple-outline", "heart-off", "heart-outline", "heart-pulse", "helicopter", "help", "help-box", "help-circle", "help-circle-outline", "help-network", "help-network-outline", "help-rhombus", "help-rhombus-outline", "hexadecimal", "hexagon", "hexagon-multiple", "hexagon-multiple-outline", "hexagon-outline", "hexagon-slice-1", "hexagon-slice-2", "hexagon-slice-3", "hexagon-slice-4", "hexagon-slice-5", "hexagon-slice-6", "hexagram", "hexagram-outline", "high-definition", "high-definition-box", "highway", "hiking", "hinduism", "history", "hockey-puck", "hockey-sticks", "hololens", "home", "home-account", "home-alert", "home-analytics", "home-assistant", "home-automation", "home-circle", "home-circle-outline", "home-city", "home-city-outline", "home-currency-usd", "home-edit", "home-edit-outline", "home-export-outline", "home-flood", "home-floor-0", "home-floor-1", "home-floor-2", "home-floor-3", "home-floor-a", "home-floor-b", "home-floor-g", "home-floor-l", "home-floor-negative-1", "home-group", "home-heart", "home-import-outline", "home-lightbulb", "home-lightbulb-outline", "home-lock", "home-lock-open", "home-map-marker", "home-minus", "home-modern", "home-outline", "home-plus", "home-remove", "home-roof", "home-search", "home-search-outline", "home-thermometer", "home-thermometer-outline", "home-variant", "home-variant-outline", "hook", "hook-off", "hops", "horizontal-rotate-clockwise", "horizontal-rotate-counterclockwise", "horseshoe", "hospital", "hospital-box", "hospital-box-outline", "hospital-building", "hospital-marker", "hot-tub", "hubspot", "hulu", "human", "human-baby-changing-table", "human-child", "human-female", "human-female-boy", "human-female-female", "human-female-girl", "human-greeting", "human-handsdown", "human-handsup", "human-male", "human-male-boy", "human-male-child", "human-male-female", "human-male-girl", "human-male-height", "human-male-height-variant", "human-male-male", "human-pregnant", "human-wheelchair", "humble-bundle", "hvac", "hydraulic-oil-level", "hydraulic-oil-temperature", "hydro-power", "ice-cream", "ice-cream-off", "ice-pop", "id-card", "identifier", "ideogram-cjk", "ideogram-cjk-variant", "iframe", "iframe-array", "iframe-array-outline", "iframe-braces", "iframe-braces-outline", "iframe-outline", "iframe-parentheses", "iframe-parentheses-outline", "iframe-variable", "iframe-variable-outline", "image", "image-album", "image-area", "image-area-close", "image-auto-adjust", "image-broken", "image-broken-variant", "image-edit", "image-edit-outline", "image-filter-black-white", "image-filter-center-focus", "image-filter-center-focus-strong", "image-filter-center-focus-strong-outline", "image-filter-center-focus-weak", "image-filter-drama", "image-filter-frames", "image-filter-hdr", "image-filter-none", "image-filter-tilt-shift", "image-filter-vintage", "image-frame", "image-move", "image-multiple", "image-multiple-outline", "image-off", "image-off-outline", "image-outline", "image-plus", "image-search", "image-search-outline", "image-size-select-actual", "image-size-select-large", "image-size-select-small", "import", "inbox", "inbox-arrow-down", "inbox-arrow-down-outline", "inbox-arrow-up", "inbox-arrow-up-outline", "inbox-full", "inbox-full-outline", "inbox-multiple", "inbox-multiple-outline", "inbox-outline", "incognito", "incognito-off", "infinity", "information", "information-outline", "information-variant", "instagram", "instrument-triangle", "invert-colors", "invert-colors-off", "iobroker", "ip", "ip-network", "ip-network-outline", "ipod", "islam", "island", "iv-bag", "jabber", "jeepney", "jellyfish", "jellyfish-outline", "jira", "jquery", "jsfiddle", "judaism", "jump-rope", "kabaddi", "karate", "keg", "kettle", "kettle-alert", "kettle-alert-outline", "kettle-off", "kettle-off-outline", "kettle-outline", "kettle-steam", "kettle-steam-outline", "kettlebell", "key", "key-arrow-right", "key-change", "key-link", "key-minus", "key-outline", "key-plus", "key-remove", "key-star", "key-variant", "key-wireless", "keyboard", "keyboard-backspace", "keyboard-caps", "keyboard-close", "keyboard-esc", "keyboard-f1", "keyboard-f10", "keyboard-f11", "keyboard-f12", "keyboard-f2", "keyboard-f3", "keyboard-f4", "keyboard-f5", "keyboard-f6", "keyboard-f7", "keyboard-f8", "keyboard-f9", "keyboard-off", "keyboard-off-outline", "keyboard-outline", "keyboard-return", "keyboard-settings", "keyboard-settings-outline", "keyboard-space", "keyboard-tab", "keyboard-variant", "khanda", "kickstarter", "klingon", "knife", "knife-military", "kodi", "kubernetes", "label", "label-multiple", "label-multiple-outline", "label-off", "label-off-outline", "label-outline", "label-percent", "label-percent-outline", "label-variant", "label-variant-outline", "ladybug", "lambda", "lamp", "lan", "lan-check", "lan-connect", "lan-disconnect", "lan-pending", "language-c", "language-cpp", "language-csharp", "language-css3", "language-fortran", "language-go", "language-haskell", "language-html5", "language-java", "language-javascript", "language-kotlin", "language-lua", "language-markdown", "language-markdown-outline", "language-php", "language-python", "language-r", "language-ruby", "language-ruby-on-rails", "language-swift", "language-typescript", "language-xaml", "laptop", "laptop-chromebook", "laptop-mac", "laptop-off", "laptop-windows", "laravel", "lasso", "lastpass", "latitude", "launch", "lava-lamp", "layers", "layers-minus", "layers-off", "layers-off-outline", "layers-outline", "layers-plus", "layers-remove", "layers-search", "layers-search-outline", "layers-triple", "layers-triple-outline", "lead-pencil", "leaf", "leaf-maple", "leaf-maple-off", "leaf-off", "leak", "leak-off", "led-off", "led-on", "led-outline", "led-strip", "led-strip-variant", "led-variant-off", "led-variant-on", "led-variant-outline", "leek", "less-than", "less-than-or-equal", "library", "library-shelves", "license", "lifebuoy", "light-switch", "lightbulb", "lightbulb-cfl", "lightbulb-cfl-off", "lightbulb-cfl-spiral", "lightbulb-cfl-spiral-off", "lightbulb-group", "lightbulb-group-off", "lightbulb-group-off-outline", "lightbulb-group-outline", "lightbulb-multiple", "lightbulb-multiple-off", "lightbulb-multiple-off-outline", "lightbulb-multiple-outline", "lightbulb-off", "lightbulb-off-outline", "lightbulb-on", "lightbulb-on-outline", "lightbulb-outline", "lighthouse", "lighthouse-on", "link", "link-box", "link-box-outline", "link-box-variant", "link-box-variant-outline", "link-lock", "link-off", "link-plus", "link-variant", "link-variant-minus", "link-variant-off", "link-variant-plus", "link-variant-remove", "linkedin", "linux", "linux-mint", "lipstick", "litecoin", "loading", "location-enter", "location-exit", "lock", "lock-alert", "lock-check", "lock-clock", "lock-open", "lock-open-alert", "lock-open-check", "lock-open-outline", "lock-open-variant", "lock-open-variant-outline", "lock-outline", "lock-pattern", "lock-plus", "lock-question", "lock-reset", "lock-smart", "locker", "locker-multiple", "login", "login-variant", "logout", "logout-variant", "longitude", "looks", "loupe", "lumx", "lungs", "magnet", "magnet-on", "magnify", "magnify-close", "magnify-minus", "magnify-minus-cursor", "magnify-minus-outline", "magnify-plus", "magnify-plus-cursor", "magnify-plus-outline", "magnify-remove-cursor", "magnify-remove-outline", "magnify-scan", "mail", "mailbox", "mailbox-open", "mailbox-open-outline", "mailbox-open-up", "mailbox-open-up-outline", "mailbox-outline", "mailbox-up", "mailbox-up-outline", "map", "map-check", "map-check-outline", "map-clock", "map-clock-outline", "map-legend", "map-marker", "map-marker-alert", "map-marker-alert-outline", "map-marker-check", "map-marker-check-outline", "map-marker-circle", "map-marker-distance", "map-marker-down", "map-marker-left", "map-marker-left-outline", "map-marker-minus", "map-marker-minus-outline", "map-marker-multiple", "map-marker-multiple-outline", "map-marker-off", "map-marker-off-outline", "map-marker-outline", "map-marker-path", "map-marker-plus", "map-marker-plus-outline", "map-marker-question", "map-marker-question-outline", "map-marker-radius", "map-marker-radius-outline", "map-marker-remove", "map-marker-remove-outline", "map-marker-remove-variant", "map-marker-right", "map-marker-right-outline", "map-marker-up", "map-minus", "map-outline", "map-plus", "map-search", "map-search-outline", "mapbox", "margin", "marker", "marker-cancel", "marker-check", "mastodon", "material-design", "material-ui", "math-compass", "math-cos", "math-integral", "math-integral-box", "math-log", "math-norm", "math-norm-box", "math-sin", "math-tan", "matrix", "medal", "medal-outline", "medical-bag", "meditation", "memory", "menu", "menu-down", "menu-down-outline", "menu-left", "menu-left-outline", "menu-open", "menu-right", "menu-right-outline", "menu-swap", "menu-swap-outline", "menu-up", "menu-up-outline", "merge", "message", "message-alert", "message-alert-outline", "message-arrow-left", "message-arrow-left-outline", "message-arrow-right", "message-arrow-right-outline", "message-bulleted", "message-bulleted-off", "message-cog", "message-cog-outline", "message-draw", "message-image", "message-image-outline", "message-lock", "message-lock-outline", "message-minus", "message-minus-outline", "message-outline", "message-plus", "message-plus-outline", "message-processing", "message-processing-outline", "message-reply", "message-reply-text", "message-settings", "message-settings-outline", "message-text", "message-text-clock", "message-text-clock-outline", "message-text-lock", "message-text-lock-outline", "message-text-outline", "message-video", "meteor", "metronome", "metronome-tick", "micro-sd", "microphone", "microphone-minus", "microphone-off", "microphone-outline", "microphone-plus", "microphone-settings", "microphone-variant", "microphone-variant-off", "microscope", "microsoft", "microsoft-access", "microsoft-azure", "microsoft-azure-devops", "microsoft-bing", "microsoft-dynamics-365", "microsoft-edge", "microsoft-edge-legacy", "microsoft-excel", "microsoft-internet-explorer", "microsoft-office", "microsoft-onedrive", "microsoft-onenote", "microsoft-outlook", "microsoft-powerpoint", "microsoft-sharepoint", "microsoft-teams", "microsoft-visual-studio", "microsoft-visual-studio-code", "microsoft-windows", "microsoft-windows-classic", "microsoft-word", "microsoft-xbox", "microsoft-xbox-controller", "microsoft-xbox-controller-battery-alert", "microsoft-xbox-controller-battery-charging", "microsoft-xbox-controller-battery-empty", "microsoft-xbox-controller-battery-full", "microsoft-xbox-controller-battery-low", "microsoft-xbox-controller-battery-medium", "microsoft-xbox-controller-battery-unknown", "microsoft-xbox-controller-menu", "microsoft-xbox-controller-off", "microsoft-xbox-controller-view", "microsoft-yammer", "microwave", "middleware", "middleware-outline", "midi", "midi-port", "mine", "minecraft", "mini-sd", "minidisc", "minus", "minus-box", "minus-box-multiple", "minus-box-multiple-outline", "minus-box-outline", "minus-circle", "minus-circle-multiple", "minus-circle-multiple-outline", "minus-circle-outline", "minus-network", "minus-network-outline", "mirror", "mixed-martial-arts", "mixed-reality", "mixer", "molecule", "molecule-co", "molecule-co2", "monitor", "monitor-cellphone", "monitor-cellphone-star", "monitor-clean", "monitor-dashboard", "monitor-edit", "monitor-eye", "monitor-lock", "monitor-multiple", "monitor-off", "monitor-screenshot", "monitor-speaker", "monitor-speaker-off", "monitor-star", "moon-first-quarter", "moon-full", "moon-last-quarter", "moon-new", "moon-waning-crescent", "moon-waning-gibbous", "moon-waxing-crescent", "moon-waxing-gibbous", "moped", "more", "mother-heart", "mother-nurse", "motion-sensor", "motorbike", "mouse", "mouse-bluetooth", "mouse-off", "mouse-variant", "mouse-variant-off", "move-resize", "move-resize-variant", "movie", "movie-edit", "movie-edit-outline", "movie-filter", "movie-filter-outline", "movie-open", "movie-open-outline", "movie-outline", "movie-roll", "movie-search", "movie-search-outline", "muffin", "multiplication", "multiplication-box", "mushroom", "mushroom-outline", "music", "music-accidental-double-flat", "music-accidental-double-sharp", "music-accidental-flat", "music-accidental-natural", "music-accidental-sharp", "music-box", "music-box-multiple", "music-box-multiple-outline", "music-box-outline", "music-circle", "music-circle-outline", "music-clef-alto", "music-clef-bass", "music-clef-treble", "music-note", "music-note-bluetooth", "music-note-bluetooth-off", "music-note-eighth", "music-note-eighth-dotted", "music-note-half", "music-note-half-dotted", "music-note-off", "music-note-off-outline", "music-note-outline", "music-note-plus", "music-note-quarter", "music-note-quarter-dotted", "music-note-sixteenth", "music-note-sixteenth-dotted", "music-note-whole", "music-note-whole-dotted", "music-off", "music-rest-eighth", "music-rest-half", "music-rest-quarter", "music-rest-sixteenth", "music-rest-whole", "nail", "nas", "nativescript", "nature", "nature-people", "navigation", "near-me", "necklace", "needle", "netflix", "network", "network-off", "network-off-outline", "network-outline", "network-strength-1", "network-strength-1-alert", "network-strength-2", "network-strength-2-alert", "network-strength-3", "network-strength-3-alert", "network-strength-4", "network-strength-4-alert", "network-strength-off", "network-strength-off-outline", "network-strength-outline", "new-box", "newspaper", "newspaper-minus", "newspaper-plus", "newspaper-variant", "newspaper-variant-multiple", "newspaper-variant-multiple-outline", "newspaper-variant-outline", "nfc", "nfc-search-variant", "nfc-tap", "nfc-variant", "nfc-variant-off", "ninja", "nintendo-game-boy", "nintendo-switch", "nintendo-wii", "nintendo-wiiu", "nix", "nodejs", "noodles", "not-equal", "not-equal-variant", "note", "note-multiple", "note-multiple-outline", "note-outline", "note-plus", "note-plus-outline", "note-text", "note-text-outline", "notebook", "notebook-multiple", "notebook-outline", "notification-clear-all", "npm", "nuke", "null", "numeric", "numeric-0", "numeric-0-box", "numeric-0-box-multiple", "numeric-0-box-multiple-outline", "numeric-0-box-outline", "numeric-0-circle", "numeric-0-circle-outline", "numeric-1", "numeric-1-box", "numeric-1-box-multiple", "numeric-1-box-multiple-outline", "numeric-1-box-outline", "numeric-1-circle", "numeric-1-circle-outline", "numeric-10", "numeric-10-box", "numeric-10-box-multiple", "numeric-10-box-multiple-outline", "numeric-10-box-outline", "numeric-10-circle", "numeric-10-circle-outline", "numeric-2", "numeric-2-box", "numeric-2-box-multiple", "numeric-2-box-multiple-outline", "numeric-2-box-outline", "numeric-2-circle", "numeric-2-circle-outline", "numeric-3", "numeric-3-box", "numeric-3-box-multiple", "numeric-3-box-multiple-outline", "numeric-3-box-outline", "numeric-3-circle", "numeric-3-circle-outline", "numeric-4", "numeric-4-box", "numeric-4-box-multiple", "numeric-4-box-multiple-outline", "numeric-4-box-outline", "numeric-4-circle", "numeric-4-circle-outline", "numeric-5", "numeric-5-box", "numeric-5-box-multiple", "numeric-5-box-multiple-outline", "numeric-5-box-outline", "numeric-5-circle", "numeric-5-circle-outline", "numeric-6", "numeric-6-box", "numeric-6-box-multiple", "numeric-6-box-multiple-outline", "numeric-6-box-outline", "numeric-6-circle", "numeric-6-circle-outline", "numeric-7", "numeric-7-box", "numeric-7-box-multiple", "numeric-7-box-multiple-outline", "numeric-7-box-outline", "numeric-7-circle", "numeric-7-circle-outline", "numeric-8", "numeric-8-box", "numeric-8-box-multiple", "numeric-8-box-multiple-outline", "numeric-8-box-outline", "numeric-8-circle", "numeric-8-circle-outline", "numeric-9", "numeric-9-box", "numeric-9-box-multiple", "numeric-9-box-multiple-outline", "numeric-9-box-outline", "numeric-9-circle", "numeric-9-circle-outline", "numeric-9-plus", "numeric-9-plus-box", "numeric-9-plus-box-multiple", "numeric-9-plus-box-multiple-outline", "numeric-9-plus-box-outline", "numeric-9-plus-circle", "numeric-9-plus-circle-outline", "numeric-negative-1", "nut", "nutrition", "nuxt", "oar", "ocarina", "oci", "ocr", "octagon", "octagon-outline", "octagram", "octagram-outline", "odnoklassniki", "offer", "office-building", "oil", "oil-lamp", "oil-level", "oil-temperature", "omega", "one-up", "onepassword", "opacity", "open-in-app", "open-in-new", "open-source-initiative", "openid", "opera", "orbit", "order-alphabetical-ascending", "order-alphabetical-descending", "order-bool-ascending", "order-bool-ascending-variant", "order-bool-descending", "order-bool-descending-variant", "order-numeric-ascending", "order-numeric-descending", "origin", "ornament", "ornament-variant", "outdoor-lamp", "overscan", "owl", "pac-man", "package", "package-down", "package-up", "package-variant", "package-variant-closed", "page-first", "page-last", "page-layout-body", "page-layout-footer", "page-layout-header", "page-layout-header-footer", "page-layout-sidebar-left", "page-layout-sidebar-right", "page-next", "page-next-outline", "page-previous", "page-previous-outline", "palette", "palette-advanced", "palette-outline", "palette-swatch", "palette-swatch-outline", "palm-tree", "pan", "pan-bottom-left", "pan-bottom-right", "pan-down", "pan-horizontal", "pan-left", "pan-right", "pan-top-left", "pan-top-right", "pan-up", "pan-vertical", "panda", "pandora", "panorama", "panorama-fisheye", "panorama-horizontal", "panorama-vertical", "panorama-wide-angle", "paper-cut-vertical", "paper-roll", "paper-roll-outline", "paperclip", "parachute", "parachute-outline", "parking", "party-popper", "passport", "passport-biometric", "pasta", "patio-heater", "patreon", "pause", "pause-circle", "pause-circle-outline", "pause-octagon", "pause-octagon-outline", "paw", "paw-off", "pdf-box", "peace", "peanut", "peanut-off", "peanut-off-outline", "peanut-outline", "pen", "pen-lock", "pen-minus", "pen-off", "pen-plus", "pen-remove", "pencil", "pencil-box", "pencil-box-multiple", "pencil-box-multiple-outline", "pencil-box-outline", "pencil-circle", "pencil-circle-outline", "pencil-lock", "pencil-lock-outline", "pencil-minus", "pencil-minus-outline", "pencil-off", "pencil-off-outline", "pencil-outline", "pencil-plus", "pencil-plus-outline", "pencil-remove", "pencil-remove-outline", "pencil-ruler", "penguin", "pentagon", "pentagon-outline", "percent", "percent-outline", "periodic-table", "perspective-less", "perspective-more", "pharmacy", "phone", "phone-alert", "phone-alert-outline", "phone-bluetooth", "phone-bluetooth-outline", "phone-cancel", "phone-cancel-outline", "phone-check", "phone-check-outline", "phone-classic", "phone-classic-off", "phone-forward", "phone-forward-outline", "phone-hangup", "phone-hangup-outline", "phone-in-talk", "phone-in-talk-outline", "phone-incoming", "phone-incoming-outline", "phone-lock", "phone-lock-outline", "phone-log", "phone-log-outline", "phone-message", "phone-message-outline", "phone-minus", "phone-minus-outline", "phone-missed", "phone-missed-outline", "phone-off", "phone-off-outline", "phone-outgoing", "phone-outgoing-outline", "phone-outline", "phone-paused", "phone-paused-outline", "phone-plus", "phone-plus-outline", "phone-return", "phone-return-outline", "phone-ring", "phone-ring-outline", "phone-rotate-landscape", "phone-rotate-portrait", "phone-settings", "phone-settings-outline", "phone-voip", "pi", "pi-box", "pi-hole", "piano", "pickaxe", "picture-in-picture-bottom-right", "picture-in-picture-bottom-right-outline", "picture-in-picture-top-right", "picture-in-picture-top-right-outline", "pier", "pier-crane", "pig", "pig-variant", "piggy-bank", "pill", "pillar", "pin", "pin-off", "pin-off-outline", "pin-outline", "pine-tree", "pine-tree-box", "pinterest", "pinwheel", "pinwheel-outline", "pipe", "pipe-disconnected", "pipe-leak", "pipe-wrench", "pirate", "pistol", "piston", "pizza", "play", "play-box", "play-box-multiple", "play-box-outline", "play-circle", "play-circle-outline", "play-network", "play-network-outline", "play-outline", "play-pause", "play-protected-content", "play-speed", "playlist-check", "playlist-edit", "playlist-minus", "playlist-music", "playlist-music-outline", "playlist-play", "playlist-plus", "playlist-remove", "playlist-star", "plex", "plus", "plus-box", "plus-box-multiple", "plus-box-multiple-outline", "plus-box-outline", "plus-circle", "plus-circle-multiple", "plus-circle-multiple-outline", "plus-circle-outline", "plus-minus", "plus-minus-box", "plus-network", "plus-network-outline", "plus-one", "plus-outline", "plus-thick", "podcast", "podium", "podium-bronze", "podium-gold", "podium-silver", "point-of-sale", "pokeball", "pokemon-go", "poker-chip", "polaroid", "police-badge", "police-badge-outline", "poll", "poll-box", "poll-box-outline", "polymer", "pool", "popcorn", "post", "post-outline", "postage-stamp", "pot", "pot-mix", "pot-mix-outline", "pot-outline", "pot-steam", "pot-steam-outline", "pound", "pound-box", "pound-box-outline", "power", "power-cycle", "power-off", "power-on", "power-plug", "power-plug-off", "power-settings", "power-sleep", "power-socket", "power-socket-au", "power-socket-de", "power-socket-eu", "power-socket-fr", "power-socket-jp", "power-socket-uk", "power-socket-us", "power-standby", "powershell", "prescription", "presentation", "presentation-play", "printer", "printer-3d", "printer-3d-nozzle", "printer-3d-nozzle-alert", "printer-3d-nozzle-alert-outline", "printer-3d-nozzle-outline", "printer-alert", "printer-check", "printer-off", "printer-pos", "printer-settings", "printer-wireless", "priority-high", "priority-low", "professional-hexagon", "progress-alert", "progress-check", "progress-clock", "progress-close", "progress-download", "progress-upload", "progress-wrench", "projector", "projector-screen", "propane-tank", "propane-tank-outline", "protocol", "publish", "pulse", "pumpkin", "purse", "purse-outline", "puzzle", "puzzle-outline", "qi", "qqchat", "qrcode", "qrcode-edit", "qrcode-minus", "qrcode-plus", "qrcode-remove", "qrcode-scan", "quadcopter", "quality-high", "quality-low", "quality-medium", "quora", "rabbit", "racing-helmet", "racquetball", "radar", "radiator", "radiator-disabled", "radiator-off", "radio", "radio-am", "radio-fm", "radio-handheld", "radio-off", "radio-tower", "radioactive", "radioactive-off", "radiobox-blank", "radiobox-marked", "radius", "radius-outline", "railroad-light", "raspberry-pi", "ray-end", "ray-end-arrow", "ray-start", "ray-start-arrow", "ray-start-end", "ray-vertex", "react", "read", "receipt", "record", "record-circle", "record-circle-outline", "record-player", "record-rec", "rectangle", "rectangle-outline", "recycle", "recycle-variant", "reddit", "redhat", "redo", "redo-variant", "reflect-horizontal", "reflect-vertical", "refresh", "refresh-circle", "regex", "registered-trademark", "relative-scale", "reload", "reload-alert", "reminder", "remote", "remote-desktop", "remote-off", "remote-tv", "remote-tv-off", "rename-box", "reorder-horizontal", "reorder-vertical", "repeat", "repeat-off", "repeat-once", "replay", "reply", "reply-all", "reply-all-outline", "reply-circle", "reply-outline", "reproduction", "resistor", "resistor-nodes", "resize", "resize-bottom-right", "responsive", "restart", "restart-alert", "restart-off", "restore", "restore-alert", "rewind", "rewind-10", "rewind-30", "rewind-5", "rewind-outline", "rhombus", "rhombus-medium", "rhombus-outline", "rhombus-split", "ribbon", "rice", "ring", "rivet", "road", "road-variant", "robber", "robot", "robot-industrial", "robot-mower", "robot-mower-outline", "robot-vacuum", "robot-vacuum-variant", "rocket", "rocket-outline", "rodent", "roller-skate", "roller-skate-off", "rollerblade", "rollerblade-off", "rollupjs", "roman-numeral-1", "roman-numeral-10", "roman-numeral-2", "roman-numeral-3", "roman-numeral-4", "roman-numeral-5", "roman-numeral-6", "roman-numeral-7", "roman-numeral-8", "roman-numeral-9", "room-service", "room-service-outline", "rotate-3d", "rotate-3d-variant", "rotate-left", "rotate-left-variant", "rotate-orbit", "rotate-right", "rotate-right-variant", "rounded-corner", "router", "router-network", "router-wireless", "router-wireless-settings", "routes", "routes-clock", "rowing", "rss", "rss-box", "rss-off", "rugby", "ruler", "ruler-square", "ruler-square-compass", "run", "run-fast", "rv-truck", "sack", "sack-percent", "safe", "safe-square", "safe-square-outline", "safety-goggles", "sail-boat", "sale", "salesforce", "sass", "satellite", "satellite-uplink", "satellite-variant", "sausage", "saw-blade", "saxophone", "scale", "scale-balance", "scale-bathroom", "scale-off", "scanner", "scanner-off", "scatter-plot", "scatter-plot-outline", "school", "school-outline", "scissors-cutting", "scooter", "scoreboard", "scoreboard-outline", "screen-rotation", "screen-rotation-lock", "screw-flat-top", "screw-lag", "screw-machine-flat-top", "screw-machine-round-top", "screw-round-top", "screwdriver", "script", "script-outline", "script-text", "script-text-outline", "sd", "seal", "seal-variant", "search-web", "seat", "seat-flat", "seat-flat-angled", "seat-individual-suite", "seat-legroom-extra", "seat-legroom-normal", "seat-legroom-reduced", "seat-outline", "seat-passenger", "seat-recline-extra", "seat-recline-normal", "seatbelt", "security", "security-network", "seed", "seed-outline", "segment", "select", "select-all", "select-color", "select-compare", "select-drag", "select-group", "select-inverse", "select-marker", "select-multiple", "select-multiple-marker", "select-off", "select-place", "select-search", "selection", "selection-drag", "selection-ellipse", "selection-ellipse-arrow-inside", "selection-marker", "selection-multiple-marker", "selection-mutliple", "selection-off", "selection-search", "semantic-web", "send", "send-check", "send-check-outline", "send-circle", "send-circle-outline", "send-clock", "send-clock-outline", "send-lock", "send-lock-outline", "send-outline", "serial-port", "server", "server-minus", "server-network", "server-network-off", "server-off", "server-plus", "server-remove", "server-security", "set-all", "set-center", "set-center-right", "set-left", "set-left-center", "set-left-right", "set-none", "set-right", "set-top-box", "settings-helper", "shaker", "shaker-outline", "shape", "shape-circle-plus", "shape-outline", "shape-oval-plus", "shape-plus", "shape-polygon-plus", "shape-rectangle-plus", "shape-square-plus", "share", "share-all", "share-all-outline", "share-circle", "share-off", "share-off-outline", "share-outline", "share-variant", "sheep", "shield", "shield-account", "shield-account-outline", "shield-airplane", "shield-airplane-outline", "shield-alert", "shield-alert-outline", "shield-car", "shield-check", "shield-check-outline", "shield-cross", "shield-cross-outline", "shield-edit", "shield-edit-outline", "shield-half", "shield-half-full", "shield-home", "shield-home-outline", "shield-key", "shield-key-outline", "shield-link-variant", "shield-link-variant-outline", "shield-lock", "shield-lock-outline", "shield-off", "shield-off-outline", "shield-outline", "shield-plus", "shield-plus-outline", "shield-refresh", "shield-refresh-outline", "shield-remove", "shield-remove-outline", "shield-search", "shield-star", "shield-star-outline", "shield-sun", "shield-sun-outline", "shield-sync", "shield-sync-outline", "ship-wheel", "shoe-formal", "shoe-heel", "shoe-print", "shopping", "shopping-music", "shopping-outline", "shopping-search", "shovel", "shovel-off", "shower", "shower-head", "shredder", "shuffle", "shuffle-disabled", "shuffle-variant", "shuriken", "sigma", "sigma-lower", "sign-caution", "sign-direction", "sign-direction-minus", "sign-direction-plus", "sign-direction-remove", "sign-real-estate", "sign-text", "signal", "signal-2g", "signal-3g", "signal-4g", "signal-5g", "signal-cellular-1", "signal-cellular-2", "signal-cellular-3", "signal-cellular-outline", "signal-distance-variant", "signal-hspa", "signal-hspa-plus", "signal-off", "signal-variant", "signature", "signature-freehand", "signature-image", "signature-text", "silo", "silverware", "silverware-clean", "silverware-fork", "silverware-fork-knife", "silverware-spoon", "silverware-variant", "sim", "sim-alert", "sim-off", "simple-icons", "sina-weibo", "sitemap", "size-l", "size-m", "size-s", "size-xl", "size-xs", "size-xxl", "size-xxs", "size-xxxl", "skate", "skew-less", "skew-more", "ski", "ski-cross-country", "ski-water", "skip-backward", "skip-backward-outline", "skip-forward", "skip-forward-outline", "skip-next", "skip-next-circle", "skip-next-circle-outline", "skip-next-outline", "skip-previous", "skip-previous-circle", "skip-previous-circle-outline", "skip-previous-outline", "skull", "skull-crossbones", "skull-crossbones-outline", "skull-outline", "skype", "skype-business", "slack", "slash-forward", "slash-forward-box", "sleep", "sleep-off", "slope-downhill", "slope-uphill", "slot-machine", "slot-machine-outline", "smart-card", "smart-card-outline", "smart-card-reader", "smart-card-reader-outline", "smog", "smoke-detector", "smoking", "smoking-off", "snapchat", "snowboard", "snowflake", "snowflake-alert", "snowflake-melt", "snowflake-variant", "snowman", "soccer", "soccer-field", "sofa", "solar-panel", "solar-panel-large", "solar-power", "soldering-iron", "solid", "sony-playstation", "sort", "sort-alphabetical-ascending", "sort-alphabetical-ascending-variant", "sort-alphabetical-descending", "sort-alphabetical-descending-variant", "sort-alphabetical-variant", "sort-ascending", "sort-bool-ascending", "sort-bool-ascending-variant", "sort-bool-descending", "sort-bool-descending-variant", "sort-descending", "sort-numeric-ascending", "sort-numeric-ascending-variant", "sort-numeric-descending", "sort-numeric-descending-variant", "sort-numeric-variant", "sort-reverse-variant", "sort-variant", "sort-variant-lock", "sort-variant-lock-open", "sort-variant-remove", "soundcloud", "source-branch", "source-commit", "source-commit-end", "source-commit-end-local", "source-commit-local", "source-commit-next-local", "source-commit-start", "source-commit-start-next-local", "source-fork", "source-merge", "source-pull", "source-repository", "source-repository-multiple", "soy-sauce", "spa", "spa-outline", "space-invaders", "space-station", "spade", "speaker", "speaker-bluetooth", "speaker-multiple", "speaker-off", "speaker-wireless", "speedometer", "speedometer-medium", "speedometer-slow", "spellcheck", "spider", "spider-thread", "spider-web", "spotify", "spotlight", "spotlight-beam", "spray", "spray-bottle", "sprinkler", "sprinkler-variant", "sprout", "sprout-outline", "square", "square-edit-outline", "square-medium", "square-medium-outline", "square-off", "square-off-outline", "square-outline", "square-root", "square-root-box", "square-small", "squeegee", "ssh", "stack-exchange", "stack-overflow", "stackpath", "stadium", "stadium-variant", "stairs", "stairs-box", "stairs-down", "stairs-up", "stamper", "standard-definition", "star", "star-box", "star-box-multiple", "star-box-multiple-outline", "star-box-outline", "star-circle", "star-circle-outline", "star-face", "star-four-points", "star-four-points-outline", "star-half", "star-half-full", "star-off", "star-outline", "star-three-points", "star-three-points-outline", "state-machine", "steam", "steering", "steering-off", "step-backward", "step-backward-2", "step-forward", "step-forward-2", "stethoscope", "sticker", "sticker-alert", "sticker-alert-outline", "sticker-check", "sticker-check-outline", "sticker-circle-outline", "sticker-emoji", "sticker-minus", "sticker-minus-outline", "sticker-outline", "sticker-plus", "sticker-plus-outline", "sticker-remove", "sticker-remove-outline", "stocking", "stomach", "stop", "stop-circle", "stop-circle-outline", "store", "store-24-hour", "store-outline", "storefront", "storefront-outline", "stove", "strategy", "stretch-to-page", "stretch-to-page-outline", "string-lights", "string-lights-off", "subdirectory-arrow-left", "subdirectory-arrow-right", "subtitles", "subtitles-outline", "subway", "subway-alert-variant", "subway-variant", "summit", "sunglasses", "surround-sound", "surround-sound-2-0", "surround-sound-3-1", "surround-sound-5-1", "surround-sound-7-1", "svg", "swap-horizontal", "swap-horizontal-bold", "swap-horizontal-circle", "swap-horizontal-circle-outline", "swap-horizontal-variant", "swap-vertical", "swap-vertical-bold", "swap-vertical-circle", "swap-vertical-circle-outline", "swap-vertical-variant", "swim", "switch", "sword", "sword-cross", "syllabary-hangul", "syllabary-hiragana", "syllabary-katakana", "syllabary-katakana-half-width", "symfony", "sync", "sync-alert", "sync-circle", "sync-off", "tab", "tab-minus", "tab-plus", "tab-remove", "tab-unselected", "table", "table-border", "table-chair", "table-column", "table-column-plus-after", "table-column-plus-before", "table-column-remove", "table-column-width", "table-edit", "table-eye", "table-furniture", "table-headers-eye", "table-headers-eye-off", "table-large", "table-large-plus", "table-large-remove", "table-merge-cells", "table-of-contents", "table-plus", "table-refresh", "table-remove", "table-row", "table-row-height", "table-row-plus-after", "table-row-plus-before", "table-row-remove", "table-search", "table-settings", "table-sync", "table-tennis", "tablet", "tablet-android", "tablet-cellphone", "tablet-dashboard", "tablet-ipad", "taco", "tag", "tag-faces", "tag-heart", "tag-heart-outline", "tag-minus", "tag-minus-outline", "tag-multiple", "tag-multiple-outline", "tag-off", "tag-off-outline", "tag-outline", "tag-plus", "tag-plus-outline", "tag-remove", "tag-remove-outline", "tag-text", "tag-text-outline", "tank", "tanker-truck", "tape-measure", "target", "target-account", "target-variant", "taxi", "tea", "tea-outline", "teach", "teamviewer", "telegram", "telescope", "television", "television-ambient-light", "television-box", "television-classic", "television-classic-off", "television-clean", "television-guide", "television-off", "television-pause", "television-play", "television-stop", "temperature-celsius", "temperature-fahrenheit", "temperature-kelvin", "tennis", "tennis-ball", "tent", "terraform", "terrain", "test-tube", "test-tube-empty", "test-tube-off", "text", "text-box", "text-box-check", "text-box-check-outline", "text-box-minus", "text-box-minus-outline", "text-box-multiple", "text-box-multiple-outline", "text-box-outline", "text-box-plus", "text-box-plus-outline", "text-box-remove", "text-box-remove-outline", "text-box-search", "text-box-search-outline", "text-recognition", "text-shadow", "text-short", "text-subject", "text-to-speech", "text-to-speech-off", "textarea", "textbox", "textbox-lock", "textbox-password", "texture", "texture-box", "theater", "theme-light-dark", "thermometer", "thermometer-alert", "thermometer-chevron-down", "thermometer-chevron-up", "thermometer-high", "thermometer-lines", "thermometer-low", "thermometer-minus", "thermometer-plus", "thermostat", "thermostat-box", "thought-bubble", "thought-bubble-outline", "thumb-down", "thumb-down-outline", "thumb-up", "thumb-up-outline", "thumbs-up-down", "ticket", "ticket-account", "ticket-confirmation", "ticket-confirmation-outline", "ticket-outline", "ticket-percent", "tie", "tilde", "timelapse", "timeline", "timeline-alert", "timeline-alert-outline", "timeline-clock", "timeline-clock-outline", "timeline-help", "timeline-help-outline", "timeline-outline", "timeline-plus", "timeline-plus-outline", "timeline-text", "timeline-text-outline", "timer", "timer-10", "timer-3", "timer-off", "timer-off-outline", "timer-outline", "timer-sand", "timer-sand-empty", "timer-sand-full", "timetable", "toaster", "toaster-off", "toaster-oven", "toggle-switch", "toggle-switch-off", "toggle-switch-off-outline", "toggle-switch-outline", "toilet", "toolbox", "toolbox-outline", "tools", "tooltip", "tooltip-account", "tooltip-edit", "tooltip-edit-outline", "tooltip-image", "tooltip-image-outline", "tooltip-outline", "tooltip-plus", "tooltip-plus-outline", "tooltip-text", "tooltip-text-outline", "tooth", "tooth-outline", "toothbrush", "toothbrush-electric", "toothbrush-paste", "tortoise", "toslink", "tournament", "tow-truck", "tower-beach", "tower-fire", "toy-brick", "toy-brick-marker", "toy-brick-marker-outline", "toy-brick-minus", "toy-brick-minus-outline", "toy-brick-outline", "toy-brick-plus", "toy-brick-plus-outline", "toy-brick-remove", "toy-brick-remove-outline", "toy-brick-search", "toy-brick-search-outline", "track-light", "trackpad", "trackpad-lock", "tractor", "trademark", "traffic-cone", "traffic-light", "train", "train-car", "train-variant", "tram", "tram-side", "transcribe", "transcribe-close", "transfer", "transfer-down", "transfer-left", "transfer-right", "transfer-up", "transit-connection", "transit-connection-variant", "transit-detour", "transit-transfer", "transition", "transition-masked", "translate", "translate-off", "transmission-tower", "trash-can", "trash-can-outline", "tray", "tray-alert", "tray-full", "tray-minus", "tray-plus", "tray-remove", "treasure-chest", "tree", "tree-outline", "trello", "trending-down", "trending-neutral", "trending-up", "triangle", "triangle-outline", "triforce", "trophy", "trophy-award", "trophy-broken", "trophy-outline", "trophy-variant", "trophy-variant-outline", "truck", "truck-check", "truck-check-outline", "truck-delivery", "truck-delivery-outline", "truck-fast", "truck-fast-outline", "truck-outline", "truck-trailer", "trumpet", "tshirt-crew", "tshirt-crew-outline", "tshirt-v", "tshirt-v-outline", "tumble-dryer", "tumble-dryer-alert", "tumble-dryer-off", "tune", "tune-vertical", "turnstile", "turnstile-outline", "turtle", "twitch", "twitter", "twitter-retweet", "two-factor-authentication", "typewriter", "ubisoft", "ubuntu", "ufo", "ufo-outline", "ultra-high-definition", "umbraco", "umbrella", "umbrella-closed", "umbrella-outline", "undo", "undo-variant", "unfold-less-horizontal", "unfold-less-vertical", "unfold-more-horizontal", "unfold-more-vertical", "ungroup", "unicode", "unity", "unreal", "untappd", "update", "upload", "upload-lock", "upload-lock-outline", "upload-multiple", "upload-network", "upload-network-outline", "upload-off", "upload-off-outline", "upload-outline", "usb", "usb-flash-drive", "usb-flash-drive-outline", "usb-port", "valve", "valve-closed", "valve-open", "van-passenger", "van-utility", "vanish", "vanity-light", "variable", "variable-box", "vector-arrange-above", "vector-arrange-below", "vector-bezier", "vector-circle", "vector-circle-variant", "vector-combine", "vector-curve", "vector-difference", "vector-difference-ab", "vector-difference-ba", "vector-ellipse", "vector-intersection", "vector-line", "vector-link", "vector-point", "vector-polygon", "vector-polyline", "vector-polyline-edit", "vector-polyline-minus", "vector-polyline-plus", "vector-polyline-remove", "vector-radius", "vector-rectangle", "vector-selection", "vector-square", "vector-triangle", "vector-union", "vhs", "vibrate", "vibrate-off", "video", "video-3d", "video-3d-variant", "video-4k-box", "video-account", "video-box", "video-box-off", "video-check", "video-check-outline", "video-image", "video-input-antenna", "video-input-component", "video-input-hdmi", "video-input-scart", "video-input-svideo", "video-minus", "video-minus-outline", "video-off", "video-off-outline", "video-outline", "video-plus", "video-plus-outline", "video-stabilization", "video-switch", "video-switch-outline", "video-vintage", "video-wireless", "video-wireless-outline", "view-agenda", "view-agenda-outline", "view-array", "view-carousel", "view-column", "view-comfy", "view-compact", "view-compact-outline", "view-dashboard", "view-dashboard-outline", "view-dashboard-variant", "view-day", "view-grid", "view-grid-outline", "view-grid-plus", "view-grid-plus-outline", "view-headline", "view-list", "view-module", "view-parallel", "view-quilt", "view-sequential", "view-split-horizontal", "view-split-vertical", "view-stream", "view-week", "vimeo", "violin", "virtual-reality", "vk", "vlc", "voice-off", "voicemail", "volleyball", "volume-high", "volume-low", "volume-medium", "volume-minus", "volume-mute", "volume-off", "volume-plus", "volume-source", "volume-variant-off", "volume-vibrate", "vote", "vote-outline", "vpn", "vuejs", "vuetify", "walk", "wall", "wall-sconce", "wall-sconce-flat", "wall-sconce-flat-variant", "wall-sconce-round", "wall-sconce-round-variant", "wallet", "wallet-giftcard", "wallet-membership", "wallet-outline", "wallet-plus", "wallet-plus-outline", "wallet-travel", "wallpaper", "wan", "wardrobe", "wardrobe-outline", "warehouse", "washing-machine", "washing-machine-alert", "washing-machine-off", "watch", "watch-export", "watch-export-variant", "watch-import", "watch-import-variant", "watch-variant", "watch-vibrate", "watch-vibrate-off", "water", "water-boiler", "water-boiler-alert", "water-boiler-off", "water-off", "water-outline", "water-percent", "water-polo", "water-pump", "water-pump-off", "water-well", "water-well-outline", "watermark", "wave", "waves", "waze", "weather-cloudy", "weather-cloudy-alert", "weather-cloudy-arrow-right", "weather-fog", "weather-hail", "weather-hazy", "weather-hurricane", "weather-lightning", "weather-lightning-rainy", "weather-night", "weather-night-partly-cloudy", "weather-partly-cloudy", "weather-partly-lightning", "weather-partly-rainy", "weather-partly-snowy", "weather-partly-snowy-rainy", "weather-pouring", "weather-rainy", "weather-snowy", "weather-snowy-heavy", "weather-snowy-rainy", "weather-sunny", "weather-sunny-alert", "weather-sunset", "weather-sunset-down", "weather-sunset-up", "weather-tornado", "weather-windy", "weather-windy-variant", "web", "web-box", "web-clock", "webcam", "webhook", "webpack", "webrtc", "wechat", "weight", "weight-gram", "weight-kilogram", "weight-lifter", "weight-pound", "whatsapp", "wheelchair-accessibility", "whistle", "whistle-outline", "white-balance-auto", "white-balance-incandescent", "white-balance-iridescent", "white-balance-sunny", "widgets", "widgets-outline", "wifi", "wifi-off", "wifi-star", "wifi-strength-1", "wifi-strength-1-alert", "wifi-strength-1-lock", "wifi-strength-2", "wifi-strength-2-alert", "wifi-strength-2-lock", "wifi-strength-3", "wifi-strength-3-alert", "wifi-strength-3-lock", "wifi-strength-4", "wifi-strength-4-alert", "wifi-strength-4-lock", "wifi-strength-alert-outline", "wifi-strength-lock-outline", "wifi-strength-off", "wifi-strength-off-outline", "wifi-strength-outline", "wikipedia", "wind-turbine", "window-close", "window-closed", "window-closed-variant", "window-maximize", "window-minimize", "window-open", "window-open-variant", "window-restore", "window-shutter", "window-shutter-alert", "window-shutter-open", "wiper", "wiper-wash", "wordpress", "wrap", "wrap-disabled", "wrench", "wrench-outline", "xamarin", "xamarin-outline", "xing", "xml", "xmpp", "y-combinator", "yahoo", "yeast", "yin-yang", "yoga", "youtube", "youtube-gaming", "youtube-studio", "youtube-subscription", "youtube-tv", "z-wave", "zend", "zigbee", "zip-box", "zip-box-outline", "zip-disk", "zodiac-aquarius", "zodiac-aries", "zodiac-cancer", "zodiac-capricorn", "zodiac-gemini", "zodiac-leo", "zodiac-libra", "zodiac-pisces", "zodiac-sagittarius", "zodiac-scorpio", "zodiac-taurus", "zodiac-virgo" ] ================================================ FILE: src/data/itemstabledata.json ================================================ [ { "name": "api_all_client_error_total", "color": "#4e79a7", "data": 10 }, { "name": "api_all_errors_total", "color": "#f28e2c", "data": 47 }, { "name": "api_all_request_in_processing_total", "color": "#e15759", "data": 19 }, { "name": "api_all_request_total", "color": "#76b7b2", "data": 79 }, { "name": "api_all_server_error_total", "color": "#59a14f", "data": 34 }, { "name": "api_all_success_total", "color": "#edc949", "data": 44 }, { "name": "api_request_duration_milliseconds_bucket", "color": "#af7aa1", "data": 81 } ] ================================================ FILE: src/data/ptabledata.json ================================================ { "layout": { "type": "grid" }, "widgets": [ { "id": "w1", "type": "DbChartjsLine", "cspan": 4, "height": 250, "properties": { "options": { "test": "true", "key": "value", "display": "dense" } } }, { "id": "w2", "type": "DbChartjsBar", "cspan": 4, "height": 250 } ] } ================================================ FILE: src/data/requests.json ================================================ { "startts": 1588042628346, "all": { "requests": 2070, "responses": 2070, "errors": 257, "info": 0, "success": 1813, "redirect": 0, "client_error": 186, "server_error": 71, "total_time": 106076, "max_time": 103, "avg_time": 51.24444444444445, "total_req_clength": 56695, "max_req_clength": 210, "avg_req_clength": 27, "total_res_clength": 203014, "max_res_clength": 199, "avg_res_clength": 98, "req_rate": 5.216707577078744, "err_rate": 0.6476781871059117, "apdex_threshold": 25, "apdex_satisfied": 435, "apdex_tolerated": 1362, "apdex_score": 0.5391304347826087 }, "egress": { "requests": 0, "responses": 0, "errors": 0, "info": 0, "success": 0, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 0, "max_time": 0, "avg_time": 0, "total_req_clength": 0, "max_req_clength": 0, "avg_req_clength": 0, "total_res_clength": 0, "max_res_clength": 0, "avg_res_clength": 0, "req_rate": 0, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 0, "apdex_tolerated": 0, "apdex_score": 0 }, "sys": { "rss": 49201152, "heapTotal": 23588864, "heapUsed": 15191840, "external": 1964211, "cpu": 3.0941847891073517, "lag": 0.149, "maxlag": 9.5066 }, "name": "swagger-stats-hapitest", "version": "0.95.16", "hostname": "hostname", "ip": "127.0.0.1", "apdexThreshold": 25, "method": { "GET": { "requests": 1036, "responses": 1036, "errors": 128, "info": 0, "success": 908, "redirect": 0, "client_error": 94, "server_error": 34, "total_time": 52592, "max_time": 102, "avg_time": 50.76447876447877, "total_req_clength": 0, "max_req_clength": 0, "avg_req_clength": 0, "total_res_clength": 101353, "max_res_clength": 199, "avg_res_clength": 97, "req_rate": 2.610873937127333, "err_rate": 0.3225790192589755, "apdex_threshold": 25, "apdex_satisfied": 230, "apdex_tolerated": 670, "apdex_score": 0.5453667953667953 }, "POST": { "requests": 509, "responses": 509, "errors": 67, "info": 0, "success": 442, "redirect": 0, "client_error": 47, "server_error": 20, "total_time": 26591, "max_time": 102, "avg_time": 52.24165029469548, "total_req_clength": 56695, "max_req_clength": 210, "avg_req_clength": 111, "total_res_clength": 50231, "max_res_clength": 199, "avg_res_clength": 98, "req_rate": 1.2827556312720196, "err_rate": 0.16884995539336997, "apdex_threshold": 25, "apdex_satisfied": 95, "apdex_tolerated": 345, "apdex_score": 0.5255402750491159 }, "PUT": { "requests": 0, "responses": 0, "errors": 0, "info": 0, "success": 0, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 0, "max_time": 0, "avg_time": 0, "total_req_clength": 0, "max_req_clength": 0, "avg_req_clength": 0, "total_res_clength": 0, "max_res_clength": 0, "avg_res_clength": 0, "req_rate": 0, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 0, "apdex_tolerated": 0, "apdex_score": 0 }, "DELETE": { "requests": 525, "responses": 525, "errors": 62, "info": 0, "success": 463, "redirect": 0, "client_error": 45, "server_error": 17, "total_time": 26893, "max_time": 103, "avg_time": 51.224761904761905, "total_req_clength": 0, "max_req_clength": 0, "avg_req_clength": 0, "total_res_clength": 51430, "max_res_clength": 199, "avg_res_clength": 97, "req_rate": 1.3230780086793916, "err_rate": 0.15624921245356627, "apdex_threshold": 25, "apdex_satisfied": 110, "apdex_tolerated": 347, "apdex_score": 0.54 } } } ================================================ FILE: src/data/summary.json ================================================ { "startts": 1588035881728, "all": { "requests": 585, "responses": 583, "errors": 64, "info": 0, "success": 519, "redirect": 0, "client_error": 46, "server_error": 18, "total_time": 29741, "max_time": 101, "avg_time": 51.01372212692967, "total_req_clength": 14989, "max_req_clength": 208, "avg_req_clength": 25, "total_res_clength": 60458, "max_res_clength": 199, "avg_res_clength": 103, "req_rate": 2.284867748092351, "err_rate": 0.2508259620547349, "apdex_threshold": 25, "apdex_satisfied": 132, "apdex_tolerated": 386, "apdex_score": 0.5574614065180102 }, "egress": { "requests": 0, "responses": 0, "errors": 0, "info": 0, "success": 0, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 0, "max_time": 0, "avg_time": 0, "total_req_clength": 0, "max_req_clength": 0, "avg_req_clength": 0, "total_res_clength": 0, "max_res_clength": 0, "avg_res_clength": 0, "req_rate": 0, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 0, "apdex_tolerated": 0, "apdex_score": 0 }, "sys": { "rss": 51396608, "heapTotal": 16510976, "heapUsed": 14511032, "external": 1511235, "cpu": 0.9009328978771693, "lag": 0.555539, "maxlag": 6.407213 }, "name": "swagger-stats-fastify", "version": "0.95.17", "hostname": "sv5", "ip": "192.168.1.71", "apdexThreshold": 25, "timeline": { "settings": { "bucket_duration": 1000, "bucket_current": 1588036136, "length": 60 }, "data": { "1588036077": { "stats": { "requests": 7, "responses": 7, "errors": 1, "info": 0, "success": 6, "redirect": 0, "client_error": 0, "server_error": 1, "total_time": 362, "max_time": 93, "avg_time": 51.714285714285715, "total_req_clength": 179, "max_req_clength": 157, "avg_req_clength": 25, "total_res_clength": 750, "max_res_clength": 175, "avg_res_clength": 107, "req_rate": 7, "err_rate": 1, "apdex_threshold": 25, "apdex_satisfied": 1, "apdex_tolerated": 5, "apdex_score": 0.5 }, "sys": { "rss": 49728366, "heapTotal": 14675968, "heapUsed": 12917919, "external": 1470525, "cpu": 1.8579307821138102, "lag": 0.065874 } }, "1588036078": { "stats": { "requests": 2, "responses": 2, "errors": 0, "info": 0, "success": 2, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 142, "max_time": 100, "avg_time": 71, "total_req_clength": 92, "max_req_clength": 92, "avg_req_clength": 46, "total_res_clength": 285, "max_res_clength": 196, "avg_res_clength": 142, "req_rate": 2, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 0, "apdex_tolerated": 2, "apdex_score": 0.5 }, "sys": { "rss": 50035566, "heapTotal": 14675968, "heapUsed": 13260610, "external": 1470883, "cpu": 1.219095542384587, "lag": 0.446186 } }, "1588036079": { "stats": { "requests": 8, "responses": 8, "errors": 0, "info": 0, "success": 8, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 429, "max_time": 94, "avg_time": 53.625, "total_req_clength": 131, "max_req_clength": 116, "avg_req_clength": 16, "total_res_clength": 683, "max_res_clength": 138, "avg_res_clength": 85, "req_rate": 8, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 3, "apdex_tolerated": 5, "apdex_score": 0.6875 }, "sys": { "rss": 49754697, "heapTotal": 14675968, "heapUsed": 12818088, "external": 1470064, "cpu": 1.5715433132709409, "lag": 0.418594 } }, "1588036080": { "stats": { "requests": 4, "responses": 4, "errors": 1, "info": 0, "success": 3, "redirect": 0, "client_error": 0, "server_error": 1, "total_time": 167, "max_time": 63, "avg_time": 41.75, "total_req_clength": 267, "max_req_clength": 140, "avg_req_clength": 66, "total_res_clength": 441, "max_res_clength": 191, "avg_res_clength": 110, "req_rate": 4, "err_rate": 1, "apdex_threshold": 25, "apdex_satisfied": 1, "apdex_tolerated": 2, "apdex_score": 0.5 }, "sys": { "rss": 50149669, "heapTotal": 14675968, "heapUsed": 13219975, "external": 1470492, "cpu": 2.201301491236212, "lag": 0.479239 } }, "1588036081": { "stats": { "requests": 12, "responses": 12, "errors": 1, "info": 0, "success": 11, "redirect": 0, "client_error": 1, "server_error": 0, "total_time": 600, "max_time": 84, "avg_time": 50, "total_req_clength": 589, "max_req_clength": 206, "avg_req_clength": 49, "total_res_clength": 1385, "max_res_clength": 177, "avg_res_clength": 115, "req_rate": 12, "err_rate": 1, "apdex_threshold": 25, "apdex_satisfied": 2, "apdex_tolerated": 9, "apdex_score": 0.5416666666666666 }, "sys": { "rss": 49991095, "heapTotal": 14675968, "heapUsed": 13023264, "external": 1470496, "cpu": 4.087777913503371, "lag": 0.492969 } }, "1588036082": { "stats": { "requests": 3, "responses": 3, "errors": 1, "info": 0, "success": 2, "redirect": 0, "client_error": 1, "server_error": 0, "total_time": 186, "max_time": 98, "avg_time": 62, "total_req_clength": 54, "max_req_clength": 54, "avg_req_clength": 18, "total_res_clength": 359, "max_res_clength": 179, "avg_res_clength": 119, "req_rate": 3, "err_rate": 1, "apdex_threshold": 25, "apdex_satisfied": 0, "apdex_tolerated": 2, "apdex_score": 0.3333333333333333 }, "sys": { "rss": 50164297, "heapTotal": 14825765, "heapUsed": 13104786, "external": 1473009, "cpu": 2.9677435233353995, "lag": 0.398221 } }, "1588036083": { "stats": { "requests": 5, "responses": 5, "errors": 0, "info": 0, "success": 5, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 313, "max_time": 78, "avg_time": 62.6, "total_req_clength": 0, "max_req_clength": 0, "avg_req_clength": 0, "total_res_clength": 331, "max_res_clength": 130, "avg_res_clength": 66, "req_rate": 5, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 0, "apdex_tolerated": 5, "apdex_score": 0.5 }, "sys": { "rss": 50065993, "heapTotal": 14938112, "heapUsed": 13108877, "external": 1478383, "cpu": 1.7933468592956903, "lag": 0.417035 } }, "1588036084": { "stats": { "requests": 1, "responses": 1, "errors": 0, "info": 0, "success": 1, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 87, "max_time": 87, "avg_time": 87, "total_req_clength": 0, "max_req_clength": 0, "avg_req_clength": 0, "total_res_clength": 197, "max_res_clength": 197, "avg_res_clength": 197, "req_rate": 1, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 0, "apdex_tolerated": 1, "apdex_score": 0.5 }, "sys": { "rss": 50281326, "heapTotal": 14975561, "heapUsed": 13372402, "external": 1478359, "cpu": 1.0757938550756827, "lag": 0.469616 } }, "1588036085": { "stats": { "requests": 8, "responses": 8, "errors": 0, "info": 0, "success": 8, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 310, "max_time": 75, "avg_time": 38.75, "total_req_clength": 150, "max_req_clength": 115, "avg_req_clength": 18, "total_res_clength": 850, "max_res_clength": 187, "avg_res_clength": 106, "req_rate": 8, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 3, "apdex_tolerated": 5, "apdex_score": 0.6875 }, "sys": { "rss": 50147913, "heapTotal": 15200256, "heapUsed": 13080886, "external": 1478245, "cpu": 2.138643445813946, "lag": 0.49306 } }, "1588036086": { "stats": { "requests": 4, "responses": 4, "errors": 0, "info": 0, "success": 4, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 176, "max_time": 93, "avg_time": 44, "total_req_clength": 116, "max_req_clength": 116, "avg_req_clength": 29, "total_res_clength": 479, "max_res_clength": 189, "avg_res_clength": 119, "req_rate": 4, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 2, "apdex_tolerated": 2, "apdex_score": 0.75 }, "sys": { "rss": 50391918, "heapTotal": 15200256, "heapUsed": 13401070, "external": 1478741, "cpu": 1.4927154465650112, "lag": 0.458657 } }, "1588036087": { "stats": { "requests": 5, "responses": 5, "errors": 0, "info": 0, "success": 5, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 246, "max_time": 91, "avg_time": 49.2, "total_req_clength": 165, "max_req_clength": 165, "avg_req_clength": 33, "total_res_clength": 516, "max_res_clength": 170, "avg_res_clength": 103, "req_rate": 5, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 2, "apdex_tolerated": 3, "apdex_score": 0.7 }, "sys": { "rss": 50040832, "heapTotal": 15200256, "heapUsed": 13055997, "external": 1478392, "cpu": 1.3407032578032514, "lag": 0.532719 } }, "1588036088": { "stats": { "requests": 3, "responses": 3, "errors": 0, "info": 0, "success": 3, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 213, "max_time": 97, "avg_time": 71, "total_req_clength": 0, "max_req_clength": 0, "avg_req_clength": 0, "total_res_clength": 244, "max_res_clength": 123, "avg_res_clength": 81, "req_rate": 3, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 0, "apdex_tolerated": 3, "apdex_score": 0.5 }, "sys": { "rss": 50427026, "heapTotal": 15200256, "heapUsed": 13466822, "external": 1478509, "cpu": 1.4365869514223208, "lag": 0.466899 } }, "1588036089": { "stats": { "requests": 5, "responses": 5, "errors": 0, "info": 0, "success": 5, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 410, "max_time": 96, "avg_time": 82, "total_req_clength": 103, "max_req_clength": 103, "avg_req_clength": 20, "total_res_clength": 418, "max_res_clength": 198, "avg_res_clength": 83, "req_rate": 5, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 0, "apdex_tolerated": 5, "apdex_score": 0.5 }, "sys": { "rss": 50173659, "heapTotal": 15200256, "heapUsed": 13232133, "external": 1478250, "cpu": 1.587239099358113, "lag": 1.275879 } }, "1588036090": { "stats": { "requests": 6, "responses": 6, "errors": 1, "info": 0, "success": 5, "redirect": 0, "client_error": 0, "server_error": 1, "total_time": 274, "max_time": 93, "avg_time": 45.666666666666664, "total_req_clength": 196, "max_req_clength": 183, "avg_req_clength": 32, "total_res_clength": 572, "max_res_clength": 164, "avg_res_clength": 95, "req_rate": 6, "err_rate": 1, "apdex_threshold": 25, "apdex_satisfied": 2, "apdex_tolerated": 3, "apdex_score": 0.5833333333333334 }, "sys": { "rss": 50284837, "heapTotal": 15200256, "heapUsed": 13313024, "external": 1478366, "cpu": 2.2609011446944294, "lag": 0.394524 } }, "1588036091": { "stats": { "requests": 4, "responses": 4, "errors": 0, "info": 0, "success": 4, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 270, "max_time": 94, "avg_time": 67.5, "total_req_clength": 123, "max_req_clength": 123, "avg_req_clength": 30, "total_res_clength": 340, "max_res_clength": 196, "avg_res_clength": 85, "req_rate": 4, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 0, "apdex_tolerated": 4, "apdex_score": 0.5 }, "sys": { "rss": 50056631, "heapTotal": 15200256, "heapUsed": 13127105, "external": 1478223, "cpu": 1.2782302974744657, "lag": 0.491047 } }, "1588036092": { "stats": { "requests": 4, "responses": 4, "errors": 2, "info": 0, "success": 2, "redirect": 0, "client_error": 1, "server_error": 1, "total_time": 170, "max_time": 71, "avg_time": 42.5, "total_req_clength": 35, "max_req_clength": 35, "avg_req_clength": 8, "total_res_clength": 382, "max_res_clength": 152, "avg_res_clength": 95, "req_rate": 4, "err_rate": 2, "apdex_threshold": 25, "apdex_satisfied": 1, "apdex_tolerated": 1, "apdex_score": 0.375 }, "sys": { "rss": 50404206, "heapTotal": 15200256, "heapUsed": 13562662, "external": 1478596, "cpu": 1.2717498921515509, "lag": 0.478788 } }, "1588036093": { "stats": { "requests": 5, "responses": 5, "errors": 0, "info": 0, "success": 5, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 367, "max_time": 97, "avg_time": 73.4, "total_req_clength": 359, "max_req_clength": 193, "avg_req_clength": 71, "total_res_clength": 520, "max_res_clength": 187, "avg_res_clength": 104, "req_rate": 5, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 1, "apdex_tolerated": 4, "apdex_score": 0.6 }, "sys": { "rss": 50140306, "heapTotal": 15200256, "heapUsed": 13194573, "external": 1478473, "cpu": 1.9808799346814085, "lag": 0.585069 } }, "1588036094": { "stats": { "requests": 6, "responses": 6, "errors": 0, "info": 0, "success": 6, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 168, "max_time": 37, "avg_time": 28, "total_req_clength": 426, "max_req_clength": 178, "avg_req_clength": 71, "total_res_clength": 573, "max_res_clength": 190, "avg_res_clength": 95, "req_rate": 6, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 2, "apdex_tolerated": 4, "apdex_score": 0.6666666666666666 }, "sys": { "rss": 50394843, "heapTotal": 15200256, "heapUsed": 13514461, "external": 1480443, "cpu": 2.038817726980114, "lag": 0.674526 } }, "1588036095": { "stats": { "requests": 4, "responses": 4, "errors": 0, "info": 0, "success": 4, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 227, "max_time": 84, "avg_time": 56.75, "total_req_clength": 55, "max_req_clength": 55, "avg_req_clength": 13, "total_res_clength": 259, "max_res_clength": 172, "avg_res_clength": 64, "req_rate": 4, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 1, "apdex_tolerated": 3, "apdex_score": 0.625 }, "sys": { "rss": 50331648, "heapTotal": 15200256, "heapUsed": 13452760, "external": 1487158, "cpu": 1.7828863611366745, "lag": 0.96911 } }, "1588036096": { "stats": { "requests": 5, "responses": 5, "errors": 1, "info": 0, "success": 4, "redirect": 0, "client_error": 1, "server_error": 0, "total_time": 189, "max_time": 75, "avg_time": 37.8, "total_req_clength": 119, "max_req_clength": 61, "avg_req_clength": 23, "total_res_clength": 475, "max_res_clength": 150, "avg_res_clength": 95, "req_rate": 5, "err_rate": 1, "apdex_threshold": 25, "apdex_satisfied": 1, "apdex_tolerated": 3, "apdex_score": 0.5 }, "sys": { "rss": 50436389, "heapTotal": 15200256, "heapUsed": 13502057, "external": 1486914, "cpu": 1.798597087070495, "lag": 0.443023 } }, "1588036097": { "stats": { "requests": 7, "responses": 7, "errors": 1, "info": 0, "success": 6, "redirect": 0, "client_error": 1, "server_error": 0, "total_time": 395, "max_time": 84, "avg_time": 56.42857142857143, "total_req_clength": 256, "max_req_clength": 152, "avg_req_clength": 36, "total_res_clength": 808, "max_res_clength": 199, "avg_res_clength": 115, "req_rate": 7, "err_rate": 1, "apdex_threshold": 25, "apdex_satisfied": 1, "apdex_tolerated": 5, "apdex_score": 0.5 }, "sys": { "rss": 50623049, "heapTotal": 15200256, "heapUsed": 13680097, "external": 1487130, "cpu": 2.130396981212194, "lag": 0.445876 } }, "1588036098": { "stats": { "requests": 10, "responses": 10, "errors": 0, "info": 0, "success": 10, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 502, "max_time": 96, "avg_time": 50.2, "total_req_clength": 333, "max_req_clength": 183, "avg_req_clength": 33, "total_res_clength": 1298, "max_res_clength": 196, "avg_res_clength": 129, "req_rate": 10, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 3, "apdex_tolerated": 7, "apdex_score": 0.65 }, "sys": { "rss": 50478519, "heapTotal": 15200256, "heapUsed": 13528478, "external": 1486995, "cpu": 3.3804185449761377, "lag": 0.46465 } }, "1588036099": { "stats": { "requests": 6, "responses": 6, "errors": 0, "info": 0, "success": 6, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 235, "max_time": 85, "avg_time": 39.166666666666664, "total_req_clength": 188, "max_req_clength": 170, "avg_req_clength": 31, "total_res_clength": 750, "max_res_clength": 184, "avg_res_clength": 125, "req_rate": 6, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 2, "apdex_tolerated": 4, "apdex_score": 0.6666666666666666 }, "sys": { "rss": 50240366, "heapTotal": 15200256, "heapUsed": 13343061, "external": 1486465, "cpu": 1.8186508334441733, "lag": 0.422577 } }, "1588036100": { "stats": { "requests": 3, "responses": 3, "errors": 1, "info": 0, "success": 2, "redirect": 0, "client_error": 1, "server_error": 0, "total_time": 229, "max_time": 96, "avg_time": 76.33333333333333, "total_req_clength": 0, "max_req_clength": 0, "avg_req_clength": 0, "total_res_clength": 279, "max_res_clength": 122, "avg_res_clength": 93, "req_rate": 3, "err_rate": 1, "apdex_threshold": 25, "apdex_satisfied": 0, "apdex_tolerated": 2, "apdex_score": 0.3333333333333333 }, "sys": { "rss": 50715502, "heapTotal": 15200256, "heapUsed": 13823752, "external": 1486825, "cpu": 1.4875548568234, "lag": 1.381639 } }, "1588036101": { "stats": { "requests": 9, "responses": 9, "errors": 0, "info": 0, "success": 9, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 556, "max_time": 99, "avg_time": 61.77777777777778, "total_req_clength": 248, "max_req_clength": 134, "avg_req_clength": 27, "total_res_clength": 757, "max_res_clength": 160, "avg_res_clength": 84, "req_rate": 9, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 3, "apdex_tolerated": 6, "apdex_score": 0.6666666666666666 }, "sys": { "rss": 50344521, "heapTotal": 15200256, "heapUsed": 13470627, "external": 1486587, "cpu": 2.5661715311824076, "lag": 0.450544 } }, "1588036102": { "stats": { "requests": 4, "responses": 4, "errors": 0, "info": 0, "success": 4, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 150, "max_time": 83, "avg_time": 37.5, "total_req_clength": 208, "max_req_clength": 208, "avg_req_clength": 52, "total_res_clength": 493, "max_res_clength": 190, "avg_res_clength": 123, "req_rate": 4, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 2, "apdex_tolerated": 2, "apdex_score": 0.75 }, "sys": { "rss": 50702043, "heapTotal": 15275154, "heapUsed": 13764849, "external": 1486786, "cpu": 2.046160289967588, "lag": 0.850682 } }, "1588036103": { "stats": { "requests": 3, "responses": 3, "errors": 1, "info": 0, "success": 2, "redirect": 0, "client_error": 1, "server_error": 0, "total_time": 204, "max_time": 94, "avg_time": 68, "total_req_clength": 30, "max_req_clength": 30, "avg_req_clength": 10, "total_res_clength": 359, "max_res_clength": 177, "avg_res_clength": 119, "req_rate": 3, "err_rate": 1, "apdex_threshold": 25, "apdex_satisfied": 0, "apdex_tolerated": 2, "apdex_score": 0.3333333333333333 }, "sys": { "rss": 50382555, "heapTotal": 15462400, "heapUsed": 13524224, "external": 1486467, "cpu": 0.9610284669432964, "lag": 0.293925 } }, "1588036104": { "stats": { "requests": 6, "responses": 6, "errors": 1, "info": 0, "success": 5, "redirect": 0, "client_error": 1, "server_error": 0, "total_time": 221, "max_time": 65, "avg_time": 36.833333333333336, "total_req_clength": 341, "max_req_clength": 181, "avg_req_clength": 56, "total_res_clength": 296, "max_res_clength": 110, "avg_res_clength": 49, "req_rate": 6, "err_rate": 1, "apdex_threshold": 25, "apdex_satisfied": 2, "apdex_tolerated": 3, "apdex_score": 0.5833333333333334 }, "sys": { "rss": 50665765, "heapTotal": 15462400, "heapUsed": 13823369, "external": 1489089, "cpu": 1.7588396214259965, "lag": 0.430725 } }, "1588036105": { "stats": { "requests": 5, "responses": 5, "errors": 0, "info": 0, "success": 5, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 380, "max_time": 97, "avg_time": 76, "total_req_clength": 65, "max_req_clength": 65, "avg_req_clength": 13, "total_res_clength": 582, "max_res_clength": 199, "avg_res_clength": 116, "req_rate": 5, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 0, "apdex_tolerated": 5, "apdex_score": 0.5 }, "sys": { "rss": 50356809, "heapTotal": 15462400, "heapUsed": 13499621, "external": 1494697, "cpu": 1.4301835323178618, "lag": 0.406691 } }, "1588036106": { "stats": { "requests": 2, "responses": 2, "errors": 0, "info": 0, "success": 2, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 79, "max_time": 63, "avg_time": 39.5, "total_req_clength": 93, "max_req_clength": 93, "avg_req_clength": 46, "total_res_clength": 288, "max_res_clength": 196, "avg_res_clength": 144, "req_rate": 2, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 1, "apdex_tolerated": 1, "apdex_score": 0.75 }, "sys": { "rss": 50666350, "heapTotal": 15649646, "heapUsed": 13917962, "external": 1494827, "cpu": 4.224776568827977, "lag": 0.42097 } }, "1588036107": { "stats": { "requests": 7, "responses": 7, "errors": 1, "info": 0, "success": 6, "redirect": 0, "client_error": 0, "server_error": 1, "total_time": 406, "max_time": 98, "avg_time": 58, "total_req_clength": 299, "max_req_clength": 171, "avg_req_clength": 42, "total_res_clength": 746, "max_res_clength": 193, "avg_res_clength": 106, "req_rate": 7, "err_rate": 1, "apdex_threshold": 25, "apdex_satisfied": 0, "apdex_tolerated": 6, "apdex_score": 0.42857142857142855 }, "sys": { "rss": 50570386, "heapTotal": 15724544, "heapUsed": 13894890, "external": 1494868, "cpu": 1.75761814185987, "lag": 0.446588 } }, "1588036108": { "stats": { "requests": 7, "responses": 7, "errors": 1, "info": 0, "success": 6, "redirect": 0, "client_error": 1, "server_error": 0, "total_time": 432, "max_time": 96, "avg_time": 61.714285714285715, "total_req_clength": 95, "max_req_clength": 95, "avg_req_clength": 13, "total_res_clength": 631, "max_res_clength": 191, "avg_res_clength": 90, "req_rate": 7, "err_rate": 1, "apdex_threshold": 25, "apdex_satisfied": 1, "apdex_tolerated": 5, "apdex_score": 0.5 }, "sys": { "rss": 50716672, "heapTotal": 15724544, "heapUsed": 14051082, "external": 1495012, "cpu": 1.863596242683904, "lag": 0.374464 } }, "1588036109": { "stats": { "requests": 5, "responses": 5, "errors": 0, "info": 0, "success": 5, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 227, "max_time": 78, "avg_time": 45.4, "total_req_clength": 155, "max_req_clength": 80, "avg_req_clength": 31, "total_res_clength": 403, "max_res_clength": 170, "avg_res_clength": 80, "req_rate": 5, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 2, "apdex_tolerated": 3, "apdex_score": 0.7 }, "sys": { "rss": 50734226, "heapTotal": 15724544, "heapUsed": 13740662, "external": 1494666, "cpu": 1.5227371222634207, "lag": 0.454438 } }, "1588036110": { "stats": { "requests": 5, "responses": 5, "errors": 0, "info": 0, "success": 5, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 299, "max_time": 84, "avg_time": 59.8, "total_req_clength": 0, "max_req_clength": 0, "avg_req_clength": 0, "total_res_clength": 373, "max_res_clength": 172, "avg_res_clength": 74, "req_rate": 5, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 0, "apdex_tolerated": 5, "apdex_score": 0.5 }, "sys": { "rss": 51092919, "heapTotal": 15724544, "heapUsed": 14056278, "external": 1494987, "cpu": 1.6400987184521016, "lag": 0.412512 } }, "1588036111": { "stats": { "requests": 6, "responses": 6, "errors": 0, "info": 0, "success": 6, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 249, "max_time": 85, "avg_time": 41.5, "total_req_clength": 0, "max_req_clength": 0, "avg_req_clength": 0, "total_res_clength": 484, "max_res_clength": 186, "avg_res_clength": 80, "req_rate": 6, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 2, "apdex_tolerated": 4, "apdex_score": 0.6666666666666666 }, "sys": { "rss": 50696192, "heapTotal": 15724544, "heapUsed": 13777008, "external": 1494510, "cpu": 1.7117858322335535, "lag": 0.080423 } }, "1588036112": { "stats": { "requests": 4, "responses": 4, "errors": 0, "info": 0, "success": 4, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 173, "max_time": 64, "avg_time": 43.25, "total_req_clength": 49, "max_req_clength": 49, "avg_req_clength": 12, "total_res_clength": 369, "max_res_clength": 179, "avg_res_clength": 92, "req_rate": 4, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 1, "apdex_tolerated": 3, "apdex_score": 0.625 }, "sys": { "rss": 51023287, "heapTotal": 15724544, "heapUsed": 14066379, "external": 1494519, "cpu": 1.5670041066715465, "lag": 0.411171 } }, "1588036113": { "stats": { "requests": 3, "responses": 3, "errors": 0, "info": 0, "success": 3, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 116, "max_time": 44, "avg_time": 38.666666666666664, "total_req_clength": 0, "max_req_clength": 0, "avg_req_clength": 0, "total_res_clength": 206, "max_res_clength": 94, "avg_res_clength": 68, "req_rate": 3, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 0, "apdex_tolerated": 3, "apdex_score": 0.5 }, "sys": { "rss": 50578578, "heapTotal": 15724544, "heapUsed": 13721658, "external": 1494521, "cpu": 2.5966386588428008, "lag": 0.427502 } }, "1588036114": { "stats": { "requests": 6, "responses": 6, "errors": 0, "info": 0, "success": 6, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 250, "max_time": 78, "avg_time": 41.666666666666664, "total_req_clength": 174, "max_req_clength": 108, "avg_req_clength": 29, "total_res_clength": 322, "max_res_clength": 101, "avg_res_clength": 53, "req_rate": 6, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 3, "apdex_tolerated": 3, "apdex_score": 0.75 }, "sys": { "rss": 50826679, "heapTotal": 15724544, "heapUsed": 14118370, "external": 1494850, "cpu": 1.668030655626392, "lag": 0.44438 } }, "1588036115": { "stats": { "requests": 5, "responses": 5, "errors": 0, "info": 0, "success": 5, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 255, "max_time": 94, "avg_time": 51, "total_req_clength": 0, "max_req_clength": 0, "avg_req_clength": 0, "total_res_clength": 441, "max_res_clength": 183, "avg_res_clength": 88, "req_rate": 5, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 2, "apdex_tolerated": 3, "apdex_score": 0.7 }, "sys": { "rss": 50664009, "heapTotal": 15911790, "heapUsed": 13929139, "external": 1497075, "cpu": 1.7429834713943195, "lag": 1.573947 } }, "1588036116": { "stats": { "requests": 3, "responses": 3, "errors": 1, "info": 0, "success": 2, "redirect": 0, "client_error": 1, "server_error": 0, "total_time": 152, "max_time": 95, "avg_time": 50.666666666666664, "total_req_clength": 189, "max_req_clength": 189, "avg_req_clength": 63, "total_res_clength": 332, "max_res_clength": 172, "avg_res_clength": 110, "req_rate": 3, "err_rate": 1, "apdex_threshold": 25, "apdex_satisfied": 0, "apdex_tolerated": 2, "apdex_score": 0.3333333333333333 }, "sys": { "rss": 50803858, "heapTotal": 15986688, "heapUsed": 14077215, "external": 1502988, "cpu": 3.440521946725362, "lag": 0.43567 } }, "1588036117": { "stats": { "requests": 8, "responses": 8, "errors": 2, "info": 0, "success": 6, "redirect": 0, "client_error": 1, "server_error": 1, "total_time": 443, "max_time": 89, "avg_time": 55.375, "total_req_clength": 22, "max_req_clength": 22, "avg_req_clength": 2, "total_res_clength": 1012, "max_res_clength": 184, "avg_res_clength": 126, "req_rate": 8, "err_rate": 2, "apdex_threshold": 25, "apdex_satisfied": 1, "apdex_tolerated": 5, "apdex_score": 0.4375 }, "sys": { "rss": 51013925, "heapTotal": 15986688, "heapUsed": 14073498, "external": 1502880, "cpu": 2.2408022463972532, "lag": 0.391645 } }, "1588036118": { "stats": { "requests": 5, "responses": 5, "errors": 0, "info": 0, "success": 5, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 210, "max_time": 88, "avg_time": 42, "total_req_clength": 34, "max_req_clength": 34, "avg_req_clength": 6, "total_res_clength": 314, "max_res_clength": 111, "avg_res_clength": 62, "req_rate": 5, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 2, "apdex_tolerated": 3, "apdex_score": 0.7 }, "sys": { "rss": 51121591, "heapTotal": 15986688, "heapUsed": 14193474, "external": 1502786, "cpu": 1.9150045723840348, "lag": 0.445192 } }, "1588036119": { "stats": { "requests": 5, "responses": 5, "errors": 0, "info": 0, "success": 5, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 249, "max_time": 89, "avg_time": 49.8, "total_req_clength": 236, "max_req_clength": 150, "avg_req_clength": 47, "total_res_clength": 523, "max_res_clength": 186, "avg_res_clength": 104, "req_rate": 5, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 1, "apdex_tolerated": 4, "apdex_score": 0.6 }, "sys": { "rss": 51004562, "heapTotal": 15986688, "heapUsed": 14113554, "external": 1502985, "cpu": 1.7881448835117006, "lag": 0.465307 } }, "1588036120": { "stats": { "requests": 3, "responses": 3, "errors": 0, "info": 0, "success": 3, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 184, "max_time": 87, "avg_time": 61.333333333333336, "total_req_clength": 191, "max_req_clength": 191, "avg_req_clength": 63, "total_res_clength": 318, "max_res_clength": 146, "avg_res_clength": 106, "req_rate": 3, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 0, "apdex_tolerated": 3, "apdex_score": 0.5 }, "sys": { "rss": 51034405, "heapTotal": 15986688, "heapUsed": 14124281, "external": 1503164, "cpu": 1.0705057507568931, "lag": 0.417041 } }, "1588036121": { "stats": { "requests": 4, "responses": 4, "errors": 1, "info": 0, "success": 3, "redirect": 0, "client_error": 0, "server_error": 1, "total_time": 273, "max_time": 91, "avg_time": 68.25, "total_req_clength": 162, "max_req_clength": 162, "avg_req_clength": 40, "total_res_clength": 523, "max_res_clength": 185, "avg_res_clength": 130, "req_rate": 4, "err_rate": 1, "apdex_threshold": 25, "apdex_satisfied": 0, "apdex_tolerated": 3, "apdex_score": 0.375 }, "sys": { "rss": 51185371, "heapTotal": 16061586, "heapUsed": 14274774, "external": 1503200, "cpu": 1.5968112227200613, "lag": 0.358415 } }, "1588036122": { "stats": { "requests": 5, "responses": 5, "errors": 0, "info": 0, "success": 5, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 236, "max_time": 88, "avg_time": 47.2, "total_req_clength": 0, "max_req_clength": 0, "avg_req_clength": 0, "total_res_clength": 587, "max_res_clength": 196, "avg_res_clength": 117, "req_rate": 5, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 2, "apdex_tolerated": 3, "apdex_score": 0.7 }, "sys": { "rss": 51022117, "heapTotal": 16248832, "heapUsed": 14057023, "external": 1502713, "cpu": 1.4625092698290458, "lag": 0.467472 } }, "1588036123": { "stats": { "requests": 5, "responses": 5, "errors": 0, "info": 0, "success": 5, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 266, "max_time": 89, "avg_time": 53.2, "total_req_clength": 262, "max_req_clength": 152, "avg_req_clength": 52, "total_res_clength": 656, "max_res_clength": 161, "avg_res_clength": 131, "req_rate": 5, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 1, "apdex_tolerated": 4, "apdex_score": 0.6 }, "sys": { "rss": 51336923, "heapTotal": 16248832, "heapUsed": 14382665, "external": 1502905, "cpu": 2.6371723943603866, "lag": 0.434934 } }, "1588036124": { "stats": { "requests": 6, "responses": 6, "errors": 0, "info": 0, "success": 6, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 277, "max_time": 93, "avg_time": 46.166666666666664, "total_req_clength": 14, "max_req_clength": 14, "avg_req_clength": 2, "total_res_clength": 390, "max_res_clength": 184, "avg_res_clength": 65, "req_rate": 6, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 3, "apdex_tolerated": 3, "apdex_score": 0.75 }, "sys": { "rss": 50869979, "heapTotal": 16248832, "heapUsed": 14069679, "external": 1502832, "cpu": 1.83107078838978, "lag": 0.681433 } }, "1588036125": { "stats": { "requests": 6, "responses": 6, "errors": 1, "info": 0, "success": 5, "redirect": 0, "client_error": 0, "server_error": 1, "total_time": 349, "max_time": 80, "avg_time": 58.166666666666664, "total_req_clength": 349, "max_req_clength": 180, "avg_req_clength": 58, "total_res_clength": 884, "max_res_clength": 183, "avg_res_clength": 147, "req_rate": 6, "err_rate": 1, "apdex_threshold": 25, "apdex_satisfied": 0, "apdex_tolerated": 5, "apdex_score": 0.4166666666666667 }, "sys": { "rss": 51302400, "heapTotal": 16248832, "heapUsed": 14435155, "external": 1503317, "cpu": 2.294218929018835, "lag": 0.426407 } }, "1588036126": { "stats": { "requests": 9, "responses": 9, "errors": 1, "info": 0, "success": 8, "redirect": 0, "client_error": 1, "server_error": 0, "total_time": 444, "max_time": 95, "avg_time": 49.333333333333336, "total_req_clength": 247, "max_req_clength": 175, "avg_req_clength": 27, "total_res_clength": 1180, "max_res_clength": 192, "avg_res_clength": 131, "req_rate": 9, "err_rate": 1, "apdex_threshold": 25, "apdex_satisfied": 0, "apdex_tolerated": 8, "apdex_score": 0.4444444444444444 }, "sys": { "rss": 51535872, "heapTotal": 16248832, "heapUsed": 14272351, "external": 1507688, "cpu": 3.3007439705395645, "lag": 0.387344 } }, "1588036127": { "stats": { "requests": 6, "responses": 6, "errors": 2, "info": 0, "success": 4, "redirect": 0, "client_error": 2, "server_error": 0, "total_time": 257, "max_time": 75, "avg_time": 42.833333333333336, "total_req_clength": 40, "max_req_clength": 40, "avg_req_clength": 6, "total_res_clength": 843, "max_res_clength": 180, "avg_res_clength": 140, "req_rate": 6, "err_rate": 2, "apdex_threshold": 25, "apdex_satisfied": 1, "apdex_tolerated": 3, "apdex_score": 0.4166666666666667 }, "sys": { "rss": 51657582, "heapTotal": 16248832, "heapUsed": 14330150, "external": 1511274, "cpu": 2.350132312879166, "lag": 1.160142 } }, "1588036128": { "stats": { "requests": 6, "responses": 6, "errors": 1, "info": 0, "success": 5, "redirect": 0, "client_error": 1, "server_error": 0, "total_time": 252, "max_time": 69, "avg_time": 42, "total_req_clength": 0, "max_req_clength": 0, "avg_req_clength": 0, "total_res_clength": 866, "max_res_clength": 194, "avg_res_clength": 144, "req_rate": 6, "err_rate": 1, "apdex_threshold": 25, "apdex_satisfied": 1, "apdex_tolerated": 4, "apdex_score": 0.5 }, "sys": { "rss": 51752960, "heapTotal": 16248832, "heapUsed": 14401704, "external": 1511135, "cpu": 2.7490711922115465, "lag": 0.478808 } }, "1588036129": { "stats": { "requests": 4, "responses": 4, "errors": 1, "info": 0, "success": 3, "redirect": 0, "client_error": 1, "server_error": 0, "total_time": 287, "max_time": 100, "avg_time": 71.75, "total_req_clength": 107, "max_req_clength": 107, "avg_req_clength": 26, "total_res_clength": 514, "max_res_clength": 166, "avg_res_clength": 128, "req_rate": 4, "err_rate": 1, "apdex_threshold": 25, "apdex_satisfied": 1, "apdex_tolerated": 2, "apdex_score": 0.5 }, "sys": { "rss": 51979410, "heapTotal": 16248832, "heapUsed": 14686357, "external": 1511114, "cpu": 2.237339284836614, "lag": 0.458961 } }, "1588036130": { "stats": { "requests": 4, "responses": 4, "errors": 1, "info": 0, "success": 3, "redirect": 0, "client_error": 0, "server_error": 1, "total_time": 191, "max_time": 71, "avg_time": 47.75, "total_req_clength": 0, "max_req_clength": 0, "avg_req_clength": 0, "total_res_clength": 273, "max_res_clength": 170, "avg_res_clength": 68, "req_rate": 4, "err_rate": 1, "apdex_threshold": 25, "apdex_satisfied": 0, "apdex_tolerated": 3, "apdex_score": 0.375 }, "sys": { "rss": 51611941, "heapTotal": 16248832, "heapUsed": 14362863, "external": 1510908, "cpu": 1.4212281865926932, "lag": 0.401021 } }, "1588036131": { "stats": { "requests": 8, "responses": 8, "errors": 1, "info": 0, "success": 7, "redirect": 0, "client_error": 1, "server_error": 0, "total_time": 432, "max_time": 92, "avg_time": 54, "total_req_clength": 94, "max_req_clength": 67, "avg_req_clength": 11, "total_res_clength": 829, "max_res_clength": 164, "avg_res_clength": 103, "req_rate": 8, "err_rate": 1, "apdex_threshold": 25, "apdex_satisfied": 2, "apdex_tolerated": 5, "apdex_score": 0.5625 }, "sys": { "rss": 51893394, "heapTotal": 16248832, "heapUsed": 14700464, "external": 1511097, "cpu": 3.7085144166966355, "lag": 0.45644 } }, "1588036132": { "stats": { "requests": 4, "responses": 4, "errors": 2, "info": 0, "success": 2, "redirect": 0, "client_error": 2, "server_error": 0, "total_time": 189, "max_time": 94, "avg_time": 47.25, "total_req_clength": 173, "max_req_clength": 107, "avg_req_clength": 43, "total_res_clength": 575, "max_res_clength": 193, "avg_res_clength": 143, "req_rate": 4, "err_rate": 2, "apdex_threshold": 25, "apdex_satisfied": 1, "apdex_tolerated": 1, "apdex_score": 0.375 }, "sys": { "rss": 51584439, "heapTotal": 16248832, "heapUsed": 14485653, "external": 1511333, "cpu": 1.2179044535085592, "lag": 0.43403 } }, "1588036133": { "stats": { "requests": 6, "responses": 6, "errors": 0, "info": 0, "success": 6, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 261, "max_time": 71, "avg_time": 43.5, "total_req_clength": 137, "max_req_clength": 137, "avg_req_clength": 22, "total_res_clength": 763, "max_res_clength": 191, "avg_res_clength": 127, "req_rate": 6, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 2, "apdex_tolerated": 4, "apdex_score": 0.6666666666666666 }, "sys": { "rss": 51630080, "heapTotal": 16248832, "heapUsed": 14543082, "external": 1511360, "cpu": 1.7111267883750845, "lag": 0.435614 } }, "1588036134": { "stats": { "requests": 9, "responses": 9, "errors": 2, "info": 0, "success": 7, "redirect": 0, "client_error": 1, "server_error": 1, "total_time": 537, "max_time": 93, "avg_time": 59.666666666666664, "total_req_clength": 278, "max_req_clength": 154, "avg_req_clength": 30, "total_res_clength": 1032, "max_res_clength": 172, "avg_res_clength": 114, "req_rate": 9, "err_rate": 2, "apdex_threshold": 25, "apdex_satisfied": 1, "apdex_tolerated": 6, "apdex_score": 0.4444444444444444 }, "sys": { "rss": 51611941, "heapTotal": 16248832, "heapUsed": 14581921, "external": 1511257, "cpu": 3.470801854823579, "lag": 0.437355 } }, "1588036135": { "stats": { "requests": 2, "responses": 2, "errors": 0, "info": 0, "success": 2, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 134, "max_time": 92, "avg_time": 67, "total_req_clength": 0, "max_req_clength": 0, "avg_req_clength": 0, "total_res_clength": 48, "max_res_clength": 29, "avg_res_clength": 24, "req_rate": 2, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 0, "apdex_tolerated": 2, "apdex_score": 0.5 }, "sys": { "rss": 51811474, "heapTotal": 16323730, "heapUsed": 14807416, "external": 1511396, "cpu": 1.0934839660054725, "lag": 0.453681 } }, "1588036136": { "stats": { "requests": 2, "responses": 2, "errors": 1, "info": 0, "success": 1, "redirect": 0, "client_error": 1, "server_error": 0, "total_time": 43, "max_time": 42, "avg_time": 21.5, "total_req_clength": 127, "max_req_clength": 127, "avg_req_clength": 63, "total_res_clength": 174, "max_res_clength": 152, "avg_res_clength": 87, "req_rate": 2, "err_rate": 1, "apdex_threshold": 25, "apdex_satisfied": 0, "apdex_tolerated": 1, "apdex_score": 0.25 }, "sys": { "rss": 51435227, "heapTotal": 16510976, "heapUsed": 14486603, "external": 1511144, "cpu": 0.8479732873082219, "lag": 0.450826 } }, "1588036137": { "stats": { "requests": 2, "responses": 0, "errors": 0, "info": 0, "success": 0, "redirect": 0, "client_error": 0, "server_error": 0, "total_time": 0, "max_time": 0, "avg_time": 0, "total_req_clength": 16, "max_req_clength": 16, "avg_req_clength": 8, "total_res_clength": 0, "max_res_clength": 0, "avg_res_clength": 0, "req_rate": 0, "err_rate": 0, "apdex_threshold": 25, "apdex_satisfied": 0, "apdex_tolerated": 0, "apdex_score": 0 }, "sys": { "rss": 0, "heapTotal": 0, "heapUsed": 0, "external": 0, "cpu": 0 } } } }, "apidefs": { "/pets": { "GET": { "swagger": true, "deprecated": false, "description": "Returns all pets from the system that the user has access to\nNam sed condimentum est. Maecenas tempor sagittis sapien, nec rhoncus sem sagittis sit amet. Aenean at gravida augue, ac iaculis sem. Curabitur odio lorem, ornare eget elementum nec, cursus id lectus. Duis mi turpis, pulvinar ac eros ac, tincidunt varius justo. In hac habitasse platea dictumst. Integer at adipiscing ante, a sagittis ligula. Aenean pharetra tempor ante molestie imperdiet. Vivamus id aliquam diam. Cras quis velit non tortor eleifend sagittis. Praesent at enim pharetra urna volutpat venenatis eget eget mauris. In eleifend fermentum facilisis. Praesent enim enim, gravida ac sodales sed, placerat id erat. Suspendisse lacus dolor, consectetur non augue vel, vehicula interdum libero. Morbi euismod sagittis libero sed lacinia.\n\nSed tempus felis lobortis leo pulvinar rutrum. Nam mattis velit nisl, eu condimentum ligula luctus nec. Phasellus semper velit eget aliquet faucibus. In a mattis elit. Phasellus vel urna viverra, condimentum lorem id, rhoncus nibh. Ut pellentesque posuere elementum. Sed a varius odio. Morbi rhoncus ligula libero, vel eleifend nunc tristique vitae. Fusce et sem dui. Aenean nec scelerisque tortor. Fusce malesuada accumsan magna vel tempus. Quisque mollis felis eu dolor tristique, sit amet auctor felis gravida. Sed libero lorem, molestie sed nisl in, accumsan tempor nisi. Fusce sollicitudin massa ut lacinia mattis. Sed vel eleifend lorem. Pellentesque vitae felis pretium, pulvinar elit eu, euismod sapien.\n", "operationId": "findPets" }, "POST": { "swagger": true, "deprecated": false, "description": "Creates a new pet in the store. Duplicates are allowed", "operationId": "addPet" } }, "/pets/{id}": { "GET": { "swagger": true, "deprecated": false, "description": "Returns a user based on a single ID, if the user does not have access to the pet", "operationId": "find pet by id" }, "DELETE": { "swagger": true, "deprecated": false, "description": "deletes a single pet based on the ID supplied", "operationId": "deletePet" } } } } ================================================ FILE: src/layouts/mainlayout.vue ================================================ ================================================ FILE: src/main.js ================================================ import Vue from 'vue'; import App from './App.vue'; import router from './router'; import store from './store/store'; import VueGoodTablePlugin from 'vue-good-table'; import 'vue-good-table/dist/vue-good-table.css'; import { DashBlocks, DbDashboard, DbHorizon, DbSunburst, DbSankey, DbRidgeline, DbChartjsBar, DbChartjsHorizontalBar, DbChartjsDoughnut, DbChartjsLine, DbChartjsPie, DbChartjsPolarArea, DbChartjsRadar, DbChartjsBubble, DbChartjsScatter, DbNumber, DbEasyPie, DbTrendLine, DbTrendBar, DbSparkline, DbDygraphsBar, DbDygraphsLine, DbDygraphsSparkLine, DbDygraphsDateTimeHistogram } from 'dashblocks'; Vue.use(DashBlocks, { components: { DbDashboard, DbHorizon, DbSunburst, DbSankey, DbRidgeline, DbChartjsBar, DbChartjsHorizontalBar, DbChartjsDoughnut, DbChartjsLine, DbChartjsPie, DbChartjsPolarArea, DbChartjsRadar, DbChartjsBubble, DbChartjsScatter, DbNumber, DbEasyPie, DbTrendLine, DbTrendBar, DbSparkline, DbDygraphsBar, DbDygraphsLine, DbDygraphsSparkLine, DbDygraphsDateTimeHistogram } //components: dashblocksComponents }); // Sample: to import all /* import { DashBlocks } from 'dashblocks'; import * as dashblocksComponents from 'dashblocks'; Vue.use(DashBlocks, { components: dashblocksComponents }); */ // Dashblocks CSS import 'dashblocks/dist/dashblocks.css'; import './quasar'; //Vue.config.productionTip = false; Vue.use(VueGoodTablePlugin); new Vue({ router, store, render: h => h(App) }).$mount('#app'); ================================================ FILE: src/mixins/demodashboard.js ================================================ import { mapState } from 'vuex'; export const demodashboard = { computed: { ...mapState({ dark: state => state.layout.dark, dashboardColorScheme: state => state.layout.dashboardColorScheme }) }, watch: { dashboardColorScheme(val) { console.log(`dashboardColorScheme changed to ${val}`); this.$set(this.dbspec, 'colorScheme', val); } } }; ================================================ FILE: src/mixins/vgtmethods.js ================================================ // Standard methods for views that use vue-good-table export const vgtMethods = { methods: { formatToFixed2: function(value) { return value.toFixed(2); }, formatToFixed0: function(value) { return value.toFixed(0); }, tdClassErrors(row) { return row.errors > 0 ? 'sws-td-badge sws-td-badge-neg' : ''; }, tdClassErrRate(row) { return row.err_rate > 0 ? 'sws-td-badge sws-td-badge-neg' : ''; }, tdClassCErr(row) { return row.client_error > 0 ? 'sws-td-badge sws-td-badge-neg' : ''; }, tdClassSErr(row) { return row.server_error > 0 ? 'sws-td-badge sws-td-badge-neg' : ''; }, tdClassApdex(row) { return 'text-weight-bold ' + (row.apdex_score < 0.6 ? 'sws-td-badge sws-td-badge-warn' : ''); } } }; ================================================ FILE: src/pages/login.vue ================================================ ================================================ FILE: src/quasar.js ================================================ import Vue from 'vue'; import './styles/quasar.scss'; import '@quasar/extras/roboto-font/roboto-font.css'; import '@quasar/extras/material-icons/material-icons.css'; //import '@quasar/extras/material-icons-outlined/material-icons-outlined.css'; //import '@quasar/extras/material-icons-round/material-icons-round.css'; //import '@quasar/extras/material-icons-sharp/material-icons-sharp.css'; //import '@quasar/extras/fontawesome-v5/fontawesome-v5.css'; //import '@quasar/extras/ionicons-v4/ionicons-v4.css'; //import '@quasar/extras/mdi-v4/mdi-v4.css'; import '@quasar/extras/mdi-v5/mdi-v5.css'; import { Quasar, Ripple, ClosePopup, TouchPan, LoadingBar, Notify, Dialog, QLayout, QHeader, QDrawer, QPageContainer, QPage, QPageSticky, QToolbar, QToolbarTitle, QBtn, QBtnDropdown, QBtnGroup, QIcon, QList, QItem, QItemSection, QItemLabel, QSplitter, QScrollArea, QExpansionItem, QAvatar, QBtnToggle, QSeparator, QTooltip, QTable, QTd, QTh, QTr, QCard, QCardSection, QCardActions, QSelect, QToggle, QBadge, QSpace, QInput, QTabs, QTab, QTabPanels, QTabPanel, QDate, QTime, QPopupProxy, QBar, QPopupEdit, QRadio, QResizeObserver, QChip, QCheckbox, QPagination, QDialog, QVirtualScroll, QSkeleton, QImg, QMenu, QBanner } from 'quasar'; Vue.use(Quasar, { config: {}, components: { QLayout, QHeader, QDrawer, QPageContainer, QPage, QPageSticky, QToolbar, QToolbarTitle, QBtn, QBtnDropdown, QBtnGroup, QIcon, QList, QItem, QItemSection, QItemLabel, QSplitter, QScrollArea, QExpansionItem, QAvatar, QBtnToggle, QSeparator, QTooltip, QTable, QTd, QTh, QTr, QCard, QCardSection, QCardActions, QSelect, QToggle, QBadge, QSpace, QInput, QTabs, QTab, QTabPanels, QTabPanel, QDate, QTime, QPopupProxy, QBar, QPopupEdit, QRadio, QResizeObserver, QChip, QCheckbox, QPagination, QDialog, QVirtualScroll, QSkeleton, QImg, QMenu, QBanner }, directives: { Ripple, ClosePopup, TouchPan }, plugins: { LoadingBar, Notify, Dialog } }); ================================================ FILE: src/router.js ================================================ import Vue from 'vue'; import Router from 'vue-router'; import MainLayout from './layouts/mainlayout.vue'; import Home from './views/Home.vue'; import About from './views/About.vue'; import DashblocksShowcase from './views/DashblocksShowcase.vue'; import Typography from './views/typography.vue'; import MaterialIcons from './views/materialicons.vue'; import ChartJsShowcase from './views/ChartJsShowcase.vue'; import Dygraphs from './views/Dygraphs.vue'; import Mdi from './views/mdi.vue'; import Tables from './views/tables.vue'; import Forms from './views/forms.vue'; import Observability from './views/observability.vue'; import Summary from './views/summary.vue'; import Requests from './views/requests.vue'; import VGT from './views/vuegoodtable.vue'; import QuasarTable from './views/quasartable.vue'; import APIOp from './views/apiop.vue'; import Errors from './views/errors.vue'; import Timeline from './views/timeline.vue'; import Login from './pages/login.vue'; Vue.use(Router); export default new Router({ routes: [ { path: '/', component: MainLayout, children: [ { path: '', name: 'showcase', component: DashblocksShowcase }, { path: '/chartjs', name: 'chartjs', component: ChartJsShowcase }, { path: '/dygraphs', name: 'dygraphs', component: Dygraphs }, { path: '/typography', name: 'typography', component: Typography }, { path: '/mdi', name: 'mdi', component: Mdi }, { path: '/icons', name: 'icons', component: MaterialIcons }, { path: '/tables', name: 'tables', component: Tables }, { path: '/forms', name: 'forms', component: Forms }, { path: '/observability', name: 'observability', component: Observability }, { path: '/summary', name: 'summary', component: Summary }, { path: '/requests', name: 'requests', component: Requests }, { path: '/vgt', name: 'vgt', component: VGT }, { path: '/apiop', name: 'apiop', component: APIOp }, { path: '/errors', name: 'errors', component: Errors }, { path: '/quasartable', name: 'quasartable', component: QuasarTable }, { path: '/timeline', name: 'timeline', component: Timeline } ] }, { path: '/login', component: Login } ] }); ================================================ FILE: src/store/modules/layout.js ================================================ /* * Layout state Vuex Module */ //import { dbColors } from 'dashblocks'; const state = { dark: (localStorage['ub-dark-mode'] || 'false') === 'true', menuAutoExpand: (localStorage['ub-menu-auto-expand'] || 'false') === 'true', menuMini: (localStorage['ub-menu-mini'] || 'false') === 'true', dashboardColorScheme: localStorage['ub-dashboard-color-scheme'] || 'Standard' }; const getters = {}; const mutations = { SET_DARK(state, { dark }) { localStorage['ub-dark-mode'] = dark; state.dark = dark; }, SET_MENU_AUTO_EXPAND(state, { menuAutoExpand }) { localStorage['ub-menu-auto-expand'] = menuAutoExpand; state.menuAutoExpand = menuAutoExpand; }, SET_MENU_MINI(state, { menuMini }) { localStorage['ub-menu-mini'] = menuMini; state.menuMini = menuMini; }, SET_DASHBOARD_COLOR_SCHEME(state, { dashboardColorScheme }) { localStorage['ub-dashboard-color-scheme'] = dashboardColorScheme; state.dashboardColorScheme = dashboardColorScheme; } }; const actions = { setDark({ commit }, { dark }) { commit('SET_DARK', { dark: dark }); }, setMenuAutoExpand({ commit }, { menuAutoExpand }) { commit('SET_MENU_AUTO_EXPAND', { menuAutoExpand: menuAutoExpand }); }, setMenuMini({ commit }, { menuMini }) { commit('SET_MENU_MINI', { menuMini: menuMini }); }, setDashboardColorScheme({ commit }, { dashboardColorScheme }) { commit('SET_DASHBOARD_COLOR_SCHEME', { dashboardColorScheme: dashboardColorScheme }); } }; export default { namespaced: true, state, getters, mutations, actions }; ================================================ FILE: src/store/store.js ================================================ import Vue from 'vue'; import Vuex from 'vuex'; import layout from './modules/layout'; Vue.use(Vuex); export default new Vuex.Store({ state: {}, modules: { layout }, mutations: {}, actions: {} }); ================================================ FILE: src/styles/quasar.scss ================================================ @import './quasar.variables.scss'; @import '~quasar-styl'; // @import '~quasar-addon-styl' // ??? //@import 'dashblocks/src/assets/scss/dashblocks.scss'; @import 'textbgcolors.scss'; @import 'ubbox.scss'; @import 'ubcode.scss'; @import 'vgt.scss'; .bg-none { background: none; } .ub-bordered { border: 1px solid rgba(0, 0, 0, 0.12); } .body--dark .ub-bordered { border-color: rgba(255, 255, 255, 0.28); } .body--dark .q-menu { -webkit-box-shadow: 0 1px 5px rgba(255, 255, 255, 0.12), 0 1px 1px rgba(255, 255, 255, 0.14), 0 1px 1px -2px rgba(255, 255, 255, 0.28); box-shadow: 0 1px 5px rgba(255, 255, 255, 0.12), 0 1px 1px rgba(255, 255, 255, 0.14), 0 1px 1px -2px rgba(255, 255, 255, 0.28); } body.body--dark { color: $grey-6; } .q-dark { color: $grey-6; } .q-item { color: $blue-grey-8; } .q-item--dark { color: $blue-grey-4; } a { color: $primary; text-decoration: none; } a:hover { color: $primary; text-decoration: underline; } .ub-btn-dropdown-bare { .q-btn-dropdown__arrow { margin-left: 0px; } } .db-toolbar { background: #0f2027; /* fallback for old browsers */ background: -webkit-linear-gradient(to right, #2c5364, #203a43, #0f2027); /* Chrome 10-25, Safari 5.1-6 */ background: linear-gradient(to right, #2c5364, #203a43, #0f2027); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */ } .ub-page { @media (max-width: $breakpoint-xs-max) { padding: 4px 8px 8px 8px; } @media (min-width: $breakpoint-sm-min) and (max-width: $breakpoint-md-max) { padding: 4px 12px 16px 12px; } @media (min-width: $breakpoint-lg-min) { padding: 4px 12px 24px 12px; } } ================================================ FILE: src/styles/quasar.variables.scss ================================================ // It's highly recommended to change the default colors // to match your app's branding. $primary : #027BE3; $secondary : #26A69A; $accent : #9C27B0; $dark : #1D1D1D; $positive : #21BA45; $negative : #C10015; $info : #31CCEC; $warning : #F2C037; @import '~quasar-variables-styl'; ================================================ FILE: src/styles/textbgcolors.scss ================================================ /* Various text and bg colors */ .text-down1 { color: rgba(128,128,128,0.7); } ================================================ FILE: src/styles/ubbox.scss ================================================ /** UB Flex Box */ .ub-box { display: flex; flex-flow: column; flex-shrink: 0; .ub-row { border: 0px; } .ub-row.ub-box-fixed { flex: 0 0 auto; width: 100%; } .ub-row.ub-box-expand { flex: 1 1 auto; width: 100%; } .ub-row.ub-footer { flex: 0 1 24px; width: 100%; } } ================================================ FILE: src/styles/ubcode.scss ================================================ /* UBook - code highlighting styles */ .ub-code { font: 14px/normal 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', monospace; color: #757575; .ub-v-s { padding: 2px; margin: 1px; background-color: #f5f5f5; border-radius: 2px; color: #1a1aa6; } .ub-v-n { padding: 2px; margin: 1px; background-color: #f5f5f5; border-radius: 2px; color: #9a050f; } } .q-dark .ub-code { color: #757575; .ub-v-s { background-color: inherit; color: #7986CB; } .ub-v-n { background-color: inherit; color: #AD1457; } } ================================================ FILE: src/styles/vgt.scss ================================================ /* vue-good-table styles */ table.vgt-table.sws-table { font-size: 14px; } table.vgt-table.sws-table.nocturnal { background-color: $grey-10; } table.vgt-table.sws-table.nocturnal td { color: $grey-5; } table.vgt-table.sws-table.nocturnal th { color: $grey-4; } .sws-td-badge span { border-radius: 8px; padding: 2px 6px; color: white; } .sws-td-badge-neg span { background-color: $negative; opacity: 0.6; } .sws-td-badge-warn span { background-color: $warning; opacity: 0.7; color: black; } ================================================ FILE: src/utils.js ================================================ // Utilities import pathOr from 'ramda/src/pathOr'; class Utils { constructor() {} formatBytes(a, b) { if (0 === a) return { value: 0, qualifier: 'Bytes' }; let c = 1e3, d = b || 2, e = ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'], f = Math.floor(Math.log(a) / Math.log(c)); return { value: parseFloat((a / Math.pow(c, f)).toFixed(d)), qualifier: e[f] }; } bucketsToLabels(buckets) { let labels = []; if (Array.isArray(buckets) && buckets.length > 0) { let prevBucket = 0; for (let bucket of buckets) { labels.push(`${prevBucket}-${bucket}`); prevBucket = bucket; } labels.push(`${prevBucket}-inf`); } return labels; } getKVObjSortedArray(obj, asc) { let keys = Object.keys(obj); let data = keys.map(x => { return { k: x, v: obj[x] }; }); data.sort(function(a, b) { return asc ? a.v - b.v : b.v - a.v; }); return data; } getApiStatsArray(statsData) { let res = []; let apiStats = pathOr(null, ['apistats'], statsData); let apiDefs = pathOr(null, ['apidefs'], statsData); if (!apiStats) { return res; } for (let apiPath of Object.keys(apiStats)) { let apiMethods = apiStats[apiPath]; for (let apiMethod of Object.keys(apiMethods)) { res.push( Object.assign( { path: apiPath, method: apiMethod }, apiMethods[apiMethod], { tags: pathOr([], [apiPath, apiMethod, 'tags'], apiDefs).join(',') } ) ); } } return res; } getMethodStatsArray(statsData) { let res = []; let allMethodStats = pathOr(null, ['method'], statsData); if (!allMethodStats) { return res; } for (let methodName of Object.keys(allMethodStats)) { res.push( Object.assign( { method: methodName }, allMethodStats[methodName] ) ); } return res; } getCurrentTimelineBucket(statsData) { let timelineSettings = pathOr(null, ['timeline', 'settings'], statsData); let timelineData = pathOr(null, ['timeline', 'data'], statsData); if (timelineData && timelineSettings) { return timelineData[timelineSettings.bucket_current]; } return {}; } // Returns timeline sorted by timestampts asc // TODO add API to return timeline in array already sorted getSortedTimeline(statsData) { let timelineSorted = []; let timelineSettings = pathOr(null, ['timeline', 'settings'], statsData); let timelineData = pathOr(null, ['timeline', 'data'], statsData); if (timelineData && timelineSettings) { for (let key of Object.keys(timelineData)) { let entry = timelineData[key]; entry.tc = parseInt(key); entry.ts = entry.tc * (timelineSettings.bucket_duration || 60000); timelineSorted.push(entry); } } // Sort it by timecode ascending timelineSorted.sort(function(a, b) { return a.tc - b.tc; }); return timelineSorted; } } const utils = new Utils(); export default utils; ================================================ FILE: src/views/About.vue ================================================ ================================================ FILE: src/views/ChartJsShowcase.vue ================================================ ================================================ FILE: src/views/DashblocksShowcase.vue ================================================ ================================================ FILE: src/views/Dygraphs.vue ================================================ ================================================ FILE: src/views/Home.vue ================================================ ================================================ FILE: src/views/SampleDashboard.vue ================================================ ================================================ FILE: src/views/apiop.vue ================================================ ================================================ FILE: src/views/errors.vue ================================================ ================================================ FILE: src/views/forms.vue ================================================ ================================================ FILE: src/views/materialicons.vue ================================================ ================================================ FILE: src/views/mdi.vue ================================================ ================================================ FILE: src/views/observability.vue ================================================ ================================================ FILE: src/views/quasartable.vue ================================================ ================================================ FILE: src/views/requests.vue ================================================ ================================================ FILE: src/views/summary.vue ================================================ ================================================ FILE: src/views/tables.vue ================================================ ================================================ FILE: src/views/timeline.vue ================================================ ================================================ FILE: src/views/typography.vue ================================================ ================================================ FILE: src/views/vuegoodtable.vue ================================================ ================================================ FILE: tests/e2e/.eslintrc.js ================================================ module.exports = { plugins: ["cypress"], env: { mocha: true, "cypress/globals": true }, rules: { strict: "off" } }; ================================================ FILE: tests/e2e/plugins/index.js ================================================ // https://docs.cypress.io/guides/guides/plugins-guide.html // if you need a custom webpack configuration you can uncomment the following import // and then use the `file:preprocessor` event // as explained in the cypress docs // https://docs.cypress.io/api/plugins/preprocessors-api.html#Examples /* eslint-disable import/no-extraneous-dependencies, global-require, arrow-body-style */ // const webpack = require('@cypress/webpack-preprocessor') module.exports = (on, config) => { // on('file:preprocessor', webpack({ // webpackOptions: require('@vue/cli-service/webpack.config'), // watchOptions: {} // })) return Object.assign({}, config, { fixturesFolder: 'tests/e2e/fixtures', integrationFolder: 'tests/e2e/specs', screenshotsFolder: 'tests/e2e/screenshots', videosFolder: 'tests/e2e/videos', supportFile: 'tests/e2e/support/index.js' }); }; ================================================ FILE: tests/e2e/specs/test.js ================================================ // https://docs.cypress.io/api/introduction/api.html describe('My First Test', () => { it('Visits the app root url', () => { cy.visit('/'); }); }); ================================================ FILE: tests/e2e/support/commands.js ================================================ // *********************************************** // This example commands.js shows you how to // create various custom commands and overwrite // existing commands. // // For more comprehensive examples of custom // commands please read more here: // https://on.cypress.io/custom-commands // *********************************************** // // // -- This is a parent command -- // Cypress.Commands.add("login", (email, password) => { ... }) // // // -- This is a child command -- // Cypress.Commands.add("drag", { prevSubject: 'element'}, (subject, options) => { ... }) // // // -- This is a dual command -- // Cypress.Commands.add("dismiss", { prevSubject: 'optional'}, (subject, options) => { ... }) // // // -- This is will overwrite an existing command -- // Cypress.Commands.overwrite("visit", (originalFn, url, options) => { ... }) ================================================ FILE: tests/e2e/support/index.js ================================================ // *********************************************************** // This example support/index.js is processed and // loaded automatically before your test files. // // This is a great place to put global configuration and // behavior that modifies Cypress. // // You can change the location of this file or turn off // automatically serving support files with the // 'supportFile' configuration option. // // You can read more here: // https://on.cypress.io/configuration // *********************************************************** // Import commands.js using ES2015 syntax: import './commands'; // Alternatively you can use CommonJS syntax: // require('./commands') ================================================ FILE: tests/unit/.eslintrc.js ================================================ module.exports = { env: { jest: true } }; ================================================ FILE: vue.config.js ================================================ // vue.config.js const webpack = require('webpack'); const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin; module.exports = { publicPath: '/dashblocks-template/', configureWebpack: { plugins: [ // Ignore all locale files of moment.js new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/) //new BundleAnalyzerPlugin({ analyzerMode: 'static' }) ] }, pluginOptions: { quasar: { importStrategy: 'manual', rtlSupport: false, treeShake: true } }, transpileDependencies: ['quasar'] };