Hi Everyone, I just installed SigNoz using below ...
# support
m
Hi Everyone, I just installed SigNoz using below override-values.yaml file
Copy code
global:
  storageClass: gp2-resizable # you can change it to your storageClass
  cloud: aws # Since we are installing it on AWS, we provide cloud as `aws`

# By default it will not create ingress. In this example we enable the frontend.Ingress to true.
# and provide the domain name for the 
frontend:
  ingress:
    # -- Enable ingress for Frontend
    enabled: true
    # -- Ingress Class Name to be used to identify ingress controllers
    className: "nginx"
    # -- Annotations to Frontend Ingress
    hosts:
      - host: signoz.example.domain
        paths:
          - path: /
            pathType: ImplementationSpecific
            port: 3301

clickhouse:
  installCustomStorageClass: true
  allowedNetworkIps:
    - "10.0.0.0/8"
    - "172.16.0.0/16"
    - "172.20.0.0/16"
    - "192.0.0.0/24"
    - "192.168.0.0/16"

queryService:
  ingress:
    # -- Enable ingress for Query-Service
    enabled: true
    # -- Ingress Class Name to be used to identify ingress controllers
    className: "nginx"
    # -- Annotations to Query-Service Ingress
    hosts:
      - host: query-service.example.domain
        paths:
          - path: /
            pathType: ImplementationSpecific
            port: 8080

k8s-infra:
  presets:
    logsCollection:
      # whether to enable log collection
      enabled: true
      blacklist:
        # whether to enable blacklisting
        enabled: true
        # whether to exclude signoz logs
        signozLogs: false
        # which namespaces to exclude
        namespaces:
          - kube-system
        # which pods to exclude
        pods:
          - hotrod
          - locust
        # which containers to exclude
        containers: []
        # additional exclude rules
        additionalExclude: []
  otelCollectorEndpoint: signoz-otel-collector.platform.svc.cluster.local:4317
After this I can go to https://signoz.example.domain and completed the setup process for admin user. After I login I do not see
Metrics
menu in the left side, attached is the screenshot of what I see. I would also like to know how can I either get the API key for SigNoz that I have installed or create a new one
s
After I login I do not see
Metrics
menu in the left side
There is no
Metrics
menu. It was renamed to
Services
. If you had come across some old reference, please share the link we will update it.
I would also like to know how can I either get the API key for SigNoz that I have installed or create a new one
What API keys are you referring. Is this a key for accessing SigNoz query-service API? It's available in the enterprise edition.