Skip to content

Commit

Permalink
feat: allow using the consistent naming with the signoz collector
Browse files Browse the repository at this point in the history
  • Loading branch information
git-hulk committed Apr 15, 2024
1 parent a54b7ba commit 7f95aab
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@ aws cloudformation create-stack --stack-name AOCECS-daemon-${CLUSTER_NAME}-${REG
To verify that the daemon service is running, you can run the following command, which should output the task ARN of the Daemon service as the output.

```bash
aws ecs list-tasks --cluster ${CLUSTER_NAME} --region ${REGION}

aws ecs list-tasks --cluster-name ${CLUSTER_NAME} --region ${REGION}
```
 

Expand All @@ -65,4 +64,4 @@ aws cloudformation delete-stack --stack-name AOCECS-daemon-${CLUSTER_NAME}-${REG

 

Once you follow these steps, you should be able to see your logs and metrics data coming in SigNoz Cloud. To see data for your traces, click on Continue to next step below.
Once you follow these steps, you should be able to see your logs and metrics data coming in SigNoz Cloud. To see data for your traces, click on Continue to next step below.
2 changes: 2 additions & 0 deletions pkg/query-service/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ func main() {
flag.StringVar(&cacheConfigPath, "experimental.cache-config", "", "(cache config to use)")
flag.StringVar(&fluxInterval, "flux-interval", "5m", "(cache config to use)")
flag.StringVar(&cluster, "cluster", "cluster", "(cluster name - defaults to 'cluster')")
// Allow using the consistent naming with the signoz collector
flag.StringVar(&cluster, "cluster-name", "cluster", "(cluster name - defaults to 'cluster')")
flag.IntVar(&maxIdleConns, "max-idle-conns", 50, "(number of connections to maintain in the pool, only used with clickhouse if not set in ClickHouseUrl env var DSN.)")
flag.IntVar(&maxOpenConns, "max-open-conns", 100, "(max connections for use at any time, only used with clickhouse if not set in ClickHouseUrl env var DSN.)")
flag.DurationVar(&dialTimeout, "dial-timeout", 5*time.Second, "(the maximum time to establish a connection, only used with clickhouse if not set in ClickHouseUrl env var DSN.)")
Expand Down

0 comments on commit 7f95aab

Please sign in to comment.