Felix
Felix

Reputation: 5619

Jenkins Slack integration

I want to use the Slack plugin in Jenkins to ping notifications to a Slack channel.

Jenkins says success when I test the connection, but I don't receive any notifications in my Slack channel.

Are there any known problems?

How can I get Jenkins to send notifications to Slack?

Upvotes: 23

Views: 41757

Answers (8)

SegFault
SegFault

Reputation: 2190

If you want to receive notifications using Jenkins declarative pipelines, you can install the Slack plugin, and then use it in the pipeline in this way:

    stage('Clone sources') {
        steps {
            slackSend (channel: "#mychannel", color: '#FFFF00', message: "STARTED: Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]' (${env.BUILD_URL})")
            git credentialsId: 'git_credentials', poll: false, branch: 'develop', url: 'https://mysource.com/mysimplenodejsexample.git'
        }        
    }

Result: enter image description here

You can customize your message of course. Full example at:

https://pillsfromtheweb.blogspot.com/2020/05/send-notifications-to-slack-from.html

Upvotes: 1

Stefanie Habersatter
Stefanie Habersatter

Reputation: 15

I had similar issues.

It worked for me when i unchecked "is Bot User?"

starting Jenkins in console with 'jenkins' not with brew demon, though.

Maybe that helps :) Greetings ^__^

Upvotes: 0

ddtraveller
ddtraveller

Reputation: 1222

import os
import sys
from slacker import Slacker
import base64

def main():
    myPass=sys.argv[1]
    msgStr= sys.argv[2]
    channel = sys.argv[3]

    slack = Slacker(myPass)
    slack.chat.post_message(channel, msgStr)
    print msgStr

if __name__ == '__main__':
    main()    

python slack.py <token> < message str > <#channel>

I couldn't get anything but 'failure' from the slack connection test in the config. I can use python from the same box so I don't know what the issue is so I may just use this simple script.

Upvotes: 1

Dorina Dede
Dorina Dede

Reputation: 191

There are two steps to configure a Jenkins job to be posting on a slack channel.

  1. Go to jenkins job configurations and add a post-build action on each job that you wish to ping the slack channel.

enter image description here

  1. Next, again under the job configurations, you have to configure on each job on which cases you wish to send slack notifications: (true - false) f.e.

enter image description here

In the case that you have to configure a great number of Jenkins jobs, you could configure only one of them manually and verify it is working fine. Then check the config.xml of this Jenkins job to find the auto-generated xml elements for the slack plugin preferences and apply those configs on all Jenkins jobs by using regex or xslt. In this case, you will have to reload the Jenkins configs for the job configurations updates to be applied. ("Manage Jenkins" / "Reload Configuration from Disk")

Prerequisites:

  • Install slack plugin in Jenkins.
  • Obtain a Jenkins CI integration token in your slack domain.
  • Go in Jenkins "Manage Jenkins" / "Configure System". There you have to configure the "Global Slack Notifier Setting".

Upvotes: 8

vishal
vishal

Reputation: 640

I though of adding it here for the greater good of the community. This is how you get the integration token

Jenkins Instructions

Get a Slack account: https://slack.com/
Configure the Jenkins integration: https://my.slack.com/services/new/jenkins-ci
Install this plugin on your Jenkins server
Configure it in your Jenkins job and add it as a Post-build action.

https://github.com/jenkinsci/slack-plugin

Upvotes: 4

Tom
Tom

Reputation: 1112

I didn't use the Slack Notification because I wanna customize style/state/message, etc. So I wrote a job called send_slack_notification instead. Every time I want to notify slack API I just call this job after build.

Here's the code in "Execute Shell", I used curl, sed and jsawk to do the job:

# URL to get the built info json
# will get "http://JENKINS_PATH/job/JOB_NAME/97/api/json"
NEW_URL="http://jks_username:jks_password@"$(echo ${BUILD_URL} | sed -r 's/http:\/\///g')"/api/json"

# Cut the JOB_NAME part from BUILD_URL
JOB_NAME=$(echo ${BUILD_URL} | sed -n 's/.*\/job\/\(.*\)\/[0-9].*/\1/p' | sed "s@+@ @g;s@%@\\\\x@g" | xargs -0 printf "%b")

# Get the built info json
JSON=$(curl $NEW_URL)

STATUS=$(echo $JSON | /usr/local/bin/jsawk "return this.result")
BUILD_INFO=$(echo $JSON | /usr/local/bin/jsawk "return this.displayName")
TIME=$(echo $JSON | /usr/local/bin/jsawk "return this.duration")
TIME=$(echo "scale=4; $TIME/1000" | bc -l)

# Cut the username
USER=$(echo $JSON | /usr/local/bin/jsawk "return this" | sed -n "s/.*Started\ by\ \([^\"]*\).*/\1/p")

# Customize the message sending to slack
TEXT=$JOB_NAME" Built by "$USER", it took "$TIME" seconds."

# Send notification using Slack API
# will send to https://hooks.slack.com/services/BLABLABLA/BLABLABLA
curl -X POST -H 'Content-type: application/json' --data '{"channel": "#production_info","username": "jenkins-bot","icon_emoji": ":lol:","text": "'"$TEXT"' (<'"$BUILD_URL"'|Open>)", "attachments": [{"color": "#36a64f", "fields": [{"title":"UPDATE INFO","value":"'"$BUILD_INFO"'","short":true},{"title":"RESULT","value":"'"$STATUS"'","short":true}]}]}' https://hooks.slack.com/services/BLABLABLA/BLABLABLA/BLABLABLABLABLABLA

Upvotes: 5

Nguyen Sy Thanh Son
Nguyen Sy Thanh Son

Reputation: 5376

And are you sure that you have a correct configuration. In Build Configuration (Do not forget # character) enter image description here

In General Configuration enter image description here

Upvotes: 12

Nguyen Sy Thanh Son
Nguyen Sy Thanh Son

Reputation: 5376

I think that you should add post-build action "Slack Notification" in your Jenkins. Please see the image below

enter image description here

Upvotes: 17

Related Questions