-
Notifications
You must be signed in to change notification settings - Fork 42
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
fix(ui): remove mentions of TSM-specific limits for Serverless users #6889
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,15 +67,17 @@ export const Credit250PAYGConversion: FC = () => { | |
<ul className="credit-250-conversion-panel--benefits"> | ||
<li>Unlimited buckets to store your data</li> | ||
<li>Unlimited storage retention</li> | ||
<li>Unlimited dashboards</li> | ||
<li>Unlimited tasks</li> | ||
<li>Unlimited alert checks and notification rules</li> | ||
<li>HTTP and PagerDuty notifications</li> | ||
{!orgUsesIOx && ( | ||
<li> | ||
Up to {Intl.NumberFormat().format(CARDINALITY_LIMIT)} series | ||
cardinality | ||
</li> | ||
<> | ||
<li>Unlimited dashboards</li> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does the absence of limits (no task limit, no alert limit, no pagerduty limit) only apply to TSM? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Only TSM should get this message, I can see how that isn't very clear. I can restate it as a ternary on |
||
<li>Unlimited tasks</li> | ||
<li>Unlimited alert checks and notification rules</li> | ||
<li>HTTP and PagerDuty notifications</li> | ||
<li> | ||
Up to {Intl.NumberFormat().format(CARDINALITY_LIMIT)} series | ||
cardinality | ||
</li> | ||
</> | ||
)} | ||
</ul> | ||
</div> | ||
|
@@ -121,15 +123,18 @@ export const PAYGConversion: FC = () => { | |
<ul className="conversion-panel--benefits"> | ||
<li>Unlimited buckets to store your data</li> | ||
<li>Unlimited storage retention</li> | ||
<li>Unlimited dashboards</li> | ||
<li>Unlimited tasks</li> | ||
<li>Unlimited alert checks and notification rules</li> | ||
<li>HTTP and PagerDuty notifications</li> | ||
{!orgUsesIOx && ( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same question as above. |
||
<li> | ||
Up to {Intl.NumberFormat().format(CARDINALITY_LIMIT)}{' '} | ||
series cardinality | ||
</li> | ||
<> | ||
<li>Unlimited dashboards</li> | ||
<li>Unlimited tasks</li> | ||
<li>Unlimited alert checks and notification rules</li> | ||
<li>HTTP and PagerDuty notifications</li> | ||
<li> | ||
Up to{' '} | ||
{Intl.NumberFormat().format(CARDINALITY_LIMIT)}{' '} | ||
series cardinality | ||
</li> | ||
</> | ||
)} | ||
</ul> | ||
</div> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we put this check at the beginning of the
return
/render
, since it looks like it supersedes the other rules about which limits should be displayed?