You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Licensed under "BSD 3-Clause". See LICENSE file.
*/
package main
import (
"fmt"
"os"
"github.com/alecthomas/kingpin/v2"
)
// Version information
var (
Version = "undefined"
BuildDate = "Now"
)
func main() {
app := kingpin.New("signalilo", "Signalilo takes in Alertmanager alerts through a webhook, translates them into Icinga2 services and posts them to Icinga using the Icinga API").Version(Version)