Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Access Denied Errors Azure AD Login
metaTitle: Learn How to Resolve Azure AD Acesses Errors
metaTitle: Learn How to Resolve Azure AD Access Errors
description: Discover the steps you need to take to resolve Azure AD access errors in this help article from Logit.io.
---

Expand Down Expand Up @@ -37,4 +37,4 @@ The 'User assignment required?' option needs to be set to Yes.

Then on the left-hand Manage menu click on 'Users and groups' and then 'Add User.' By selecting the relevant user and clicking on 'Assign' the user should appear in the users and group list.

Once the user account has been added they should be able to log into the Logit.io application with their Azure AD credentials without error.
Once the user account has been added they should be able to log into the Logit.io application with their Azure AD credentials without error.
15 changes: 13 additions & 2 deletions src/pages/integrations/windows.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,23 @@ If you are only interested in shipping metrics, you can skip the Logs section an
Move the telegraf.exe and telegraf.conf files from C:\Program Files\InfluxData\telegraf\telegraf-1.33.0
to the parent directory C:\Program Files\InfluxData\telegraf

Now navigate to this folder in Powershell.

```cmd copy
cd 'C:\Program Files\InfluxData\telegraf'
```

### Configure the Telegraf input and output plugins

The configuration file below is pre-configured to scrape the system metrics from your hosts.
Add the following to the configuration file (i.e. C:\Program Files\InfluxData\telegraf\telegraf.conf).
It includes plugins for both Windows Performance Counters and Windows Services and specifies the output configuration
for sending your data to Logit.io.

__Note__: Please make sure the ___'metrics username'___ , ___'metrics password'___ , ___'metrics product Id'___ and
___'vm agent port'___ , fields in the __[[outputs.http]]__ section are correctly populated.
If you are logged into your Logit.io account the fields should have been pre-populated with the correct values.

```toml copy
# Input plugin to report Windows services info.
# This plugin ONLY supports Windows
Expand Down Expand Up @@ -204,8 +214,9 @@ If you are only interested in shipping metrics, you can skip the Logs section an

Run the following command to install Telegraf as a Windows service.
```ps1 copy
.\telegraf.exe --service install `
--config "C:\Program Files\InfluxData\telegraf\telegraf.conf"
.\telegraf.exe `
--config "C:\Program Files\InfluxData\telegraf\telegraf.conf" `
service install
```
To test that the installation works, enter the following command:
```ps1 copy
Expand Down