from fluent import sender
from fluent import event
sender.setup("tag")
event.Event("label", data)
Il y avait de nombreux articles faisant comme ça. J'ai senti que quelque chose n'allait pas, alors quand j'ai regardé l'implémentation, j'ai utilisé des variables globales! (Utilisez une variable globale appelée _global_sender dans la méthode de configuration-> événement init pour appeler global_sender.emit_with_name et passer l'heure actuelle à horodatage)
alors
from fluent import sender
import time
send = sender.FluentSender("tag", host="localhost", port=24224)
send.emit_with_time("label", int(time.time()), data)
C'est sur
Recommended Posts