declencher Posté(e) le 6 janvier 2023 Posté(e) le 6 janvier 2023 Salut, J'ai un script speedtest qui me permet de contrôler le débit du Syno. Je souhaiterai publier le résultat json sur mon broker mosquitto. Je pensais que je pourrai installer un client MQTT mais je ne trouve rien. Auriez-vous des pistes ? Merci ! 0 Citer
.Shad. Posté(e) le 6 janvier 2023 Posté(e) le 6 janvier 2023 Node-red peut-être ? https://hub.docker.com/r/nodered/node-red 0 Citer
declencher Posté(e) le 7 janvier 2023 Auteur Posté(e) le 7 janvier 2023 Salut, J'ai aussi node-red dans un docker. L'idée serait donc de lancer le script directement dans nodered puis de le push sur mqtt. Je vais voir si je peux déposer un binaire sur node-red (le binaire de speedtest), pour qu'ensuite un script l'exécute, toujours dans node-red... Sauf erreur, mon docker ne peut pas voir les fichiers du NAS citué hors du conteneur ? 0 Citer
.Shad. Posté(e) le 7 janvier 2023 Posté(e) le 7 janvier 2023 @declencher Tu n'as pas à ajouter des binaires à un conteneur existant, c'est une mauvaise pratique, c’est contraire à la philosophie de Docker. La bonne façon de faire c’est soit de créer des conteneurs séparés, soit de tout mettre dans une VM. Tu peux même utiliser les volumes internes Docker pour rendre les données disponibles d'un conteneur à l'autre. 0 Citer
declencher Posté(e) le 7 janvier 2023 Auteur Posté(e) le 7 janvier 2023 @.Shad. Je m'en doutais un peu 😅 Je vais tenter la piste de bliz. Merci @bliz pour l'idée. Je vais regarder pour appliquer cette méthode. 0 Citer
.Shad. Posté(e) le 7 janvier 2023 Posté(e) le 7 janvier 2023 Mon tutoriel en signature couvre le montage de données dans un conteneur. 0 Citer
PiwiLAbruti Posté(e) le 7 janvier 2023 Posté(e) le 7 janvier 2023 Sinon il y a Mosquitto qui contient un client MQTT (mosquitto_pub) : https://synocommunity.com/package/mosquitto 0 Citer
declencher Posté(e) le 7 janvier 2023 Auteur Posté(e) le 7 janvier 2023 (modifié) J'ai monté un volume, et via ssh, je vois qu'il est bien monté. Mon problème est plus basique maintenant : quelle ligne de commande donné à nodered. Habituellement je vais dans le répertoire contenant le programme, puis je fais ./monProgramme Nodered ne permettant que la saisie d'une commande, j'ai tenté "./cheminComplet/monProgramme", mais aucune exécution se produit. Et en ligne de commande via ssh, c'est pareil. Mon linux est rouillé 🙂 @PiwiLAbruti il y a 35 minutes, PiwiLAbruti a dit : Sinon il y a Mosquitto qui contient un client MQTT (mosquitto_pub) : https://synocommunity.com/package/mosquitto Ayant déjà Mosquitto dans un conteneur, je tenté d'éviter une 2ème installation 😅 Edit : Question idiote, il suffisait d'enlever le "." dans la commande 😊 Modifié le 7 janvier 2023 par declencher 0 Citer
.Shad. Posté(e) le 7 janvier 2023 Posté(e) le 7 janvier 2023 La remarque de @PiwiLAbruti tient quand même. Tu peux utiliser le client intégré pour publier sur le serveur. Et ce dans la même installation. 0 Citer
PiwiLAbruti Posté(e) le 7 janvier 2023 Posté(e) le 7 janvier 2023 (modifié) Il doit bien y avoir le client mosquitto_sub mosquitto_pub dans le conteneur Mosquitto. Modifié le 7 janvier 2023 par PiwiLAbruti sub: s'abonner à un topic | pub: publier un message 0 Citer
.Shad. Posté(e) le 7 janvier 2023 Posté(e) le 7 janvier 2023 Je confirme, chez moi il y est (dans mon conteneur mosquitto pour ma domotique) : / # mosquitto_sub --help mosquitto_sub is a simple mqtt client that will subscribe to a set of topics and print all messages it receives. mosquitto_sub version 2.0.15 running on libmosquitto 2.0.15. Usage: mosquitto_sub {[-h host] [--unix path] [-p port] [-u username] [-P password] -t topic | -L URL [-t topic]} [-c] [-k keepalive] [-q qos] [-x session-expiry-interval] [-C msg_count] [-E] [-R] [--retained-only] [--remove-retained] [-T filter_out] [-U topic ...] [-F format] [-W timeout_secs] [-A bind_address] [--nodelay] [-i id] [-I id_prefix] [-d] [-N] [--quiet] [-v] [--will-topic [--will-payload payload] [--will-qos qos] [--will-retain]] [{--cafile file | --capath dir} [--cert file] [--key file] [--ciphers ciphers] [--insecure] [--tls-alpn protocol] [--tls-engine engine] [--keyform keyform] [--tls-engine-kpass-sha1]] [--tls-use-os-certs] [--proxy socks-url] [-D command identifier value] mosquitto_sub --help -A : bind the outgoing socket to this host/ip address. Use to control which interface the client communicates over. -c : disable clean session/enable persistent client mode When this argument is used, the broker will be instructed not to clean existing sessions for the same client id when the client connects, and sessions will never expire when the client disconnects. MQTT v5 clients can change their session expiry interval with the -x argument. -C : disconnect and exit after receiving the 'msg_count' messages. -d : enable debug messages. -D : Define MQTT v5 properties. See the documentation for more details. -E : Exit once all subscriptions have been acknowledged by the broker. -F : output format. -h : mqtt host to connect to. Defaults to localhost. -i : id to use for this client. Defaults to mosquitto_sub_ appended with the process id. -I : define the client id as id_prefix appended with the process id. Useful for when the broker is using the clientid_prefixes option. -k : keep alive in seconds for this client. Defaults to 60. -L : specify user, password, hostname, port and topic as a URL in the form: mqtt(s)://[username[:password]@]host[:port]/topic -N : do not add an end of line character when printing the payload. -p : network port to connect to. Defaults to 1883 for plain MQTT and 8883 for MQTT over TLS. -P : provide a password -q : quality of service level to use for the subscription. Defaults to 0. -R : do not print stale messages (those with retain set). -t : mqtt topic to subscribe to. May be repeated multiple times. -T : topic string to filter out of results. May be repeated. -u : provide a username -U : unsubscribe from a topic. May be repeated. -v : print published messages verbosely. -V : specify the version of the MQTT protocol to use when connecting. Can be mqttv5, mqttv311 or mqttv31. Defaults to mqttv311. -W : Specifies a timeout in seconds how long to process incoming MQTT messages. -x : Set the session-expiry-interval property on the CONNECT packet. Applies to MQTT v5 clients only. Set to 0-4294967294 to specify the session will expire in that many seconds after the client disconnects, or use -1, 4294967295, or ∞ for a session that does not expire. Defaults to -1 if -c is also given, or 0 if -c not given. --help : display this message. --nodelay : disable Nagle's algorithm, to reduce socket sending latency at the possible expense of more packets being sent. --pretty : print formatted output rather than minimised output when using the JSON output format option. --quiet : don't print error messages. --random-filter : only print a percentage of received messages. Set to 100 to have all messages printed, 50.0 to have half of the messages received on average printed, and so on. --retained-only : only handle messages with the retained flag set, and exit when the first non-retained message is received. --remove-retained : send a message to the server to clear any received retained messages Use -T to filter out messages you do not want to be cleared. --unix : connect to a broker through a unix domain socket instead of a TCP socket, e.g. /tmp/mosquitto.sock --will-payload : payload for the client Will, which is sent by the broker in case of unexpected disconnection. If not given and will-topic is set, a zero length message will be sent. --will-qos : QoS level for the client Will. --will-retain : if given, make the client Will retained. --will-topic : the topic on which to publish the client Will. --cafile : path to a file containing trusted CA certificates to enable encrypted certificate based communication. --capath : path to a directory containing trusted CA certificates to enable encrypted communication. --cert : client certificate for authentication, if required by server. --key : client private key for authentication, if required by server. --keyform : keyfile type, can be either "pem" or "engine". --ciphers : openssl compatible list of TLS ciphers to support. --tls-version : TLS protocol version, can be one of tlsv1.3 tlsv1.2 or tlsv1.1. Defaults to tlsv1.2 if available. --insecure : do not check that the server certificate hostname matches the remote hostname. Using this option means that you cannot be sure that the remote host is the server you wish to connect to and so is insecure. Do not use this option in a production environment. --tls-engine : If set, enables the use of a SSL engine device. --tls-engine-kpass-sha1 : SHA1 of the key password to be used with the selected SSL engine. --tls-use-os-certs : Load and trust OS provided CA certificates. --proxy : SOCKS5 proxy URL of the form: socks5h://[username[:password]@]hostname[:port] Only "none" and "username" authentication is supported. See https://mosquitto.org/ for more information. Et un site qui reprend les syntaxes concernant les fonctions de mosquitto : http://www.steves-internet-guide.com/mosquitto_pub-sub-clients/ 0 Citer
declencher Posté(e) le 7 janvier 2023 Auteur Posté(e) le 7 janvier 2023 Je comprends mais mon mosquitto est dans un conteneur, et mon script sur l'os du Syno. Et nodered sur un autre conteneur 😅 Il y aurait moyen d'y arriver ? J'ai touché au but avec nodered dans son conteneur, un volume monté spécialement contenant le programme speed test : nodered exécute toutes les 15min et publie sur mqtt. Home assistant récupère, historise en local, historise sur influxdb et restitue. 0 Citer
Messages recommandés
Rejoindre la conversation
Vous pouvez publier maintenant et vous inscrire plus tard. Si vous avez un compte, connectez-vous maintenant pour publier avec votre compte.