Following up on last weeks post, this week we will look at using our Azure Function app to post work item information from a custom task in the Cireson Portal to Slack.
Category: Service Management
Using Azure Functions to Post to Slack from Multiple Sources – Part 1
Today, I’m starting a new short series demonstrating how we can easily integrate multiple internal and external systems to bring data into Slack using a single Azure function.
The idea here is to define a single simple web based API using the capabilities of Azure Functions in order to provide a company standard format for pushing notifications into Slack from multiple sources.
For my part I’m going to show how to setup the Azure Function, code the integration into Slack, how to trigger the function, and then how to trigger and test that Azure function. In subsequent posts we’ll show how to trigger it from other related systems.
Continue reading “Using Azure Functions to Post to Slack from Multiple Sources – Part 1”
SCSM + Cireson Portal API + Slack = Better Together, Part 2
Assuming that you’ve read part 1, you know we are now going to look at how to get data out of SCSM and into Slack without having to be proactive about it. Rather than having to reach into SCSM and get the data, we are going to look at how SCSM can alert us in Slack to changes that are occurring from within.
This is actually quite easy, and we will look at more complicated and comprehensive scenarios for this in the future, but I want to touch on something just about anyone with a little PS knowledge could emulate.
With that in mind our example today will use nothing more than powershell and our own little custom module.
Continue reading “SCSM + Cireson Portal API + Slack = Better Together, Part 2”
SCSM + Cireson Portal API + Slack = Better Together, Part 1
This is an updated post, the original is found here.
As the services lead for Cireson I’m always looking for new ways to facilitate communication among my team. We have many brilliant people here and increasing the efficiency of our communication is a part of what separates us from the pack. We have a mantra here at Cireson that says when we tackle an engagement we ‘bring the team’ and that is more true today than it ever has been, and It’s my job to make sure that gets better and better.
In that regard we’ve been using Slack to improve our inter-team communication. I won’t go into the details of Slack or it’s capabilities here, other than to say that is is a Web 2.0 IRC like chat client and more. It has dramatically increased our real-time communication within the team and improved our knowledge and solution retention, but for this article I’ll focus on a feature called ‘slash commands’.
In essence a Slash Command is a user configurable API call to an outside web interface using a JSON formatted payload. At a higher level it’s a command that sends out a request to another website for information or to post information. Here is an example:
In this example I can type a simple command:
/getkb 75
And I’ll get this Knowledge Base article summary back from our Cireson Support Portal:
Now, this is just one example. We’ve also integrated Incident retrieval, knowledge article search, daily new knowledge article and new announcement notifications, and soon we will include a notification for new incidents that have been created.
All of this provides us with easy access to the things we use most often within a single interface. It also works via the mobile Slack application and brings the needed information directly into the conversation within the context of the request. It’s even searchable later and the answer (KB) is displayed right inline with the question or discussion.
I know, this all sounds great, but how does it work!? At a high level it works like this:
- We setup a Slash command for each function in the Slack admin settings and point it to our custom web service
- Each time the Slash command is run it sends the requested information to our custom web service that pulls required information out of the payload
- The web service then utilizes the Cireson Portal API to retreive the required information, translate it into a format that works with Slack and then posts it back into the channel in which the request originated
- For the scheduled tasks and notifications we use a simple Azure webjob that runs on a schedule, hits the web service and performs that same operations depending on the task
All of this is made possible thanks to the Cireson Portal API, where we can use an authentication token to perform JSON calls and retrieve data from Service Manager easily in order to put that data anywhere and in any format we could want.
In later blogs I’ll go into further detail on the Cireson Portal API, how it’s used and the internals of the custom web service we’ve created to utilize it. Beyond that though, what if we wanted to get data out of Service Manager and into Slack?
That will be the focus on my next blog in this series.
Cireson Survey App – Sneak Peak
Here at Cireson we work hard to breed internal and external innovation. Today, I would like to give you a sneak peak at our Survey App that started as Internal project with the purpose of boosting External innovation, and based on the interest we saw became something even more.
Later this month we will be releasing our ‘Survey App’, a web based application built on the Cireson Portal using Service Manager as the data back end, through our Release Candidate Testing Program. In a second I’ll briefly discuss how it works, and why it’s an example of what any custom can do with the Cireson Portal and Service Manager. I’ll also give you a few sneak peak screenshots of what’s coming…
Advanced Request Offering – Last Modified Date Solution
Wanted to bring this to everyone’s attention that might be using Cireson’s advanced RO or looking forward to using it as they upgrade to the recently released version 5.0.
Basically, when you install the ARO MP it overwrites the last modified dates on all work items as it adds the required properties for the ARO to function. While this is a major load on the system, for some customers this is a critical issue in terms of how they manage their work items.
A crafty customer came up with a solution on his own and you can find it here:
https://gallery.technet.microsoft.com/SCSM-Last-Modified-Date-15425cdc
Customers always amaze me, and this is a great example of that! Good work!
Dynamically Hiding Service Request Activity Form Fields in the Cireson Portal
Hello team, me again. Today I’m going to be discussing a quick customization for the Cireson Portal around Activities, but first lets talk a little about how activities work in the portal.
Continue reading “Dynamically Hiding Service Request Activity Form Fields in the Cireson Portal”
CIRESON PORTAL: DYNAMIC FORMS BY TEMPLATE ID, PART 3
Following up our posts in this series from last week, today we are going to quickly show how we can set a template ID in a Service Request template so that the template ID is always set on SR creation.
Continue reading “CIRESON PORTAL: DYNAMIC FORMS BY TEMPLATE ID, PART 3”
Error Installing the Service Manager 2012 R2 Authoring Tool on Windows 2012 R2
Quick post today. Some of you may have run into this issue previously and while I figured this out myself this morning there also appears to be a technet article here talking through it in more detail.
In summary, if you have an issues with the VS 2008 Redist now showing as an install pre-req when trying to install the Authoring Tool, it’s most likely because the Redist actually didn’t install, as it doesn’t always install just by running the package as you’d expect.
To resolve this, browse to the C:\VS 2008 Shell Redist\Isolated Mode folder that the AppEnvRedist.exe created and run the vs_shell_isolated.enu.exe directly.
After the installation completes attempt the Authoring Tool install again and you should be good to go.
Modify WorkItem Title When Creating Via Template / Projection
Quick one today. I ran into a bit of an issue when creating a new SR via an object projection and applying a template.
#projection setup $TemplateObject = Get-SCSMObjectTemplate -Id $TemplateId $TemplateMP = $TemplateObject.GetManagementPack() $mpAlias = $TemplateMP.References.GetAlias((Get-SCSMManagementPack system.workitem.library)) foreach ($obj in $TemplateObject.ObjectCollection) { fn_UpdatePropertyCollection -Object $obj -Alias $mpAlias } #get the new status for workflows $statusNewEnum = Get-SCSMEnumeration ServiceRequestStatusEnum.New $seedTypeSR = '^System.WorkItem.ServiceRequestProjection$' $seedclassSR = Get-SCSMClass -Name System.WorkItem.ServiceRequest $seedPropertyValuesSR = @{ CreatedDate = (Get-Date) Id = "SR{0}"; Status = $statusNewEnum; Title = $afUser.DisplayName } $seedProjectionSR = @{ __CLASS = "System.WorkItem.ServiceRequest" __OBJECT= $seedPropertyValuesSR CreatedBy = $AffectedUser AffectedUser = $AffectedUser AssignedTo = $AssignedUser } $newSrProjection = New-SCSMObjectProjection -Type $seedTypeSR -Projection $seedProjectionSR -Template $TemplateObject -PassThru -ErrorAction SilentlyContinue
When the template was applied it was overwriting my title. To remedy this, I had to dynamically modify the title within the template itself using this code:
#update the template title with the affected users displayname foreach ($obj in $TemplateObject.PropertyCollection){ if($obj.Path -like '*Title$'){ $obj.MixedValue = $afUser.DisplayName + " - " + $obj.MixedValue } }
Hope this helps someone else!