Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Newrelic browser monitoring warn #181

Merged
merged 4 commits into from
Feb 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions assets/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ selectors in css can't be grained to target Markdown syntax
(for now) */
.content p a:not(.code),
.content li a:not(.code),
.content :where(a):not(:where([class~=not-prose],[class~=not-prose] *)), /* Ensure links are the same color in shortodes as well*/
article a {
text-decoration-line: underline;
text-decoration-style: dotted;
Expand All @@ -173,7 +174,7 @@ html[class~="dark"] article a {

/* Allow linking in a variable environment without
changing the style and adding an a arrow at the end of the text */
.content a:not(.code) {
.content a:has(code){
juliamrch marked this conversation as resolved.
Show resolved Hide resolved
text-decoration: none;
color: inherit;
}
Expand All @@ -182,7 +183,7 @@ changing the style and adding an a arrow at the end of the text */
.content a:not(.code-block code) code::after {
content: "\00a0↗";
color: tomato;
font-size: 1rem;
font-size: 1.1rem;

}

Expand Down
6 changes: 6 additions & 0 deletions content/doc/metrics/new-relic.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@ To use New Relic in Python, you have to add the [newrelic](https://pypi.python.o

To use New Relic in Java, Scala or PHP instances, you need to configure it as it is provided directly inside the instances.

{{< callout type="info" >}}
New Relic trigger auto-insertion of JavaScript fragments on PHP applications, for browser monitoring. You can disable it with `newrelic.browser_monitoring.auto_instrument` in `.user.ini`.
[Learn more on New Relic's documentation](https://docs.newrelic.com/docs/apm/agents/php-agent/configuration/php-agent-configuration/#inivar-autorum).

{{< /callout >}}

## New Relic configuration

### Necessary information
Expand Down
Loading