We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have the next issue, I've installed the library psutil yet, but when I tried to execute the example the next errors appear.
Python2: ImportError: No module named psutil Python3: ModuleNotFoundError: No module named 'ISStreamer'
import psutil import time import ISStreamer.Streamer import Streamer streamer = Streamer(bucket_name=mybname, bucket_key=mykey, access_key=myakey, debug_level=2) streamer.log("Message: ", "hi") cpu_percent = psutil.cpu_percent() streamer.log("cpu_total", cpu_percent) streamer.flush() streamer.close()
import psutil
import time
import ISStreamer.Streamer import Streamer
streamer = Streamer(bucket_name=mybname, bucket_key=mykey, access_key=myakey, debug_level=2)
streamer.log("Message: ", "hi")
cpu_percent = psutil.cpu_percent()
streamer.log("cpu_total", cpu_percent)
streamer.flush()
streamer.close()
any idea what I'am doing wrong or what step I missing?
greetings.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have the next issue, I've installed the library psutil yet, but when I tried to execute the example the next errors appear.
import psutil
import time
import ISStreamer.Streamer import Streamer
streamer = Streamer(bucket_name=mybname, bucket_key=mykey, access_key=myakey, debug_level=2)
streamer.log("Message: ", "hi")
cpu_percent = psutil.cpu_percent()
streamer.log("cpu_total", cpu_percent)
streamer.flush()
streamer.close()
any idea what I'am doing wrong or what step I missing?
greetings.
The text was updated successfully, but these errors were encountered: