Skip to content

Commit

Permalink
Fixed typo in Kibana's APM PHP Agent configuration page (#132122) (#1…
Browse files Browse the repository at this point in the history
…32133)

(cherry picked from commit 504b722)

Co-authored-by: Sergey Kleyman <SergeyKleyman@users.noreply.github.com>
  • Loading branch information
kibanamachine and SergeyKleyman authored May 15, 2022
1 parent 0f30932 commit 17ad098
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ describe('getCommands', () => {
expect(commands).not.toBe('');
expect(commands).toMatchInlineSnapshot(`
"elastic_apm.server_url=\\"\\"
elastic.apm.secret_token=\\"\\"
elastic_apm.secret_token=\\"\\"
elastic_apm.service_name=\\"My service\\"
"
`);
Expand All @@ -527,7 +527,7 @@ describe('getCommands', () => {
expect(commands).not.toBe('');
expect(commands).toMatchInlineSnapshot(`
"elastic_apm.server_url=\\"localhost:8220\\"
elastic.apm.secret_token=\\"foobar\\"
elastic_apm.secret_token=\\"foobar\\"
elastic_apm.service_name=\\"My service\\"
"
`);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
*/

export const php = `elastic_apm.server_url="{{{apmServerUrl}}}"
elastic.apm.secret_token="{{{secretToken}}}"
elastic_apm.secret_token="{{{secretToken}}}"
elastic_apm.service_name="My service"
`;

0 comments on commit 17ad098

Please sign in to comment.