03 Jun 2024 09:16 AM - edited 03 Jun 2024 09:17 AM
Hi all,
Is there still a catalogue where I can easily download Dynatrace icons like the OneAgent icon or Queue icon as a jpeg, png or a similar format? So far I was only able to find information about how to reference them for apps.
The old links that I used to find the library seem to not exist anymore.
03 Jun 2024 02:56 PM
At the moment, barista.dynatrace.com seems to redirect here: https://github.com/dynatrace-oss/barista
03 Jun 2024 10:28 PM
HI @marina_pollehn
You can find some icons oficial from Dynatrace Developer
Icons | Dynatrace Developer
I hope it's helpful 💪
24 Jun 2024 03:40 PM - edited 24 Jun 2024 03:40 PM
Will these icons work in the Icon Pattern field for Settings > Topology model > Generic types where it asks for Barista Icon IDs?
If not, there has to be a library of icons somewhere, right? I see there used to be, but they're gone now...
04 Jun 2024 11:23 AM
Thank you for the replies but unfortunately not exactly what I am looking for so far.
I miss the old Barista website where I could just select an icon, give it any color I wanted and download it. I wonder why it is no longer available.... 😞
04 Jun 2024 11:54 AM
Yes, I even tried yesterday in the Internet Archive, the old versions are there, but don't seem to deliver the information dynamically (it makes sense, as that seemed to occur server-side):
https://web.archive.org/web/20220520094300/https://barista.dynatrace.com/resources/icons
04 Sep 2024 08:14 PM
Hi Marina, I was able to build the "original" barista with the code from Github without any modifications. Getting it up and running is quite easy, you need to set up NodeJS, though. If that's too much of a hassle, you could use the container image I built: quay.io/jitseklomp/dynatrace-barista:latest.
These are the steps I took:
# Get the source from Github
$ git clone https://github.com/dynatrace-oss/barista
$ cd barista
# Install NodeJS dependencies
$ npm install
# Build and run barista. This will start the Barista server on http://localhost:4200
$ npm run barista
# Build the container image (optional)
$ podman build -t quay.io/jitseklomp/dynatrace-barista:latest -f .deployment/barista/internal/Dockerfile .
# Run the pre-built container, expose barista on localhost:8080
$ podman run -p 8080:80 quay.io/jitseklomp/dynatrace-barista:latest
Setting up NodeJS and/or Podman (or Docker) is left as exercise to the reader. If you have Podman installed, you can just run the last command.
Hope this helps 🙂