Athena Health came to Cumulus Networks looking for a way to bring greater efficiency to their network at an affordable cost. After partnering with our services team, they realized that being a Cumulus Networks customer meant they were getting a lot more than reduced costs.
Athena Health provides a unique all-in-one solution that includes network-enabled electronic health record (EHR), practice management, care coordination, patient engagement, and population health services. Essentially, they help ensure that doctors can focus on their patients rather than administrative work.
If a doctor cannot access a patient’s information due to an issue with Athena’s network, the result could literally be fatal. In the past, the team had leaned on more-traditional technology and skillsets, but scalability was getting too costly. When Athena began exploring their options, they were looking to expand their data center in a cost-effective way. But once they found Cumulus Networks, they realized they didn’t have to sacrifice powerful technology for cost.
After speaking with Athena Health, we knew exactly how we could help. Our experienced services team worked directly with the engineers at Athena to provide hands-on, customized implementation advice in the form of Zero Touch Provisioning (ZTP) scripts which allow their data Continue reading
Telco clouds are similar to any other clouds, says Gigaspaces.
The post Worth Reading: Network Time Protocol appeared first on 'net work.
I did a video blog and published it to Youtube.
The post Video: ONUG Fall 2016 – Part 1- People, Place and Stuff appeared first on EtherealMind.
TEKsystems research finds many IT leaders have a positive outlook on next year with a focus on cloud and security.
In the last post on this topic, we found the tail of the update chain. The actual event appears to be processed here—
case BGPEventUpdateMsg:
st.fsm.StartHoldTimer()
bgpMsg := data.(*packet.BGPMessage)
st.fsm.ProcessUpdateMessage(bgpMsg)
—which is found around line 734 of fsm.go. The second line of code in this snippet is interesting; it’s a little difficult to understand what it’s actually doing. There are three crucial elements to figuring out what is going on here—
:=, in go, is a way of appending the information in a data structure with more information. So, for instance, if you do something like this—
a-string = "this is a"
a-string := " string"
The result, in a-string, is this is a string. Whatever else this snippet is doing, then, it is taking something out of the data structure, and appending it to the bgpMsg structure. What, precisely, is it taking from the data structure?
The * (asterisk) is a way to reference a pointer within a structure. We’ve not talked about pointers before, so it’s worth spending just a moment with them. The illustration below will help a bit.

Each letter in the string “this is a string” Continue reading