Skip to content
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

Wrap BarragePerformanceLog in Python #6142

Open
jjbrosnan opened this issue Sep 26, 2024 · 0 comments
Open

Wrap BarragePerformanceLog in Python #6142

jjbrosnan opened this issue Sep 26, 2024 · 0 comments
Labels
feature request New feature or request triage

Comments

@jjbrosnan
Copy link
Contributor

Currently, if I want to access the BarragePerformanceLog from Python, I have to use jpy:

import jpy

bpl = jpy.get_type(
    "io.deephaven.extensions.barrage.BarragePerformanceLog"
).getInstance()
subs = bpl.getSubscriptionTable()
snaps = bpl.getSnapshotTable()

It would be nice if I could do this from Python without needing jpy. Something along the lines of:

from deephaven.barrage import barrage_performance_log

bpl = barrage_performance_log()

subs = bpl.get_subscription_table()
snaps = bpl.get_snapshot_table()
@jjbrosnan jjbrosnan added feature request New feature or request triage labels Sep 26, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature request New feature or request triage
Projects
None yet
Development

No branches or pull requests

1 participant