Yandex Cloud
Search
Contact UsGet started
  • Blog
  • Pricing
  • Documentation
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • ML & AI
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Customer Stories
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Education and Science
    • Yandex Cloud Partner program
  • Blog
  • Pricing
  • Documentation
© 2025 Direct Cursus Technology L.L.C.
Yandex SpeechKit Hybrid
  • System requirements
  • Service architecture
    • Service settings
    • Monitoring SpeechKit Hybrid services
    • Envoy monitoring
    • Logging levels
    • TLS termination
  • Pricing policy
  • SpeechKit Hybrid releases

In this article:

  • Setting the logging level when running a container
  • Setting the logging level in the docker compose file
  1. Admin SpeechKit Hybrid
  2. Logging levels

Operations logging SpeechKit Hybrid

Written by
Yandex Cloud
Updated at February 20, 2023
  • Setting the logging level when running a container
  • Setting the logging level in the docker compose file

You can control which SpeechKit Hybrid container actions will be written to logs. The logging level is determined by the LOGGING_LEVEL parameter.

Supported logging levels:

  • DEBUG
  • NOTICE
  • INFO (default)
  • WARNING
  • ERROR
  • EMERG
  • ALERT
  • CRITICAL_INFO

Setting the logging level when running a containerSetting the logging level when running a container

To set the logging level, assign a value to the variable when running your SpeechKit Hybrid container, for example:

docker run --network=host-e LOGGING_LEVEL=DEBUG -e LICENSE_MODE=billing_agent <license_server_image>

Setting the logging level in the docker compose fileSetting the logging level in the docker compose file

If you use Docker Compose to run your SpeechKit Hybrid containers, you can set the logging level for each container in the configuration file.

For example, the following configuration will set the logging levels: INFO for the billing_agent container, NOTICE for the license server, and WARNING for the envoy container.

version: '3'
services:
  billing_agent:
    network_mode: host
    volumes:
      - persistent:/var/swaydb
    environment:
      LOGGING_LEVEL: INFO
      STATIC_API_KEY: XXX
    image: billing_agent:0.15
  license_server:
    network_mode: host
    environment:
      LICENSE_MODE: billing_agent
      LOGGING_LEVEL: NOTICE
    image: license-server:0.15
    depends_on:
      - billing_agent
  envoy:
    network_mode: host
    environment:
      LOGGING_LEVEL: WARNING
      ENVOY_UID: 0      
    image: envoy:0.15
    depends_on:
      - license_server

Was the article helpful?

Previous
Envoy monitoring
Next
TLS termination
© 2025 Direct Cursus Technology L.L.C.