Skip to content

Commit

Permalink
Fixed typo in Kibana's APM PHP Agent configuration page (#132122)
Browse files Browse the repository at this point in the history
  • Loading branch information
SergeyKleyman authored May 12, 2022
1 parent fece4c9 commit 504b722
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 504b722

Please sign in to comment.