-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
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
Missing Trace Frame #106
Comments
Hi @koftnt, |
HI arthaud , |
We don't plan on open sourcing our internal UI because it relies on a lot of internal services. |
hi arthaud sqlalchemy.exc.OperationalError: (sqlite3.OperationalError) table issues has no column named first_instance_id For the pip install fb-sapp case: |
Regarding the error:
It looks like the existing schema for the
Alternatively, if you do not need to preserve existing data in the table, you could re-create it. Run As for the pip-install error, it just looks like it's a really old version of the sapp-cli that won't work with the latest Mariana Trench output... |
@yuhshin-oss I use sapp --tool=mariana-trench analyze command to generate sapp.db file then got the error . As a result .the db file is not generated. How can I alter table or drop table issues? Shoud I alter class Issue source code in appp and delete codes related to first_instance_id column? I try to delete the declaration first_instance_id column code in sapp/models.py. then i got error: |
That's strange... if there isn't an existing sapp.db file, then it should create the tables with the correct schema. Can you double check that sapp.db really doesn't exist? Alternatively, you could use the
You could also alter the sapp source code and delete relevant columns where these errors are showing up. I'd imagine that would be rather tedious though. The "first_instance_id" and "purge_status" columns are columns that we use internally and shouldn't be needed for viewing the results in the UI. |
I'm pretty sure you are using the pip fb-sapp and not fb-sapp built from master, since I see You should either use both mariana-trench and fb-sapp from pip, or build them both from master (for now, building sapp from master is broken but it will have a fix soon). |
Hi all
I got Missing Trace Frame in traces UI page very often. I want to know where can I add log to find out what happen in source code?
or the codes is related to the trace frame str to show ?
thanks a lot!
The text was updated successfully, but these errors were encountered: