├── .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 ├── .mocharc.json ├── .releaseconfig.json ├── LICENSE ├── README.md ├── RetentionPolicies.md ├── admin ├── i18n │ ├── de.json │ ├── en.json │ ├── es.json │ ├── fr.json │ ├── it.json │ ├── nl.json │ ├── pl.json │ ├── pt.json │ ├── ru.json │ ├── uk.json │ └── zh-cn.json ├── influxdb.png ├── jsonConfig.json ├── jsonCustom.json └── words.js ├── docker-compose.yaml ├── docs └── de │ ├── img │ ├── influxdb_Filtern_loggen.jpg │ ├── influxdb_ioBroker_Adapter_SQL_objects_Data.jpg │ ├── influxdb_ioBroker_Adapter_SQL_objects_filter.jpg │ ├── influxdb_ioBroker_Adapter_SQL_objects_timerange.jpg │ ├── influxdb_ioBroker_Adapter_SQL_objects_type.jpg │ ├── influxdb_ioBroker_Adapter_influxDB_Konfig.jpg │ ├── influxdb_ioBroker_Adapter_influxDB_objects.jpg │ ├── influxdb_ioBroker_Adapter_rickshaw03.jpg │ └── influxdb_ioBroker_adapter_History_devices.jpg │ └── influxdb.md ├── eslint.config.mjs ├── io-package.json ├── package.json ├── prettier.config.mjs ├── src ├── lib │ ├── Database.ts │ ├── DatabaseInfluxDB1x.ts │ ├── DatabaseInfluxDB2x.ts │ └── aggregate.ts ├── main.ts └── types.d.ts ├── test ├── lib │ ├── setup.js │ ├── testCompare.ts │ └── testcases.js ├── mocha.setup.js ├── testAdapter.js ├── testAdapterBuffer.js ├── testAdapterExisting.js ├── testAdapterTags.js └── testPackageFiles.js ├── tsconfig.build.json └── tsconfig.json /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/.github/auto-merge.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot-automerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/.github/workflows/dependabot-automerge.yml -------------------------------------------------------------------------------- /.github/workflows/test-and-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/.github/workflows/test-and-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/.gitignore -------------------------------------------------------------------------------- /.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/.mocharc.json -------------------------------------------------------------------------------- /.releaseconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/.releaseconfig.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/README.md -------------------------------------------------------------------------------- /RetentionPolicies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/RetentionPolicies.md -------------------------------------------------------------------------------- /admin/i18n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/admin/i18n/de.json -------------------------------------------------------------------------------- /admin/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/admin/i18n/en.json -------------------------------------------------------------------------------- /admin/i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/admin/i18n/es.json -------------------------------------------------------------------------------- /admin/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/admin/i18n/fr.json -------------------------------------------------------------------------------- /admin/i18n/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/admin/i18n/it.json -------------------------------------------------------------------------------- /admin/i18n/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/admin/i18n/nl.json -------------------------------------------------------------------------------- /admin/i18n/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/admin/i18n/pl.json -------------------------------------------------------------------------------- /admin/i18n/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/admin/i18n/pt.json -------------------------------------------------------------------------------- /admin/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/admin/i18n/ru.json -------------------------------------------------------------------------------- /admin/i18n/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/admin/i18n/uk.json -------------------------------------------------------------------------------- /admin/i18n/zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/admin/i18n/zh-cn.json -------------------------------------------------------------------------------- /admin/influxdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/admin/influxdb.png -------------------------------------------------------------------------------- /admin/jsonConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/admin/jsonConfig.json -------------------------------------------------------------------------------- /admin/jsonCustom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/admin/jsonCustom.json -------------------------------------------------------------------------------- /admin/words.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/admin/words.js -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /docs/de/img/influxdb_Filtern_loggen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/docs/de/img/influxdb_Filtern_loggen.jpg -------------------------------------------------------------------------------- /docs/de/img/influxdb_ioBroker_Adapter_SQL_objects_Data.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/docs/de/img/influxdb_ioBroker_Adapter_SQL_objects_Data.jpg -------------------------------------------------------------------------------- /docs/de/img/influxdb_ioBroker_Adapter_SQL_objects_filter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/docs/de/img/influxdb_ioBroker_Adapter_SQL_objects_filter.jpg -------------------------------------------------------------------------------- /docs/de/img/influxdb_ioBroker_Adapter_SQL_objects_timerange.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/docs/de/img/influxdb_ioBroker_Adapter_SQL_objects_timerange.jpg -------------------------------------------------------------------------------- /docs/de/img/influxdb_ioBroker_Adapter_SQL_objects_type.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/docs/de/img/influxdb_ioBroker_Adapter_SQL_objects_type.jpg -------------------------------------------------------------------------------- /docs/de/img/influxdb_ioBroker_Adapter_influxDB_Konfig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/docs/de/img/influxdb_ioBroker_Adapter_influxDB_Konfig.jpg -------------------------------------------------------------------------------- /docs/de/img/influxdb_ioBroker_Adapter_influxDB_objects.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/docs/de/img/influxdb_ioBroker_Adapter_influxDB_objects.jpg -------------------------------------------------------------------------------- /docs/de/img/influxdb_ioBroker_Adapter_rickshaw03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/docs/de/img/influxdb_ioBroker_Adapter_rickshaw03.jpg -------------------------------------------------------------------------------- /docs/de/img/influxdb_ioBroker_adapter_History_devices.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/docs/de/img/influxdb_ioBroker_adapter_History_devices.jpg -------------------------------------------------------------------------------- /docs/de/influxdb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/docs/de/influxdb.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /io-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/io-package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/prettier.config.mjs -------------------------------------------------------------------------------- /src/lib/Database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/src/lib/Database.ts -------------------------------------------------------------------------------- /src/lib/DatabaseInfluxDB1x.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/src/lib/DatabaseInfluxDB1x.ts -------------------------------------------------------------------------------- /src/lib/DatabaseInfluxDB2x.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/src/lib/DatabaseInfluxDB2x.ts -------------------------------------------------------------------------------- /src/lib/aggregate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/src/lib/aggregate.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/src/types.d.ts -------------------------------------------------------------------------------- /test/lib/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/test/lib/setup.js -------------------------------------------------------------------------------- /test/lib/testCompare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/test/lib/testCompare.ts -------------------------------------------------------------------------------- /test/lib/testcases.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/test/lib/testcases.js -------------------------------------------------------------------------------- /test/mocha.setup.js: -------------------------------------------------------------------------------- 1 | process.on('unhandledRejection', r => { 2 | throw r; 3 | }); 4 | -------------------------------------------------------------------------------- /test/testAdapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/test/testAdapter.js -------------------------------------------------------------------------------- /test/testAdapterBuffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/test/testAdapterBuffer.js -------------------------------------------------------------------------------- /test/testAdapterExisting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/test/testAdapterExisting.js -------------------------------------------------------------------------------- /test/testAdapterTags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/test/testAdapterTags.js -------------------------------------------------------------------------------- /test/testPackageFiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/test/testPackageFiles.js -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/HEAD/tsconfig.json --------------------------------------------------------------------------------