Attempting to forecast command values from Linux trace #557
Unanswered
theoctopusride
asked this question in
Q&A
Replies: 2 comments 2 replies
-
Just a comment after 2 weeks of no response - any help on this topic is greatly appreciated. |
Beta Was this translation helpful? Give feedback.
2 replies
-
In that case you probably want to approach it as a forecasting problem and feed in those values in our standard format. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I am trying to take a trace from a Linux device and use it to forecast future command values. A trace of a Linux device can take up a lot of space depending on how you are using the device while tracing. I am now using a trace that was taken over the course of 48-72 hours that has 6 million lines of activity. Each of these lines has a timestamp associated with it as well as other information: Latency (ms), size in bytes, and Command. I am interested in training on the trace and then forecasting future commands: Write, Read, Hibern8, Sync Cache, etc.
I've used a Vanilla LSTM from Keras to predict future values, but would like to try something from Flow Forecast if possible.
For this project:
I will need to be able to predict multiple steps at a time.
At each step, I will need to forecast the percent likelihood of each command: Read, Write, Hibern8_Enter, Hibern8_Exit, Sync Cache, etc.
Fake Example Data
Please let me know if you think you can point me in the right direction or if additional information is needed.
Thanks
Beta Was this translation helpful? Give feedback.
All reactions