forked from smarthomeNG/plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.yaml
More file actions
executable file
·66 lines (58 loc) · 2.73 KB
/
plugin.yaml
File metadata and controls
executable file
·66 lines (58 loc) · 2.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Metadata for the Smart-Plugin
plugin:
# Global plugin attributes
type: system # plugin type (gateway, interface, protocol, system, web)
description: # Alternative: description in multiple languages
de: 'Ermöglicht Speicherung von Daten in InfluxData TSDB z.B. zur Erzeugung von Graphen mit Grafana oder Chronograf (Plugin aus 2016)'
en: 'Store data in an InfluxData TSDB'
maintainer: rthill
tester: brandst
state: deprecated
keywords: database
#documentation: https://github.com/smarthomeNG/smarthome/wiki/Installation-Influx-Grafana # url of documentation (wiki) page
version: 1.0.0 # Plugin version
sh_minversion: 1.1 # minimum shNG version to use this plugin
# sh_maxversion: # maximum shNG version to use this plugin (leave empty if latest)
multi_instance: False # plugin supports multi instance
restartable: unknown
startorder: early # set start priority of plugin (early/normal/late)
classname: InfluxData # class containing the plugin
parameters:
# Definition of parameters to be configured in etc/plugin.yaml
influx_host:
type: str
default: 'localhost'
description:
de: "Hostname der InfluxData Datenbank"
en: "Hostname of the InfluxData database"
influx_port:
type: int
default: 8089
valid_min: 0
valid_max: 65535
description:
de: "Portnummer der InfluxData Datenbank"
en: "Port of the InfluxData database"
influx_keyword:
type: str
default: 'influx'
description:
de: "Dieser Parameter legt fest, auf welches Item-Attribut das Plugin reaagiert. \
(Wenn hier ein anderer Wert als 'influx' angegeben wird, können in Zukunft Items nicht über das \
graphische Admin-Interface für dieses Plugin konfiguriert werden)"
en: "The parameter influx_keyword has a special relevance. Here you can choose which item attribute \
the plugin should look for."
item_attributes:
# Definition of item attributes defined by this plugin
influx:
type: foo
default: None'
description:
de: "Diesem Attribut einen Wert zuweisen, um den Item Wert durch das influxdata Plugin zu speichern"
en: "Assign a value to this attribute to store the item value through the influxdata plugin"
item_structs: NONE
# Definition of item-structure templates for this plugin
plugin_functions: NONE
# Definition of plugin functions defined by this plugin
logic_parameters: NONE
# Definition of logic parameters defined by this plugin