You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Are there any plans on publishing API endpoints that help to enable CRUD operations on Dashboards, Charts, Alerts and
SQL Queries?
I couldn't find anything like this in the logfire docs. If such API endpoints were in place, one could write a
terraform provider which would enable things like this:
resource"logfire_dashboard" {
dashboard_name="foo"dashboard_json=file("./dashboard.json")
}
resource"logfire_alert" {
alert_name="foo"query=file("./alert.sql")
}
# 'named' queries or something like this probably don't exist yet?resource"logfire_query" {
query_name="foo"query=file("./alert.sql")
}
In its current state, pydantic logfire is easy to use for adhoc analysis, but for a productive monitoring system, it's
essential to automate CRUD operations using IAC tools like terraform and I couldn't find any docs on that topic yet?
The text was updated successfully, but these errors were encountered:
Description
Are there any plans on publishing API endpoints that help to enable CRUD operations on Dashboards, Charts, Alerts and
SQL Queries?
I couldn't find anything like this in the logfire docs. If such API endpoints were in place, one could write a
terraform provider which would enable things like this:
In its current state, pydantic logfire is easy to use for adhoc analysis, but for a productive monitoring system, it's
essential to automate CRUD operations using IAC tools like terraform and I couldn't find any docs on that topic yet?
The text was updated successfully, but these errors were encountered: