Questions tagged [alerts]

446 questions
2
votes
0 answers

Implementing Local Critical Alerts in iOS 14.6?

Apple has approve my request for an entitlement to use critical alerts. I attached my entitlement to my bundle identifier and created a provisioning profile and manually signed my app according to Apple's instructions: …
Pat Dolan
  • 41
  • 6
2
votes
1 answer

PromQl: alert on first value of a counter

I have a prometheus counter (spring_batch_job_seconds_count{status=~'FAILED'}) that counts job failures. I want to graph job failures over time and alert on job failures. The increase function gives me what I want except for the first occurrence. …
David Lewine
  • 101
  • 2
  • 12
2
votes
1 answer

SwiftUI Alert How do I get it to work in a simple if statement?

This should be simple but I am hoping to display an alert when a condition is true.(see below) I have seen lots where you used a button to trigger an alert, but I just want an alert to trigger when a condition is met such as in a simple "If"…
Jerry
  • 21
  • 2
2
votes
2 answers

Opening Bootstrap Alert programmatically

I'm trying to dynamically show a bootstrap alert https://getbootstrap.com/docs/4.3/components/alerts/ that displays a message to accept using cookies once a user clicks the OK button, the alert message should disappear and not show to that user…
user2721794
  • 401
  • 1
  • 4
  • 20
2
votes
2 answers

Azure Log Analytics - Alerts Advice

I have a question about azure log analytics alerts, in that I don't quite understand how the time frame works within the context of setting up an alert based on an aggregated value. I have the code below: Event | where Source == "EventLog" and…
OptimusPrime
  • 777
  • 16
  • 25
2
votes
1 answer

Remove Ul Alerts

I have three ul's in a line. How do i slide the ul to the left side if another ul li's are removed. Here is the example how it looks. (If possible Pure Javascript). .one { box-sizing: border-box; padding: 16px; width: 100%; …
2
votes
1 answer

how to configure the new alerts in azure monitor using ARM templates?

I am working on Azure Resource Manager Templates, Currently I created ARM templates for various azure resources like virtual machine, SQL Server, Service Bus and Web app etc... But, for that I want to configure the azure alerts in monitor using ARM…
Pradeep
  • 5,101
  • 14
  • 68
  • 140
2
votes
3 answers

Pinescript duplicate alerts

I have created a very basic script in pinescript. study(title='Renko Strat w/ Alerts', shorttitle='S_EURUSD_5_[MakisMooz]', overlay=true) rc = close buy_entry = rc[0] > rc[2] sell_entry = rc[0] < rc[2] alertcondition(buy_entry,…
D. Gale
  • 21
  • 3
2
votes
2 answers

How can I get one alert via if operator only ? (just started JavaScript learning)

Here the part of code from the book "Beginning JS 4th edition". When I load it in a browser that will show me 2 times alerts, because I entered 2 NaNs in array. I'd like displaying alert just one time always, how can I get that knowing only if…
Roman T
  • 113
  • 1
  • 9
2
votes
2 answers

Trying to make a paragraph break in a flash message with \n not working

I've been trying to make a paragraph in this little piece of code: flash[:error] = "ATENÇÃO!\nNenhum dos campos pode ser deixado em branco" right where the \n is, but when I render it on my ruby application it doesn't seem to make a paragraph any…
2
votes
0 answers

C++ Trapping system dialogs in a kiosk system

We have a kiosk system running on Win7 with application written using VS2010 C++. As with kiosk systems, the system is locked down so that the user cannot access the windows system itself, but must do all work using our application. Unfortunately,…
bmahf
  • 965
  • 2
  • 11
  • 27
2
votes
2 answers

Any way to consume POST requests via browser?

Say you've got an app that can send out POST requests every time an action happens. It allows subscriptions to add/drop quickly and effortlessly. Say that site is Stackoverflow and it can send a you POST notification every time a new question is…
buley
  • 28,032
  • 17
  • 85
  • 106
2
votes
1 answer

Cocoa Xcode :: How to localize alerts in my app?

my app alerts like ( "already exists. Do you want to replace it?") appears in English. My computer is configured in Spanish. Why? There is any way to resolve it? thanks
llamp
  • 21
  • 1
2
votes
2 answers

Click OK on alert Selenium Webdriver

Ok so I know there are a number of other answers on this question about alerts in webdriver and I've looked through them but I think my situation is a little different. When I click my submit button I have already switched into 3 frames and then I…
OhAye
  • 93
  • 1
  • 4
  • 12
2
votes
1 answer

How to make Amazon Cloudwatch monitor specific unhealthy instances and terminate them in an Elastic Beanstalk deployment

Trying to create an Amazon Cloudwatch alert to monitor an Elastic Beanstalk deployment of a public facing website. The alert options for Elastic Beanstalk don't seem to allow for monitoring specific instances that fail Beanstalk's health check URL…