You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Updating debugging docs: replacing apm.dev.js configuration references with kibana.dev.yml (elastic#152237)
## Summary
Updating the Debugging Kibana documentation:
1. Adding Python as additional pre-requisite technology
2. Replacing apm.dev.js configuration with updated kibana.dev.yml
approach
Similar to recent discussion in issue elastic#79490, I've found that the
`apm.dev.js` approach is no longer working.
### Checklist
Delete any items that are not applicable to this PR.
- [X]
[Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html)
was added for features that require explanation or tutorials
### Risk Matrix
N/A
### For maintainers
- [ ] This was checked for breaking API changes and was [labeled
appropriately](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process)
(cherry picked from commit 867c906)
creating an appropriate config file under `config/apm.dev.js`.
41
+
creating an appropriate config file under `config/kibana.dev.yml`.
42
42
43
-
Example `config/apm.dev.js` file:
43
+
Example `config/kibana.dev.yml` file:
44
44
45
-
[source,js]
45
+
[source,yaml]
46
46
----
47
-
module.exports = {
48
-
active: true,
49
-
};
47
+
elastic:
48
+
apm:
49
+
active: true
50
50
----
51
51
52
52
APM
@@ -68,7 +68,7 @@ UI in {kib}.
68
68
[discrete]
69
69
=== Running Kibana with the APM Agent Locally
70
70
71
-
The easiest and recommended way of running Kibana with the APM agent locally is to use the solution provided by the https://github.com/elastic/apm-integration-testing[apm-integration-testing] repo. You’ll need https://www.docker.com/community-edition[Docker] and https://docs.docker.com/compose/install/[Docker Compose] to use the tool.
71
+
The easiest and recommended way of running Kibana with the APM agent locally is to use the solution provided by the https://github.com/elastic/apm-integration-testing[apm-integration-testing] repo. You’ll need https://www.docker.com/community-edition[Docker], https://docs.docker.com/compose/install/[Docker Compose] and https://www.python.org/downloads[Python (version 3 preferred)] to use the tool.
72
72
73
73
[discrete]
74
74
==== Quick start guide
@@ -88,6 +88,7 @@ cd apm-integration-testing
88
88
./scripts/compose.py start master --no-kibana
89
89
----
90
90
91
+
. Clone the https://github.com/elastic/kibana[elastic/kibana] repo.
91
92
. Change into the {kib} repo:
92
93
+
93
94
[source,bash]
@@ -96,20 +97,20 @@ cd ../kibana
96
97
----
97
98
98
99
. Change the elasticsearch credentials in your `kibana.yml` configuration file to match those needed by elasticsearch and the APM server (see the apm-integration-testing repo's https://github.com/elastic/apm-integration-testing#logging-in[README] for users provided to test different scenarios).
99
-
. Make sure that the APM agent is active and points to the local APM server by adding the following configuration settings to a config file under `config/apm.dev.js`:
100
+
. Make sure that the APM agent is active and points to the local APM server by adding the following configuration settings to a config file under `config/kibana.dev.yml`:
0 commit comments