Hi there! After our last community call, we got se...
# general
n
Hi there! After our last community call, we got several queries around folks facing different sort of challenges while trying to SigNoz in Production. We were able to provide relevant answers to the troubleshooting queries and general queries at the same time. There were couple of feature requests that were made by the users and we'd like to address those in the community as well - 1. Adding the Support for Terraform which revolves around deploying SigNoz with Terraform 2. General discussion on getting selective alerts - Thanks for raising this @Keshav Kumar If you were unable to join the call due to some reasons and have some feature requests for the team to address, we would be more than happy to know your thoughts around it under this thread.๐Ÿงต cc: @Srikanth Chekuri @Prashant Shahi
s
Hi @Nitish, I was unable to join the call. My suggestions would be . 1. To have some monitoring, disc utilization, CPU and memory to get started with. 2. Zookeeper is taking significant additional resources like 0.5CPU and 3GiB memory 1000docs/s. instead, we should leverage clickhouse keeper which is very lightweight and resource-efficient. ๐Ÿ”ด Meanwhile, signoz does a very fascinating job in data ingestion and able to see real-time logs even on very high loads. Great Observerbality Solution ๐Ÿ”ฅ
d
Hi @Nitish Deploying Signoz with terraform isn't what i was talking about - yes that's probably useful for people on how to scale some of this out, but I was more talking "administering Signoz with Terraform" i.e.
Copy code
resource "signoz_dashboard_json" "sales-dashboard" {
  json = chomp(file(local.dashboard_path),"\r\n","\n")
}

or

resource "signoz_user" "bob" {
  email = "bob.gibbons@gmail.com"
  name = "Bob Gibbons"
  role = "VIEWER"
}
That type of thing - same for pipelines or whatnot
a
@Nitish , I have the same question as @Darren Smith , Can anyone clarify whether this terraform provider will also enable the granularity to manage code based dashboards/alerts?
n
Hi @Prashant Shahi can you please take a look above? ^^
๐Ÿ™Œ 1
p
We are currently working on terraform to support both Dashboard and User management. You can track the progress here: https://github.com/SigNoz/signoz/issues/1851
a
@Prashant Shahi I see that the terraform provider requires API Key, does that mean this is not available yet for SigNoz Free users, or am i missing something here?
p
does that mean this is not available yet for SigNoz Free users
At the moment, that would be correct. In the future, we have plans to implement support for username/password as well as support for dashboards and users. However, it is not in actively being worked on at the moment.
a
@Prashant Shahi Thanks for the confirmation!