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

Daily release/feb 20 2024 4 22 #16228

Closed
wants to merge 21 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
bcd4000
chore: Remove freetext and increase chance to show
LizBaker Feb 14, 2024
3745eba
feat(whats-new): Add codestream logs post
lchockalingam Feb 19, 2024
b024110
feat(whats-new): add images for codestream post
lchockalingam Feb 19, 2024
78cc9ad
Delete src/content/whats-new/2024/02/images/query.png
lchockalingam Feb 19, 2024
672d26f
feat(whats-new): add img for codestream
lchockalingam Feb 19, 2024
65c2ee8
Delete src/content/whats-new/2024/02/images/query.png
lchockalingam Feb 19, 2024
e358912
feat(whats-new): add img for codestream
lchockalingam Feb 19, 2024
b286a8f
Delete src/content/whats-new/2024/02/images/query.png
lchockalingam Feb 19, 2024
4f3a5d7
feat(whats-new): Add img for codestream
lchockalingam Feb 19, 2024
1c92f4f
Update whats-new-02-20-codestreamlogs.md
lchockalingam Feb 19, 2024
e4c29f0
Update product-capability-feature-usage.mdx
bhecknr Feb 20, 2024
0cf0fd4
chore: remove unused images & convert to webp
nr-opensource-bot Feb 20, 2024
1caca2f
fix(Mobile): Removed stray square bracket
paperclypse Feb 20, 2024
4c3da93
Update whats-new-01-09-nrql-limit-increases.md
akristen Feb 20, 2024
ae275ba
update title
akristen Feb 20, 2024
f9f2e6d
Merge pull request #16178 from newrelic/liz/update-survey-modal
LizBaker Feb 20, 2024
41ebd52
Broke up long sentence, tried to indent screenshot for readability
akristen Feb 20, 2024
665531c
Merge pull request #16222 from newrelic/update-nrql-limits-whats-new-…
akristen Feb 20, 2024
f15a133
Merge pull request #16218 from bhecknr/patch-54
akristen Feb 20, 2024
78df582
Merge pull request #16210 from lchockalingam/whats-new-02-20-codestre…
akristen Feb 20, 2024
708432d
Merge pull request #16219 from newrelic/paperclypse-patch-95885
ally-sassman Feb 20, 2024
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
82 changes: 3 additions & 79 deletions src/components/FeedbackModal/FeedbackModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ import { SUPRQ_QUESTIONS } from '../../utils/constants';

const FORM_VERSION = 1;
const questions = shuffle(['q1', 'q2', 'q3', 'q4', 'q5', 'q6', 'q7', 'q8']);
// 1/20 chance to see the modal
const nat20 = Math.ceil(Math.random() * 20) === 20;
// 1/10 chance to see the modal
const nat20 = Math.ceil(Math.random() * 10) === 10;
const recaptchaReady = () => {
return new Promise((resolve, reject) => {
try {
Expand Down Expand Up @@ -148,38 +148,6 @@ const FeedbackModal = ({ onClose }) => {
formVersion: FORM_VERSION,
});
});
advance();
};

const submitFreetext = async (text) => {
addPageAction({
eventName: 'freeTextSubmitted',
category: 'SurveyFeedback',
responseId: guid,
response: text,
formVersion: FORM_VERSION,
});
const recaptchaToken = await generateRecaptchaToken();
const freetextSubmission = {
responseId: guid,
response: text,
formVersion: FORM_VERSION,
pageUrl: location.href,
locale: locale.locale,
recaptchaToken,
type: 'freeText',
};
fetch(
'https://docs-user-feedback-service.newrelic-external.com/survey-feedback',
{
method: 'POST',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify(freetextSubmission),
}
);
setShowThankYou(true);
const timer = setTimeout(() => {
setDismissedCookieAndClose();
Expand All @@ -201,10 +169,7 @@ const FeedbackModal = ({ onClose }) => {
>
<Container>
{step === 0 && <NpsScore onSubmit={submitNpsScore} />}
{step === 1 && <SuprQ onSubmit={submitSuprQ} />}
{step === 2 && !showThankYou && (
<Freetext onSubmit={submitFreetext} />
)}
{step === 1 && !showThankYou && <SuprQ onSubmit={submitSuprQ} />}
{showThankYou && <ThankYou />}

<CloseButton
Expand Down Expand Up @@ -290,47 +255,6 @@ const SuprQ = ({ onSubmit }) => {
);
};

const Freetext = ({ onSubmit }) => {
const [text, setText] = useState('');
const { t } = useTranslation();

return (
<>
<Title>{t('surveyModal.freeTextIntro')}</Title>
<p
css={css`
font-size: 1.125rem;
grid-column: 1 / 3;
max-width: 92%;
`}
>
{t('surveyModal.freeTextQuestion')}
</p>
<textarea
css={css`
background: var(--primary-contrast-color);
border-radius: 4px;
border: 1px solid rgba(255, 255, 255, 0.2);
color: var(--primary-text-color);
font-size: 0.875rem;
height: 10rem;
margin-bottom: 40px;
padding: 8px 12px;
&:focus {
outline: 2px solid rgba(255, 255, 255, 0.6);
}
`}
onChange={(e) => setText(e.target.value)}
placeholder="Enter your text here"
value={text}
/>
<SubmitButton onClick={() => onSubmit(text)} variant="primary">
Submit
</SubmitButton>
</>
);
};

const ThankYou = () => (
<Title
css={css`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ import mobileCrashAnalysis from 'images/mobile_screenshot-full_crash-analysis.we

import mobileNextSteps from 'images/mobile_diagram_next-steps.webp'

New Relic's <InlinePopover type="mobile" /> capabilities provide deeper visibility into the performance and crash troubleshooting of your Android, iOS], or hybrid mobile applications. You can use mobile monitoring to improve your app's user experience or examine HTTP and network performance to collaborate more effectively with your backend teams.
New Relic's <InlinePopover type="mobile" /> capabilities provide deeper visibility into the performance and crash troubleshooting of your Android, iOS, or hybrid mobile applications. You can use mobile monitoring to improve your app's user experience or examine HTTP and network performance to collaborate more effectively with your backend teams.

Once you follow our easy install flow, you'll be able to further configure mobile monitoring to suit your mobile environment.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ This table is kept up to date and is the source of truth for capitalization. **M
</td>

<td>
Do not use: vulnerability management monitoring, vulnerability monitoring
Do not use: VM, vulnerability management monitoring, vulnerability monitoring
</td>
</tr>
</tbody>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
title: 'NRQL result limits will increase from 2,000 to 5,000'
title: 'NRQL result limits increased from 2,000 to 5,000'
summary: 'The maximum result limit for NRQL queries is increasing from 2,000 to 5,000'
releaseDate: '2024-01-09'
learnMoreLink: 'https://docs.newrelic.com/docs/query-your-data/nrql-new-relic-query-language/get-started/nrql-syntax-clauses-functions/#sel-limit'
---

On February 5, 2024, NRQL result limits are increasing from 2,000 to 5,000 results. This increase lets you pull even more data with the `LIMIT` clause when you create NRQL queries, dashboards, and more.
On February 5, 2024, NRQL result limits increased from 2,000 to 5,000 results. This increase lets you pull even more data with the `LIMIT` clause when you create NRQL queries, dashboards, and more.

* This change also affects the `LIMIT MAX` clause, increasing posted results from 2,000 to 5,000.
* If you have an existing query that uses the `LIMIT MAX` clause, your results now reflect the 5,000 limit, assuming the underlying data is populous enough.
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 23 additions & 0 deletions src/content/whats-new/2024/02/whats-new-02-20-codestreamlogs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
title: 'CodeStream brings the power of New Relic log search and query experiences right to your IDE'
summary: 'Log search is currently available for logs collected by the New Relic APM agent or by using the OpenTelemetry integration.'
releaseDate: '2024-02-20'
learnMoreLink: 'https://docs.newrelic.com/docs/codestream/observability/query-builder/'
getStartedLink: 'https://docs.newrelic.com/docs/codestream/observability/log-search/'
---

New Relic CodeStream now enables you to search logs and execute queries directly in your IDE, providing powerful access to all the performance data about your services right where you code:

* **Faster root cause analysis with log search:** Get to the root cause faster without context switching. Log search lets you work directly from any line of code, and automatically extracts the string where the cursor is positioned.
!["Screenshot showing log search in IDE"](./images/log_search.png "Screenshot showing log search in IDE")
* **Instant access to data insights with NRQL query builder:** Access all performance data in the new editor tab, then choose your chart type and export data as CSV or JSON.
!["Screenshot showing query"](./images/query_new.png "Screenshot showing query feature")









Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Engineers need intuitive and fast access to telemetry data to make informed deci

Starting today, you can try the new query experience. To try it out, go to the [query your data](https://one.newrelic.com/data-exploration) capability and select the “Try it out” button in the banner.

![Try the new query experience in New Relic](./images/query-your-data-try.png "Try the new query experience in New Relic.")
![Try the new query experience in New Relic](./images/query-your-data-try.webp "Try the new query experience in New Relic.")

The new UI combines the chart editing features of the old query builder with the portability of the old NRQL console. The enhanced user interface helps you:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ import moreintegrationsGrafanaDataSourceConfig from 'images/more-integrations_sc
/>

<figcaption>
[dbarnesbrown.newrelic.com](/users/dbarnesbrownnewreliccom)によるGrafanaデータソースConfig.png
[dbarnesbrown.newrelic.com](/users/dbarnesbrownnewreliccom)によるGrafanaデータソースConfig.webp
</figcaption>
</Collapser>
</CollapserGroup>
Expand Down
Binary file removed src/images/IAST_screenshot-crop_app-coverage.webp
Binary file not shown.
Binary file removed src/images/IAST_screenshot-crop_app-vuln.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed src/images/iast_screenshot-crop_summary.webp
Binary file not shown.
Binary file removed src/images/iast_screenshot-crop_untested-apps.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading