python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Does Prometheus supports webhooks?
We got a task to receive alerts from Prometheus to our internal system.
The prometheus itself isn't alert manager, but just the Prometheus server, can we receive webhooks like the alert-manager?
Omer Shtivi
Votes: 0
Answers: 1
Send JSON data from Python to Telegram using webhook
i have a python application that send data to request.log using webhook.php
webhook.php working code :
<?php
$request = file_get_contents('php://input');
$req_dump = print_r( $request, true );
$fp...
mrnixdorf
Votes: 0
Answers: 0
Send 2 slack messages with 1 Google Forms answer - 1 as new message and 1 as its reply
I have a Google Apps Script script from a spreadsheet to send an automatic message to slack (and an auto-reply email) when a Google Form answer is submitted. How do I send 2 slack messages in 1 script...
oki_oki
Votes: 0
Answers: 0
How to conditionally call useEfect?
I need to call useEffect hook, but unless two conditions will be true
Something like this :
useEffect(() => {
console.log('PRINT SOMETHING ')
}, [reduxState.age > 26 && reduxState.emp...
Vlad
Votes: 0
Answers: 1