File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ score_pkg_bundle(
1818 other_package_files = [
1919 "//showcases/standalone:comm_pkg_files" ,
2020 "//showcases/standalone:kyron_pkg_files" ,
21+ "//showcases/standalone:logging_pkg_files" ,
2122 "//showcases/orchestration_persistency:orch_per_pkg_files" ,
2223 "//showcases/simple_lifecycle:simple_lifecycle_pkg_files" ,
2324 ],
Original file line number Diff line number Diff line change @@ -36,3 +36,19 @@ score_pkg_bundle(
3636 ],
3737 package_dir = "standalone" ,
3838)
39+
40+ score_pkg_bundle (
41+ name = "logging" ,
42+ bins = [
43+ "@score_logging//score/test/component/logging_app:logging_app" ,
44+ "@score_logging//score/test/component/dlt_generator_app:dlt_generator" ,
45+ ],
46+ config_data = [
47+ "//showcases/standalone:logging.score.json" ,
48+ ],
49+ custom_layout = {
50+ "@score_logging//score/test/component/logging_app:etc/logging.json" : "logging_app/etc/logging.json" ,
51+ "@score_logging//score/test/component/dlt_generator_app:etc/logging.json" : "dlt_generator/etc/logging.json" ,
52+ },
53+ package_dir = "standalone" ,
54+ )
Original file line number Diff line number Diff line change 1+ [
2+ {
3+ "name" : " Logging example" ,
4+ "description" : " Example for running logging with all log levels via remote and console" ,
5+ "apps" : [
6+ {
7+ "path" : " /bin/sh" ,
8+ "args" : [
9+ " -c" ,
10+ " cd /usr/bin/datarouter && ./datarouter --no_adaptive_runtime >/dev/null 2>&1 &"
11+ ],
12+ "env" : {}
13+ },
14+ {
15+ "path" : " /showcases/bin/logging_app" ,
16+ "args" : [],
17+ "env" : {},
18+ "dir" : " /showcases/data/logging/logging_app/etc"
19+ }
20+ ]
21+ },
22+ {
23+ "name" : " logging : dlt Generator example" ,
24+ "description" : " Example for generating DLT log messages" ,
25+ "apps" : [
26+ {
27+ "path" : " /showcases/bin/dlt_generator" ,
28+ "args" : [],
29+ "env" : {},
30+ "dir" : " /showcases/data/logging/dlt_generator/etc"
31+ }
32+ ]
33+ }
34+ ]
You can’t perform that action at this time.
0 commit comments