├── .eslintignore ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── auto-merge.yml ├── dependabot.yml ├── stale.yml └── workflows │ ├── codeql.yml │ ├── dependabot-automerge.yml │ └── test-and-release.yml ├── .gitignore ├── .releaseconfig.json ├── LICENSE ├── README.md ├── admin ├── .gitignore ├── history.png ├── history.psd ├── i18n │ ├── de │ │ └── translations.json │ ├── en │ │ └── translations.json │ ├── es │ │ └── translations.json │ ├── fr │ │ └── translations.json │ ├── it │ │ └── translations.json │ ├── nl │ │ └── translations.json │ ├── pl │ │ └── translations.json │ ├── pt │ │ └── translations.json │ ├── ru │ │ └── translations.json │ └── zh-cn │ │ └── translations.json ├── jsonConfig.json ├── jsonCustom.json └── words.js ├── converter ├── analyzeinflux.js ├── analyzesql.js └── history2db.js ├── docs ├── de │ ├── README.md │ └── img │ │ ├── adapter-settings-default.png │ │ ├── adapter-settings.png │ │ ├── object-list.png │ │ ├── object-settings-multiple.png │ │ ├── object-settings.png │ │ ├── state-chart.png │ │ └── state-history.png └── en │ ├── README.md │ └── img │ ├── adapter-settings-default.png │ ├── adapter-settings.png │ ├── object-list.png │ ├── object-settings-multiple.png │ ├── object-settings.png │ ├── state-chart.png │ └── state-history.png ├── io-package.json ├── lib ├── aggregate.js └── getHistory.js ├── log └── .gitignore ├── main.js ├── main.test.js ├── package.json ├── test ├── lib │ ├── setup.js │ └── testcases.js ├── mocha.setup.js ├── mocharc.custom.json ├── package.js ├── testAdapter.js ├── testAdapterExistingNoNulls.js └── tsconfig.json └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | **/.eslintrc.js 2 | admin/words.js -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/.github/auto-merge.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot-automerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/.github/workflows/dependabot-automerge.yml -------------------------------------------------------------------------------- /.github/workflows/test-and-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/.github/workflows/test-and-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/.gitignore -------------------------------------------------------------------------------- /.releaseconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["iobroker", "license"] 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/README.md -------------------------------------------------------------------------------- /admin/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/admin/history.png -------------------------------------------------------------------------------- /admin/history.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/admin/history.psd -------------------------------------------------------------------------------- /admin/i18n/de/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/admin/i18n/de/translations.json -------------------------------------------------------------------------------- /admin/i18n/en/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/admin/i18n/en/translations.json -------------------------------------------------------------------------------- /admin/i18n/es/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/admin/i18n/es/translations.json -------------------------------------------------------------------------------- /admin/i18n/fr/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/admin/i18n/fr/translations.json -------------------------------------------------------------------------------- /admin/i18n/it/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/admin/i18n/it/translations.json -------------------------------------------------------------------------------- /admin/i18n/nl/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/admin/i18n/nl/translations.json -------------------------------------------------------------------------------- /admin/i18n/pl/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/admin/i18n/pl/translations.json -------------------------------------------------------------------------------- /admin/i18n/pt/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/admin/i18n/pt/translations.json -------------------------------------------------------------------------------- /admin/i18n/ru/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/admin/i18n/ru/translations.json -------------------------------------------------------------------------------- /admin/i18n/zh-cn/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/admin/i18n/zh-cn/translations.json -------------------------------------------------------------------------------- /admin/jsonConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/admin/jsonConfig.json -------------------------------------------------------------------------------- /admin/jsonCustom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/admin/jsonCustom.json -------------------------------------------------------------------------------- /admin/words.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/admin/words.js -------------------------------------------------------------------------------- /converter/analyzeinflux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/converter/analyzeinflux.js -------------------------------------------------------------------------------- /converter/analyzesql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/converter/analyzesql.js -------------------------------------------------------------------------------- /converter/history2db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/converter/history2db.js -------------------------------------------------------------------------------- /docs/de/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/docs/de/README.md -------------------------------------------------------------------------------- /docs/de/img/adapter-settings-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/docs/de/img/adapter-settings-default.png -------------------------------------------------------------------------------- /docs/de/img/adapter-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/docs/de/img/adapter-settings.png -------------------------------------------------------------------------------- /docs/de/img/object-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/docs/de/img/object-list.png -------------------------------------------------------------------------------- /docs/de/img/object-settings-multiple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/docs/de/img/object-settings-multiple.png -------------------------------------------------------------------------------- /docs/de/img/object-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/docs/de/img/object-settings.png -------------------------------------------------------------------------------- /docs/de/img/state-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/docs/de/img/state-chart.png -------------------------------------------------------------------------------- /docs/de/img/state-history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/docs/de/img/state-history.png -------------------------------------------------------------------------------- /docs/en/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/docs/en/README.md -------------------------------------------------------------------------------- /docs/en/img/adapter-settings-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/docs/en/img/adapter-settings-default.png -------------------------------------------------------------------------------- /docs/en/img/adapter-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/docs/en/img/adapter-settings.png -------------------------------------------------------------------------------- /docs/en/img/object-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/docs/en/img/object-list.png -------------------------------------------------------------------------------- /docs/en/img/object-settings-multiple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/docs/en/img/object-settings-multiple.png -------------------------------------------------------------------------------- /docs/en/img/object-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/docs/en/img/object-settings.png -------------------------------------------------------------------------------- /docs/en/img/state-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/docs/en/img/state-chart.png -------------------------------------------------------------------------------- /docs/en/img/state-history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/docs/en/img/state-history.png -------------------------------------------------------------------------------- /io-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/io-package.json -------------------------------------------------------------------------------- /lib/aggregate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/lib/aggregate.js -------------------------------------------------------------------------------- /lib/getHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/lib/getHistory.js -------------------------------------------------------------------------------- /log/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/main.js -------------------------------------------------------------------------------- /main.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/main.test.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/package.json -------------------------------------------------------------------------------- /test/lib/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/test/lib/setup.js -------------------------------------------------------------------------------- /test/lib/testcases.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/test/lib/testcases.js -------------------------------------------------------------------------------- /test/mocha.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/test/mocha.setup.js -------------------------------------------------------------------------------- /test/mocharc.custom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/test/mocharc.custom.json -------------------------------------------------------------------------------- /test/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/test/package.js -------------------------------------------------------------------------------- /test/testAdapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/test/testAdapter.js -------------------------------------------------------------------------------- /test/testAdapterExistingNoNulls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/test/testAdapterExistingNoNulls.js -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.history/HEAD/tsconfig.json --------------------------------------------------------------------------------