Home
DevCentral
Search
Configure Global Search
Log In
Transactions
D2600
Change Details
Change Details
Old
New
Diff
Provide a platform-checks configuration file for HTTP health checks. The list is extracted from the containers in pillar matching two conditions: 1. The service has one or more container running on that engine 2. The service has a health check URL set in `docker_containers_monitoring` This unit is responsible to provide platform-cheks and its configuration, not to actually run the tests or provide a runner. Ref T1704
Provide a platform-checks configuration file for HTTP health checks. The list is extracted from the containers in pillar matching two conditions: 1. The service has one or more container running on that engine 2. The service has a health check URL set in `docker_containers_monitoring` This unit is responsible to provide platform-cheks and its configuration, not to actually run the tests or provide a runner. Ref T1704 **Generate YAML configuration files** We need to aggregate a checks dictionary from several sources, here for example from `paas_docker.get_health_checks()`, but we plan in following changes to add more monitoring checks sources. The `convert.to_yaml_dictionary()` method allow to build arbitrary dictionaries from several sources and allow to do this aggregation. It uses the `salt.serializers.yaml` package, as it allows to represent objects from the `salt.utils.odict.OrderedDict` class, with an already configured dumper for pyyaml.
Provide a platform-checks configuration file for HTTP health checks. The list is extracted from the containers in pillar matching two conditions: 1. The service has one or more container running on that engine 2. The service has a health check URL set in `docker_containers_monitoring` This unit is responsible to provide platform-cheks and its configuration, not to actually run the tests or provide a runner. Ref T1704
**Generate YAML configuration files** We need to aggregate a checks dictionary from several sources, here for example from `paas_docker.get_health_checks()`, but we plan in following changes to add more monitoring checks sources. The `convert.to_yaml_dictionary()` method allow to build arbitrary dictionaries from several sources and allow to do this aggregation. It uses the `salt.serializers.yaml` package, as it allows to represent objects from the `salt.utils.odict.OrderedDict` class, with an already configured dumper for pyyaml.
Continue