Skip to content

Commit b2a742b

Browse files
committed
change opcm -> intel pointers where applicable
Change-Id: I5eab47f10b4530473eb85c4bbe58b7857bd3db9e
1 parent 4d60a50 commit b2a742b

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ PCM provides a number of command-line utilities for real-time monitoring:
3232

3333
- **pcm-sensor-server** : pcm collector exposing metrics over http in JSON or Prometheus (exporter text based) format ([how-to](doc/PCM-EXPORTER.md)). Also available as a [docker container](doc/DOCKER_README.md). More info about Global PCM events is [here](doc/PCM-SENSOR-SERVER-README.md).
3434
- **pcm-memory** : monitor memory bandwidth (per-channel and per-DRAM DIMM rank)
35-
![pcm-memory output](https://raw.githubusercontent.com/wiki/opcm/pcm/pcm-memory.x.JPG)
35+
![pcm-memory output](https://raw.githubusercontent.com/wiki/intel/pcm/pcm-memory.x.JPG)
3636
- **pcm-accel** : [monitor Intel® In-Memory Analytics Accelerator (Intel® IAA), Intel® Data Streaming Accelerator (Intel® DSA) and Intel® QuickAssist Technology (Intel® QAT) accelerators](doc/PCM_ACCEL_README.md)
3737
![image](https://user-images.githubusercontent.com/25432609/218480696-42ade94f-e0c3-4000-9dd8-39a0e75a210e.png)
3838

3939
- **pcm-latency** : monitor L1 cache miss and DDR/PMM memory latency
4040
- **pcm-pcie** : monitor PCIe bandwidth per-socket
4141
- **pcm-iio** : monitor PCIe bandwidth per PCIe device
4242

43-
![pcm-iio output](https://raw.githubusercontent.com/wiki/opcm/pcm/pcm-iio.png)
43+
![pcm-iio output](https://raw.githubusercontent.com/wiki/intel/pcm/pcm-iio.png)
4444
- **pcm-numa** : monitor local and remote memory accesses
4545
- **pcm-power** : monitor sleep and energy states of processor, Intel(r) Quick Path Interconnect, DRAM memory, reasons of CPU frequency throttling and other energy-related metrics
4646
- **pcm-tsx**: monitor performance metrics for Intel(r) Transactional Synchronization Extensions
@@ -50,7 +50,7 @@ PCM provides a number of command-line utilities for real-time monitoring:
5050

5151
Graphical front ends:
5252
- **pcm Grafana dashboard** : front-end for Grafana (in [scripts/grafana](scripts/grafana) directory). Full Grafana Readme is [here](scripts/grafana/README.md)
53-
![pcm grafana output](https://raw.githubusercontent.com/wiki/opcm/pcm/pcm-dashboard.png)
53+
![pcm grafana output](https://raw.githubusercontent.com/wiki/intel/pcm/pcm-dashboard.png)
5454
- **pcm-sensor** : front-end for KDE KSysGuard
5555
- **pcm-service** : front-end for Windows perfmon
5656

@@ -65,7 +65,7 @@ Building PCM Tools
6565
Clone PCM repository with submodules:
6666

6767
```
68-
git clone --recursive https://github.com/opcm/pcm.git
68+
git clone --recursive https://github.com/intel/pcm.git
6969
```
7070

7171
or clone the repository first, and then update submodules with:

doc/DOCKER_README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ How To Run Intel(r) Performance Counter Monitor Server Container from GitHub Con
44

55
As root user:
66
1. ``modprobe msr``
7-
2. ``docker run -d --name pcm --privileged -p 9738:9738 ghcr.io/opcm/pcm`` (GitHub Container repository) or ``docker run -d --name pcm --privileged -p 9738:9738 opcm/pcm`` (Dockerhub repository)
8-
- the container can also be run with limited capabilities without the privileged mode: ``docker run -d --name pcm --cap-add=SYS_ADMIN --cap-add=SYS_RAWIO --device=/dev/cpu --device=/dev/mem -v /sys/firmware/acpi/tables/MCFG:/pcm/sys/firmware/acpi/tables/MCFG:ro -v /proc/bus/pci/:/pcm/proc/bus/pci/ -v /proc/sys/kernel/nmi_watchdog:/pcm/proc/sys/kernel/nmi_watchdog -v /sys:/sys:rw -p 9738:9738 ghcr.io/opcm/pcm`` (there is also a docker-compose file containing these options: https://raw.githubusercontent.com/opcm/pcm/master/docker-compose.yml)
7+
2. ``docker run -d --name pcm --privileged -p 9738:9738 ghcr.io/intel/pcm`` (GitHub Container repository) or ``docker run -d --name pcm --privileged -p 9738:9738 opcm/pcm`` (Dockerhub repository)
8+
- the container can also be run with limited capabilities without the privileged mode: ``docker run -d --name pcm --cap-add=SYS_ADMIN --cap-add=SYS_RAWIO --device=/dev/cpu --device=/dev/mem -v /sys/firmware/acpi/tables/MCFG:/pcm/sys/firmware/acpi/tables/MCFG:ro -v /proc/bus/pci/:/pcm/proc/bus/pci/ -v /proc/sys/kernel/nmi_watchdog:/pcm/proc/sys/kernel/nmi_watchdog -v /sys:/sys:rw -p 9738:9738 ghcr.io/intel/pcm`` (there is also a docker-compose file containing these options: https://raw.githubusercontent.com/intel/pcm/master/docker-compose.yml)
99

1010
This will start pcm-sensor-server container exposing CPU metrics from the whole system at port 9738
1111

1212
The URLs of the docker container repositories:
13-
- https://github.com/opcm/pcm/pkgs/container/pcm
13+
- https://github.com/intel/pcm/pkgs/container/pcm
1414
- https://hub.docker.com/r/opcm/pcm

doc/PCM-EXPORTER.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
pcm-sensor-server is a collector exposing Intel processor metrics over http in JSON or Prometheus (exporter text based) format. Also [available as a docker container](DOCKER_README.md).
55

66
Installation on target system to be analyzed:
7-
1. [Build](https://github.com/opcm/pcm#building-pcm-tools) or [download](https://github.com/opcm/pcm#downloading-pre-compiled-pcm-tools) pcm tools
8-
2. As root, start pcm-sensor-server: `sudo ./pcm-sensor-server` or as non-root https://github.com/intel-innersource/applications.analyzers.pcm#executing-pcm-tools-under-non-root-user-on-linux
7+
1. [Build](https://github.com/intel/pcm#building-pcm-tools) or [download](https://github.com/intel/pcm#downloading-pre-compiled-pcm-tools) pcm tools
8+
2. As root, start pcm-sensor-server: `sudo ./pcm-sensor-server` or as non-root https://github.com/intel/pcm#executing-pcm-tools-under-non-root-user-on-linux
99

1010
Alternatively one can start [pcm-sensor-server as a container from docker hub](DOCKER_README.md).
1111

@@ -33,4 +33,4 @@ The default output of pcm-sensor-server endpoint in a browser:
3333

3434
The PCM exporter can be used together with Grafana to obtain these Intel processor metrics (see [how-to](../scripts/grafana/README.md)):
3535

36-
![pcm grafana output](https://raw.githubusercontent.com/wiki/opcm/pcm/pcm-dashboard-full.png)
36+
![pcm grafana output](https://raw.githubusercontent.com/wiki/intel/pcm/pcm-dashboard-full.png)

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '2.0'
22
services:
33
pcm:
4-
image: opcm/pcm
4+
image: ghcr.io/intel/pcm:latest
55
ports:
66
- "9738:9738"
77
volumes:

pcm-kubernetes.yaml.experimental

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ spec:
3737
spec:
3838
automountServiceAccountToken: false
3939
containers:
40-
- image: ghcr.io/opcm/pcm:latest
40+
- image: ghcr.io/intel/pcm:latest
4141
env:
4242
- name: PCM_NO_MSR
4343
value: "1"

pcm.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Release: 0
55
Summary: Intel(r) Performance Counter Monitor
66
Group: System/Monitoring
77
License: BSD-3-Clause
8-
Url: https://github.com/opcm/pcm/archive
8+
Url: https://github.com/intel/pcm/archive
99
Source: master.zip
1010
BuildRoot: %{_tmppath}/%{name}-%{version}-build
1111
AutoReqProv: on

scripts/grafana/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ Installation of the grafana front-end (can be on any *host* system with connecti
3333
5. You can also stop and delete the containers when needed: `sudo sh stop.sh`
3434
3535
36-
![pcm grafana output](https://raw.githubusercontent.com/wiki/opcm/pcm/pcm-dashboard-full.png)
36+
![pcm grafana output](https://raw.githubusercontent.com/wiki/intel/pcm/pcm-dashboard-full.png)

0 commit comments

Comments
 (0)